/* DUPLICATOR MYSQL SCRIPT CREATED ON : August 12, 2014, 4:04 pm */

SET FOREIGN_KEY_CHECKS = 0;

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) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

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 COLLATE utf8_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8_unicode_ci 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 COLLATE utf8_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8_unicode_ci 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=20 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_duplicator_packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
  `hash` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `status` int(11) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
  `package` mediumblob NOT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8_unicode_ci 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) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=640 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

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) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=2851 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

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 COLLATE utf8_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8_unicode_ci 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 COLLATE utf8_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8_unicode_ci 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=1122 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` text,
  `hover` text,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_revslider_settings` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `general` text NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` text NOT NULL,
  `layers` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_form` (
  `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(150) NOT NULL,
  `date_created` datetime NOT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_form_meta` (
  `form_id` mediumint(8) unsigned NOT NULL,
  `display_meta` longtext,
  `entries_grid_meta` longtext,
  `confirmations` longtext,
  `notifications` longtext,
  PRIMARY KEY (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_form_view` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` char(15) DEFAULT NULL,
  `count` mediumint(8) unsigned NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_lead` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `is_starred` tinyint(1) NOT NULL DEFAULT '0',
  `is_read` tinyint(1) NOT NULL DEFAULT '0',
  `ip` varchar(39) NOT NULL,
  `source_url` varchar(200) NOT NULL DEFAULT '',
  `user_agent` varchar(250) NOT NULL DEFAULT '',
  `currency` varchar(5) DEFAULT NULL,
  `payment_status` varchar(15) DEFAULT NULL,
  `payment_date` datetime DEFAULT NULL,
  `payment_amount` decimal(19,2) DEFAULT NULL,
  `transaction_id` varchar(50) DEFAULT NULL,
  `is_fulfilled` tinyint(1) DEFAULT NULL,
  `created_by` bigint(20) unsigned DEFAULT NULL,
  `transaction_type` tinyint(1) DEFAULT NULL,
  `status` varchar(20) NOT NULL DEFAULT 'active',
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_lead_detail` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `lead_id` int(10) unsigned NOT NULL,
  `form_id` mediumint(8) unsigned NOT NULL,
  `field_number` float NOT NULL,
  `value` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `lead_id` (`lead_id`),
  KEY `lead_field_number` (`lead_id`,`field_number`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_lead_detail_long` (
  `lead_detail_id` bigint(20) unsigned NOT NULL,
  `value` longtext,
  PRIMARY KEY (`lead_detail_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_lead_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `lead_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`id`),
  KEY `meta_key` (`meta_key`),
  KEY `lead_id` (`lead_id`),
  KEY `form_id_meta_key` (`form_id`,`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_rg_lead_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `lead_id` int(10) unsigned NOT NULL,
  `user_name` varchar(250) DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `value` longtext,
  PRIMARY KEY (`id`),
  KEY `lead_id` (`lead_id`),
  KEY `lead_user_key` (`lead_id`,`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=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 COLLATE=utf8_unicode_ci;

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) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8_unicode_ci 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=10 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8_unicode_ci 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=10 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

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) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


/* INSERT TABLE DATA: wp_comments */
INSERT INTO `wp_comments` VALUES("1", "1", "Mr WordPress", "", "http://wordpress.org/", "", "2014-08-01 23:59:49", "2014-08-01 23:59:49", "Hi, this is a comment.<br />To delete a comment, just log in and view the post&#039;s comments. There you will have the option to edit or delete them.", "0", "1", "", "", "0", "0");
INSERT INTO `wp_comments` VALUES("2", "76", "URL", "", "http://www.pZzPJm983.net", "178.238.130.104", "2013-01-29 09:38:22", "2013-01-29 09:38:22", "<strong>... [Trackback]...</strong>\n\n[...] Informations on that Topic: scottsdaleseville.com/directory/ [...]...", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("3", "76", "URL", "", "http://www.H6rZlf5.net", "5.135.114.7", "2013-04-25 03:05:59", "2013-04-25 03:05:59", "<strong>... [Trackback]...</strong>\n\n[...] Find More Informations here: scottsdaleseville.com/directory/ [...]...", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("4", "76", "sac bandouli猫re burberry", "", "http://锘匡豢sac-burberry.sirinematta.com", "202.105.61.38", "2014-03-24 12:59:30", "2014-03-24 12:59:30", "<strong>sac bandouli猫re burberry...</strong>\n\n{...", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("5", "166", "maillot de foot 2014", "", "http://www.marseilleforum.com/honeypot/maillot-de-foot-2014.html", "202.103.132.151", "2014-06-22 21:59:33", "2014-06-22 21:59:33", "<strong>maillot de foot 2014...</strong>\n\nHi! Someone in my Facebook group shared this site with us so I came to take a look. I\'m definitely loving the information. I\'m book-marking and will be tweeting this to my followers! Outstanding blog and fantastic design and style.|...", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("6", "166", "maillot de psg", "", "http://www.syplus.com/maillotdefootpascher/maillot-psg-pas-cher.html", "202.105.61.245", "2014-07-25 19:55:13", "2014-07-25 19:55:13", "<strong>maillot de psg...</strong>\n\nWonderful work! This is the type of information that are supposed to be shared across the internet. Shame on Google for no longer positioning this submit higher! Come on over and consult with my website . Thanks =)|...", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("7", "207", "maillot bresil neyma", "", "http://www.nastrificiodebernardi.com/images/maillot-neymar.html", "202.103.132.239", "2014-06-17 06:03:25", "2014-06-17 06:03:25", "<strong>maillot bresil neyma...</strong>\n\nThese are in fact wonderful ideas in about blogging. You have touched some nice factors here. Any way keep up wrinting.|...", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("8", "207", "maillot de foot enfant", "", "http://www.betatrans.com/fr/maillot-foot.html", "219.136.101.114", "2014-07-29 22:51:09", "2014-07-29 22:51:09", "<strong>maillot de foot enfant...</strong>\n\nHey there! I\'ve been following your weblog for some time now and finally got the bravery to go ahead and give you a shout out from Lubbock Texas! Just wanted to say keep up the fantastic work!|...", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("9", "207", "Maillot Equipe de France", "", "http://www.cwstudio.it/fr/maillot-equipe-de-france-pas-cher/", "219.136.101.21", "2014-08-01 08:13:12", "2014-08-01 08:13:12", "<strong>Maillot Equipe de France...</strong>\n\nThis is a topic which is near to my heart... Thank you! Exactly where are your contact details though?|...", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("10", "309", "maillot psg pas cher", "", "http://www.nastrificiodebernardi.com/images/maillot-de-foot-psg.html", "219.136.102.152", "2014-06-17 04:53:03", "2014-06-17 04:53:03", "<strong>maillot psg pas cher...</strong>\n\nWay cool! Some extremely valid points! I appreciate you penning this post and also the rest of the website is also very good.|...", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("11", "309", "maillot psg enfant", "", "http://www.marseilleforum.com/honeypot/maillot-psg-2014.html", "219.136.101.114", "2014-07-29 22:20:30", "2014-07-29 22:20:30", "<strong>maillot psg enfant...</strong>\n\nThank you for the auspicious writeup. It in fact was a amusement account it. Look advanced to far added agreeable from you! However, how could we communicate?|...", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("12", "309", "Maillot de foot pas cher 2014 2015", "", "http://www.cwstudio.it/fr/maillotdefootpascher/", "219.136.101.21", "2014-08-01 07:39:58", "2014-08-01 07:39:58", "<strong>Maillot de foot pas cher 2014 2015...</strong>\n\nHowdy just wanted to give you a quick heads up. The words in your post seem to be running off the screen in Opera. I\'m not sure if this is a format issue or something to do with browser compatibility but I thought I\'d post to let you know. The design...", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("13", "769", "sac neverfull louis vuitton", "", "http://sac-louis-vuitton-pas-cher-femme.sdira.net", "202.105.61.38", "2014-03-24 22:19:04", "2014-03-24 22:19:04", "<strong>sac neverfull louis vuitton...</strong>\n\nThere\'s certainly a great deal to know about this topic. I really like all of the points you made.|...", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("14", "776", "sac hermes kelly prix", "", "http://sac-kelly-hermes-pas-cher.depression-treatment.info", "202.105.61.38", "2014-03-24 22:49:43", "2014-03-24 22:49:43", "<strong>sac hermes kelly prix...</strong>\n\nI every time emailed this website post page to all my associates, as if like to read it after that my contacts will too.|...", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("15", "460", "Zachary", "", "http://%/zryrvfcg9526", "31.134.237.140", "2014-06-30 22:49:56", "2014-06-30 22:49:56", "<strong><a href=\"http://google.com/?n=o=o=b=19&amp;lol= wharves@troubie.sighs\" rel=\"nofollow\">.</a>...</strong>\n\ngood....", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("16", "754", "Ruben", "", "http://%/tisssnp9", "31.134.229.171", "2014-07-04 20:20:54", "2014-07-04 20:20:54", "<strong><a href=\"http://google.com/?n=o=o=b=18&amp;lol= myeloid@conceptuality.pinhead\" rel=\"nofollow\">.</a>...</strong>\n\ntnx for info!...", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("17", "758", "Tim", "", "http://%/jvahutj5", "31.134.229.171", "2014-07-05 12:45:21", "2014-07-05 12:45:21", "<strong><a href=\"http://google.com/?n=o=o=b=14&amp;lol= goodman@bethlehem.mastering\" rel=\"nofollow\">.</a>...</strong>\n\ntnx for info....", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("18", "758", "lawrence", "", "http://%/gfoyaf15", "31.134.246.133", "2014-07-06 06:25:27", "2014-07-06 06:25:27", "<strong><a href=\"http://google.com/?n=o=o=b=34&amp;lol= imprudently@hindquarters.prevailin\" rel=\"nofollow\">.</a>...</strong>\n\ntnx for info!...", "0", "0", "", "trackback", "0", "0");
INSERT INTO `wp_comments` VALUES("19", "881", "Mr WordPress", "", "http://wordpress.org/", "", "2014-02-12 01:41:29", "2014-02-12 01:41:29", "Hi, this is a comment.<br />To delete a comment, just log in and view the post&#039;s comments. There you will have the option to edit or delete them.", "0", "1", "", "", "0", "0");

/* INSERT TABLE DATA: wp_duplicator_packages */
INSERT INTO `wp_duplicator_packages` VALUES("1", "20140812_technositescom", "53ea3adf57b784996140812160343", "20", "2014-08-12 16:04:15", "admin", "O:11:\"DUP_Package\":16:{s:2:\"ID\";i:1;s:4:\"Name\";s:23:\"20140812_technositescom\";s:4:\"Hash\";s:29:\"53ea3adf57b784996140812160343\";s:8:\"NameHash\";s:53:\"20140812_technositescom_53ea3adf57b784996140812160343\";s:7:\"Version\";s:5:\"0.5.6\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:50:\"/home/wwwtechn/public_html/scotts/wp-snapshots/tmp\";s:8:\"StoreURL\";s:44:\"http://techno-sites.com/scotts/wp-snapshots/\";s:8:\"ScanFile\";s:63:\"20140812_technositescom_53ea3adf57b784996140812160343_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":17:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"File\";s:65:\"20140812_technositescom_53ea3adf57b784996140812160343_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:33:\"/home/wwwtechn/public_html/scotts\";s:4:\"Size\";i:0;s:12:\"WarnFileSize\";a:0:{}s:12:\"WarnFileName\";a:0:{}s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:5:\"Links\";a:0:{}s:8:\"OmitDirs\";a:0:{}s:9:\"OmitFiles\";a:0:{}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:23:\"20140812_technositescom\";s:4:\"Hash\";s:29:\"53ea3adf57b784996140812160343\";s:8:\"NameHash\";s:53:\"20140812_technositescom_53ea3adf57b784996140812160343\";s:7:\"Version\";s:5:\"0.5.6\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:50:\"/home/wwwtechn/public_html/scotts/wp-snapshots/tmp\";s:8:\"StoreURL\";s:44:\"http://techno-sites.com/scotts/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";O:13:\"DUP_Installer\":11:{s:4:\"File\";s:67:\"20140812_technositescom_53ea3adf57b784996140812160343_installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:30;}s:8:\"Database\";O:12:\"DUP_Database\":9:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";s:66:\"20140812_technositescom_53ea3adf57b784996140812160343_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";N;}}s:28:\"\0DUP_Archive\0filterDirsArray\";a:0:{}s:28:\"\0DUP_Archive\0filterExtsArray\";a:0:{}}s:9:\"Installer\";r:45;s:8:\"Database\";r:57;}");

/* INSERT TABLE DATA: wp_links */
INSERT INTO `wp_links` VALUES("1", "http://codex.wordpress.org/", "Documentation", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `wp_links` VALUES("2", "http://wordpress.org/news/", "WordPress Blog", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "http://wordpress.org/news/feed/");
INSERT INTO `wp_links` VALUES("3", "http://wordpress.org/extend/ideas/", "Suggest Ideas", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `wp_links` VALUES("4", "http://wordpress.org/support/", "Support Forum", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `wp_links` VALUES("5", "http://wordpress.org/extend/plugins/", "Plugins", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `wp_links` VALUES("6", "http://wordpress.org/extend/themes/", "Themes", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `wp_links` VALUES("7", "http://planet.wordpress.org/", "WordPress Planet", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");

/* INSERT TABLE DATA: wp_options */
INSERT INTO `wp_options` VALUES("608", "_site_transient_timeout_theme_roots", "1407861148", "yes");
INSERT INTO `wp_options` VALUES("609", "_site_transient_theme_roots", "a:6:{s:7:\"jupiter\";s:7:\"/themes\";s:12:\"twentyeleven\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:9:\"twentyten\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}", "yes");
INSERT INTO `wp_options` VALUES("3", "siteurl", "http://techno-sites.com/scotts", "yes");
INSERT INTO `wp_options` VALUES("4", "blogname", "techno-sites.com", "yes");
INSERT INTO `wp_options` VALUES("5", "blogdescription", "", "yes");
INSERT INTO `wp_options` VALUES("6", "users_can_register", "0", "yes");
INSERT INTO `wp_options` VALUES("7", "admin_email", "technosites@live.com", "yes");
INSERT INTO `wp_options` VALUES("8", "start_of_week", "1", "yes");
INSERT INTO `wp_options` VALUES("9", "use_balanceTags", "0", "yes");
INSERT INTO `wp_options` VALUES("10", "use_smilies", "1", "yes");
INSERT INTO `wp_options` VALUES("11", "require_name_email", "1", "yes");
INSERT INTO `wp_options` VALUES("12", "comments_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("13", "posts_per_rss", "10", "yes");
INSERT INTO `wp_options` VALUES("14", "rss_use_excerpt", "0", "yes");
INSERT INTO `wp_options` VALUES("15", "mailserver_url", "mail.example.com", "yes");
INSERT INTO `wp_options` VALUES("16", "mailserver_login", "login@example.com", "yes");
INSERT INTO `wp_options` VALUES("17", "mailserver_pass", "password", "yes");
INSERT INTO `wp_options` VALUES("18", "mailserver_port", "110", "yes");
INSERT INTO `wp_options` VALUES("19", "default_category", "1", "yes");
INSERT INTO `wp_options` VALUES("20", "default_comment_status", "open", "yes");
INSERT INTO `wp_options` VALUES("21", "default_ping_status", "open", "yes");
INSERT INTO `wp_options` VALUES("22", "default_pingback_flag", "1", "yes");
INSERT INTO `wp_options` VALUES("24", "posts_per_page", "10", "yes");
INSERT INTO `wp_options` VALUES("25", "date_format", "F j, Y", "yes");
INSERT INTO `wp_options` VALUES("26", "time_format", "g:i a", "yes");
INSERT INTO `wp_options` VALUES("27", "links_updated_date_format", "F j, Y g:i a", "yes");
INSERT INTO `wp_options` VALUES("31", "comment_moderation", "0", "yes");
INSERT INTO `wp_options` VALUES("32", "moderation_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("33", "permalink_structure", "", "yes");
INSERT INTO `wp_options` VALUES("34", "gzipcompression", "0", "yes");
INSERT INTO `wp_options` VALUES("35", "hack_file", "0", "yes");
INSERT INTO `wp_options` VALUES("36", "blog_charset", "UTF-8", "yes");
INSERT INTO `wp_options` VALUES("37", "moderation_keys", "", "no");
INSERT INTO `wp_options` VALUES("38", "active_plugins", "a:7:{i:0;s:33:\"addthis/addthis_social_widget.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:25:\"duplicator/duplicator.php\";i:3;s:23:\"revslider/revslider.php\";i:4;s:45:\"special-recent-posts/special-recent-posts.php\";i:5;s:41:\"wordpress-importer/wordpress-importer.php\";i:6;s:31:\"wp-lightbox/plugin-lightbox.php\";}", "yes");
INSERT INTO `wp_options` VALUES("39", "home", "http://techno-sites.com/scotts", "yes");
INSERT INTO `wp_options` VALUES("40", "category_base", "", "yes");
INSERT INTO `wp_options` VALUES("41", "ping_sites", "http://rpc.pingomatic.com/", "yes");
INSERT INTO `wp_options` VALUES("42", "advanced_edit", "0", "yes");
INSERT INTO `wp_options` VALUES("43", "comment_max_links", "2", "yes");
INSERT INTO `wp_options` VALUES("44", "gmt_offset", "0", "yes");
INSERT INTO `wp_options` VALUES("45", "default_email_category", "1", "yes");
INSERT INTO `wp_options` VALUES("46", "recently_edited", "a:4:{i:0;s:70:\"/home/wwwtechn/public_html/scotts/wp-content/themes/jupiter/header.php\";i:2;s:69:\"/home/wwwtechn/public_html/scotts/wp-content/themes/jupiter/style.css\";i:3;s:73:\"/home/wwwtechn/public_html/scotts/wp-content/themes/jupiter/functions.php\";i:4;s:0:\"\";}", "no");
INSERT INTO `wp_options` VALUES("47", "template", "jupiter", "yes");
INSERT INTO `wp_options` VALUES("48", "stylesheet", "jupiter", "yes");
INSERT INTO `wp_options` VALUES("49", "comment_whitelist", "1", "yes");
INSERT INTO `wp_options` VALUES("50", "blacklist_keys", "", "no");
INSERT INTO `wp_options` VALUES("51", "comment_registration", "0", "yes");
INSERT INTO `wp_options` VALUES("53", "html_type", "text/html", "yes");
INSERT INTO `wp_options` VALUES("54", "use_trackback", "0", "yes");
INSERT INTO `wp_options` VALUES("55", "default_role", "subscriber", "yes");
INSERT INTO `wp_options` VALUES("56", "db_version", "27916", "yes");
INSERT INTO `wp_options` VALUES("57", "uploads_use_yearmonth_folders", "1", "yes");
INSERT INTO `wp_options` VALUES("58", "upload_path", "", "yes");
INSERT INTO `wp_options` VALUES("59", "blog_public", "1", "yes");
INSERT INTO `wp_options` VALUES("60", "default_link_category", "2", "yes");
INSERT INTO `wp_options` VALUES("61", "show_on_front", "page", "yes");
INSERT INTO `wp_options` VALUES("62", "tag_base", "", "yes");
INSERT INTO `wp_options` VALUES("63", "show_avatars", "1", "yes");
INSERT INTO `wp_options` VALUES("64", "avatar_rating", "G", "yes");
INSERT INTO `wp_options` VALUES("65", "upload_url_path", "", "yes");
INSERT INTO `wp_options` VALUES("66", "thumbnail_size_w", "150", "yes");
INSERT INTO `wp_options` VALUES("67", "thumbnail_size_h", "150", "yes");
INSERT INTO `wp_options` VALUES("68", "thumbnail_crop", "1", "yes");
INSERT INTO `wp_options` VALUES("69", "medium_size_w", "300", "yes");
INSERT INTO `wp_options` VALUES("70", "medium_size_h", "300", "yes");
INSERT INTO `wp_options` VALUES("71", "avatar_default", "mystery", "yes");
INSERT INTO `wp_options` VALUES("74", "large_size_w", "1024", "yes");
INSERT INTO `wp_options` VALUES("75", "large_size_h", "1024", "yes");
INSERT INTO `wp_options` VALUES("76", "image_default_link_type", "file", "yes");
INSERT INTO `wp_options` VALUES("77", "image_default_size", "", "yes");
INSERT INTO `wp_options` VALUES("78", "image_default_align", "", "yes");
INSERT INTO `wp_options` VALUES("79", "close_comments_for_old_posts", "0", "yes");
INSERT INTO `wp_options` VALUES("80", "close_comments_days_old", "14", "yes");
INSERT INTO `wp_options` VALUES("81", "thread_comments", "1", "yes");
INSERT INTO `wp_options` VALUES("82", "thread_comments_depth", "5", "yes");
INSERT INTO `wp_options` VALUES("83", "page_comments", "0", "yes");
INSERT INTO `wp_options` VALUES("84", "comments_per_page", "50", "yes");
INSERT INTO `wp_options` VALUES("85", "default_comments_page", "newest", "yes");
INSERT INTO `wp_options` VALUES("86", "comment_order", "asc", "yes");
INSERT INTO `wp_options` VALUES("87", "sticky_posts", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("88", "widget_categories", "a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("89", "widget_text", "a:4:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:1352:\"[vc_column width=\"1/3\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"][mk_font_icons icon=\"icon-facebook-sign\" color=\"#3c599f\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"][mk_font_icons icon=\"icon-twitter-sign\" color=\"#28A9E0\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"]\r\n\r\n[mk_font_icons icon=\"moon-mail\" color=\"#BFBFBF\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"][mk_font_icons icon=\"icon-pinterest-sign\" color=\"#CB2028\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"][/vc_column_text][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#b70100\" size=\"14\" font_weight=\"inhert\" letter_spacing=\"0\" margin_top=\"4\" margin_bottom=\"2\" font_family=\"none\" align=\"left\"]Follow Us, Like Us[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]You don\'t want to miss out on what\'s happening here.<br/>\r\n\r\n<a href=\"#\">Facebook</a> | <a href=\"#\">Twitter</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column]\";s:6:\"filter\";b:0;}i:3;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:199:\"[vc_column width=\"1/3\"]<a href=\"?lightbox[width]=350&lightbox[height]=400#reqquote\" class=\"lightbox\"><img src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/08/estyle.jpg\" /></a>[/vc_column]\";s:6:\"filter\";b:0;}i:4;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:287:\"[vc_column width=\"1/3\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/08/bottom2.jpg\" image_width=\"313\" image_height=\"116\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][/vc_column]\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("90", "widget_rss", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("91", "timezone_string", "", "yes");
INSERT INTO `wp_options` VALUES("93", "embed_size_w", "", "yes");
INSERT INTO `wp_options` VALUES("94", "embed_size_h", "600", "yes");
INSERT INTO `wp_options` VALUES("95", "page_for_posts", "0", "yes");
INSERT INTO `wp_options` VALUES("96", "page_on_front", "16", "yes");
INSERT INTO `wp_options` VALUES("97", "default_post_format", "0", "yes");
INSERT INTO `wp_options` VALUES("98", "initial_db_version", "19470", "yes");
INSERT INTO `wp_options` VALUES("99", "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");
INSERT INTO `wp_options` VALUES("100", "widget_search", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("101", "widget_recent-posts", "a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("102", "widget_recent-comments", "a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("103", "widget_archives", "a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("104", "widget_meta", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("105", "sidebars_widgets", "a:18:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:6:\"meta-2\";i:1;s:12:\"categories-2\";i:2;s:10:\"archives-2\";i:3;s:17:\"recent-comments-2\";i:4;s:14:\"recent-posts-2\";i:5;s:8:\"search-2\";}s:9:\"sidebar-1\";a:3:{i:0;s:16:\"addthis-widget-2\";i:1;s:14:\"recent_posts-3\";i:2;s:20:\"testimonial_widget-4\";}s:9:\"sidebar-2\";a:3:{i:0;s:16:\"addthis-widget-3\";i:1;s:14:\"recent_posts-2\";i:2;s:20:\"testimonial_widget-2\";}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:3:{i:0;s:16:\"addthis-widget-4\";i:1;s:14:\"recent_posts-4\";i:2;s:20:\"testimonial_widget-3\";}s:9:\"sidebar-7\";a:0:{}s:9:\"sidebar-8\";a:0:{}s:9:\"sidebar-9\";a:0:{}s:10:\"sidebar-10\";a:1:{i:0;s:6:\"text-2\";}s:10:\"sidebar-11\";a:1:{i:0;s:6:\"text-3\";}s:10:\"sidebar-12\";a:1:{i:0;s:6:\"text-4\";}s:10:\"sidebar-13\";a:0:{}s:10:\"sidebar-14\";a:0:{}s:10:\"sidebar-15\";a:0:{}s:10:\"sidebar-16\";a:1:{i:0;s:28:\"wdg_specialrecentpostsfree-2\";}s:13:\"array_version\";i:3;}", "yes");
INSERT INTO `wp_options` VALUES("114", "current_theme", "Jupiter", "yes");
INSERT INTO `wp_options` VALUES("153", "cron", "a:5:{i:1407862794;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:1407870660;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:1407906001;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:1407909745;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;}}}s:7:\"version\";i:2;}", "yes");
INSERT INTO `wp_options` VALUES("205", "uninstall_plugins", "a:1:{s:45:\"special-recent-posts/special-recent-posts.php\";a:2:{i:0;s:22:\"SpecialRecentPostsFree\";i:1;s:16:\"uninstall_plugin\";}}", "no");
INSERT INTO `wp_options` VALUES("206", "link_manager_enabled", "1", "yes");
INSERT INTO `wp_options` VALUES("615", "_site_transient_timeout_browser_34d7dfe1204a1f3a406d04c3911646db", "1408464164", "yes");
INSERT INTO `wp_options` VALUES("616", "_site_transient_browser_34d7dfe1204a1f3a406d04c3911646db", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"36.0.1985.125\";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");
INSERT INTO `wp_options` VALUES("162", "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:30:\"http://techno-sites.com/scotts\";s:4:\"link\";s:106:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://techno-sites.com/scotts/\";s:3:\"url\";s:139:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://techno-sites.com/scotts/\";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");
INSERT INTO `wp_options` VALUES("619", "_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1407902569", "no");
INSERT INTO `wp_options` VALUES("620", "_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1407859369", "no");
INSERT INTO `wp_options` VALUES("631", "_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51", "1407902570", "no");
INSERT INTO `wp_options` VALUES("174", "_transient_timeout_feed_3246f42ec45985fd045cfa689fa5d5f0", "1406998814", "no");
INSERT INTO `wp_options` VALUES("175", "_transient_feed_3246f42ec45985fd045cfa689fa5d5f0", "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:57:\"link:http://techno-sites.com/scotts/ - 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:94:\"http://www.google.com/search?ie=utf-8&q=link:http://techno-sites.com/scotts/&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:88:\"Your search - <b>link:http://techno-sites.com/scotts/</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:\"Sat, 02 Aug 2014 05:00:14 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=050379b6995b173d:FF=0:TM=1406955614:LM=1406955614:S=cgyC6BvFLLZK6b0y; expires=Mon, 01-Aug-2016 05:00:14 GMT; path=/; domain=.google.com\";i:1;s:212:\"NID=67=AcJ39AGrhoWPfPgL-6qedqjXqXT72ih9UFG-BsND55FaAdzp_m9GhZfbqeZauWKD2VYLZDX6M9nUR0ECY7xB_VEPUqVRELhLBrJ_JW0Wh04lD68G91qQuf2kXXkO6Stx; expires=Sun, 01-Feb-2015 05:00:14 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:\"20090627192103\";}", "no");
INSERT INTO `wp_options` VALUES("176", "_transient_timeout_feed_mod_3246f42ec45985fd045cfa689fa5d5f0", "1406998814", "no");
INSERT INTO `wp_options` VALUES("177", "_transient_feed_mod_3246f42ec45985fd045cfa689fa5d5f0", "1406955614", "no");
INSERT INTO `wp_options` VALUES("178", "_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f", "1406998814", "no");
INSERT INTO `wp_options` VALUES("179", "_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&hellip; yet. It&#8217;s okay &#8212; there is no rush.</p>\n", "no");
INSERT INTO `wp_options` VALUES("180", "_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc", "1406998814", "no");
INSERT INTO `wp_options` VALUES("182", "_transient_feed_a5420c83891a9c88ad2a4f04584a5efc", "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:\"Sat, 02 Aug 2014 04:54: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: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: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: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: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: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:\"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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 10 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: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: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:\"\";}}}}}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:33:\"Google Analytics Dashboard for 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:74:\"http://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s: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, 10 Mar 2013 17:07: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:35:\"50539@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:148:\"Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.\";s: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:\"Alin Marcu\";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:18:\"Google Maps Ready!\";s: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/google-maps-ready/#post-62478\";s: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, 06 Jan 2014 10: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"62478@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:146:\"Display custom Google Maps. Set markers and locations with text, images, categories and links. Customize google map without any programming skills\";s: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:18:\"Google Maps 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: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:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 02 Aug 2014 05:00:14 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:13:\"last-modified\";s:29:\"Fri, 09 Mar 2007 22:11:30 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20090627192103\";}", "no");
INSERT INTO `wp_options` VALUES("183", "_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc", "1406998814", "no");
INSERT INTO `wp_options` VALUES("621", "_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c", "1407902569", "no");
INSERT INTO `wp_options` VALUES("622", "_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:57:\"WordPress.tv: Andrew Nacin: Keynote WordCamp Seattle 2014\";s: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=37318\";s: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/08/12/andrew-nacin-keynote-wordcamp-seattle-2014/\";s: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:634:\"<div id=\"v-zRdcUwIL-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37318/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37318/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37318&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/12/andrew-nacin-keynote-wordcamp-seattle-2014/\"><img alt=\"Andrew Nacin: Keynote\" src=\"http://videos.videopress.com/zRdcUwIL/video-29a2a6e399_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:\"Tue, 12 Aug 2014 15:40:23 +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: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:49:\"WordPress.tv: WordCamp.org Site Tools Orientation\";s: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=36428\";s: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:\"http://wordpress.tv/2014/08/12/wordcamp-org-site-tools-orientation/\";s: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:647:\"<div id=\"v-GHzuucx2-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36428/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36428/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36428&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/12/wordcamp-org-site-tools-orientation/\"><img alt=\"WordCamp.org Site Tools Orientation\" src=\"http://videos.videopress.com/GHzuucx2/video-072a616795_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:\"Tue, 12 Aug 2014 15:20: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: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:52:\"WordPress.tv: Fish Bowl Interactive Group Discussion\";s: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=37400\";s: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:70:\"http://wordpress.tv/2014/08/12/fish-bowl-interactive-group-discussion/\";s: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:653:\"<div id=\"v-eYcA9xgt-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37400/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37400/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37400&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/12/fish-bowl-interactive-group-discussion/\"><img alt=\"Fish Bowl Interactive Group Discussion\" src=\"http://videos.videopress.com/eYcA9xgt/video-8612b0f944_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:\"Tue, 12 Aug 2014 15:15: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: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:85:\"WPTavern: Add Reddit Style Commenting to WordPress With the Comment Popularity 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=28045\";s: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/add-reddit-style-commenting-to-wordpress-with-the-comment-popularity-plugin?utm_source=rss&utm_medium=rss&utm_campaign=add-reddit-style-commenting-to-wordpress-with-the-comment-popularity-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:5010:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/comments.png\" rel=\"prettyphoto[28045]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/comments.png?resize=984%2C455\" alt=\"comments\" class=\"aligncenter size-full wp-image-28128\" /></a></p>\n<p>Comments are an important aspect of your content and can serve as a vehicle for building community. WordPress site admins put in a hefty amount of work moderating comments and combating spam, just to <a href=\"http://wptavern.com/why-comments-still-matter\" target=\"_blank\">keep the conversation going</a> with comments open. With all that work invested, admins are looking for new ways to make comment interaction more valuable to those who are participating.</p>\n<p>WordPress.com recently<a href=\"http://en.blog.wordpress.com/2014/08/07/introducing-comment-likes/\" target=\"_blank\"> added comment likes</a> to the delight of its users. Self-hosted WordPress site admins are hopeful that comment likes will find their way into Jetpack as well. If you&#8217;re interested in doing something more with comments, there are many plugins that help to promote interaction on your site.</p>\n<p><a href=\"http://wordpress.org/plugins/comment-popularity/\" target=\"_blank\">Comment Popularity</a> is a new one that caught my eye. The plugin, created by <a href=\"https://twitter.com/paul_wp\" target=\"_blank\">Paul de Wouters</a> and his colleagues at <a href=\"http://hmn.md/\" target=\"_blank\">Human Made</a>, adds Reddit style commenting to WordPress. Registered site members can vote comments up or down to increase or decrease comment visibility.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/comment-popularity.jpg\" rel=\"prettyphoto[28045]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/comment-popularity.jpg?resize=785%2C613\" alt=\"comment-popularity\" class=\"aligncenter size-full wp-image-28093\" /></a></p>\n<p>When the plugin is active, comments are sorted by weight (number of votes) in a descending order. Site members receive karma each time one of their comments is upvoted. Administrators have the option to attribute more weight to &#8220;expert&#8221; commenters by adding an expert label and additional points on user profiles.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/user-profile-comment-popularity-settings.jpg\" rel=\"prettyphoto[28045]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/user-profile-comment-popularity-settings.jpg?resize=503%2C234\" alt=\"user-profile-comment-popularity-settings\" class=\"aligncenter size-full wp-image-28102\" /></a></p>\n<p>There&#8217;s also an option in the discussion panel for setting a default expert karma.</p>\n<p>De Wouters and the folks at Human Made plan to support and maintain the plugin via the forums on WordPress.org. It was originally created for their client, CFO Publishing, who will be listed as a contributor on the next release.</p>\n<p><strong>&#8220;I have a few ideas for integration with other plugins such as Stream, and our SaaS product WP Remote,&#8221;</strong> de Wouters said. I asked if he plans to add a UI for showing users their aggregate upvotes/ranks, and he confirmed that this is a possibility. &#8220;We&#8217;re already storing users voting activity, so it makes sense to offer an admin view for it,&#8221; he said. &#8220;Maybe a dashboard widget. Also, this is the kind of data we&#8217;d send to WP Remote or Stream.&#8221;</p>\n<p>The plugin is currently restricted to registered users, as it doesn&#8217;t make much sense to leave it open for anonymous users to vote. &#8220;I do however plan to develop a drop in class that will allow users to authenticate themselves via social networks, which will reduce friction and still provide a way to identify a user with relative reliabilty,&#8221; de Wouters commented regarding future development plans. Although he wants to keep it simple and focused on one particular functionality, he is open to suggestions and contributions via the plugin&#8217;s <a href=\"https://github.com/humanmade/comment-popularity\" target=\"_blank\">GitHub repository</a>.</p>\n<p>Comment Popularity gives registered users a way to weigh in on discussions without having to comment. Consequently, there is a greater incentive for readers to register for your site. It gives everyone a chance to influence the conversation. As users attribute value to comments they like, the best comments will float to the top. This saves readers from having to scroll through all the mediocre comments in order to find the highest quality responses.</p>\n<p>If you&#8217;re looking for a new way to encourage interaction in your comments, the Comment Popularity plugin is simple and intuitive to use. It should work automatically with most standard comment forms. <a href=\"http://wordpress.org/plugins/comment-popularity/\" target=\"_blank\">Download</a> the plugin for free from WordPress.org and watch the GitHub repository for updates in development.</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, 12 Aug 2014 00:14: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:\"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: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:77:\"WPTavern: Interview With Siobhan McKeown On The Future Of The WordPress Codex\";s: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=28089\";s: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:198:\"http://wptavern.com/interview-with-siobhan-mckeown-on-the-future-of-the-wordpress-codex?utm_source=rss&utm_medium=rss&utm_campaign=interview-with-siobhan-mckeown-on-the-future-of-the-wordpress-codex\";s: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:6798:\"<p>If you use WordPress, chances are that you&#8217;ve run into the <a title=\"http://codex.wordpress.org/\" href=\"http://codex.wordpress.org/\">WordPress Codex</a>. The Codex is a community maintained collection of documentation, hooks, filters, best practices, and other information related to WordPress. With various <a title=\"http://make.wordpress.org/docs/handbook/projects/handbooks/\" href=\"http://make.wordpress.org/docs/handbook/projects/handbooks/\">handbook projects</a> underway, I&#8217;ve been wondering what the future of the Codex is. To find out, I got in touch with <a title=\"http://siobhanmckeown.com/\" href=\"http://siobhanmckeown.com/\">Siobhan McKeown</a>, who is a member of the <a title=\"http://make.wordpress.org/docs/\" href=\"http://make.wordpress.org/docs/\">documentation team</a>.</p>\n<h2>Interview With Siobhan McKeown</h2>\n<p><strong>Is the <a title=\"http://make.wordpress.org/docs/2013/06/19/docs-sprint-results-and-roadmap/\" href=\"http://make.wordpress.org/docs/2013/06/19/docs-sprint-results-and-roadmap/\">roadmap outlined here</a> still accurate and is it being followed? Is it still on time?</strong></p>\n<p>The roadmap is still fairly accurate but it’s not on time. The number of contributors to docs is quite small and we’ve faced challenges around getting development work done and finding people to write. That said, the people who are involved are very dedicated and we’re slowly chipping away at things. We have made big strides forward, particularly in the area of inline docs (thanks <a title=\"http://profiles.wordpress.org/drewapicture\" href=\"http://profiles.wordpress.org/drewapicture\">Drew Jaynes</a> and <a title=\"https://profiles.wordpress.org/kpdesign\" href=\"https://profiles.wordpress.org/kpdesign\">Kim Parsell</a>) and in building <a title=\"https://developer.wordpress.org/reference/\" href=\"https://developer.wordpress.org/reference/\">developer.wordpress.org</a>.</p>\n<p><strong>Ultimately, is the future of the Codex for it to disappear in favor of all the other documentation resources outlined in the roadmap?</strong></p>\n<p>I would like for that to happen, but the decision doesn’t ultimately lie with me and it’s a discussion that we’ll have to return to once new documentation is in place.</p>\n<p>Many free software projects in the early stages of their life use a wiki for their documentation. Over time, this can become out-of-date and inaccurate. As a project grows, it often out-grows a wiki, requiring more targeted documentation for both users and developers. <a href=\"https://support.mozilla.org/en-US/products/firefox\">Firefox</a> and <a href=\"http://guides.rubyonrails.org/getting_started.html\">Ruby on Rails</a> are good examples of FOSS projects that provide the types of targeted documentation that WordPress should be providing. I would hope that we can eventually get there ourselves, and keep the Codex as a historical archive.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/MozillaFireFoxTargetedSupport.png\" rel=\"prettyphoto[28089]\"><img class=\"size-full wp-image-28100\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/MozillaFireFoxTargetedSupport.png?resize=966%2C690\" alt=\"Mozilla FireFox Targeted Documentation\" /></a>Mozilla FireFox Targeted Documentation\n<p><strong>Is it a waste of effort and energy for folks to continue to edit and update the Codex?</strong></p>\n<p>No. For two reasons: First of all, while all of the docs work is going on, we need to ensure that the Codex stays up-to-date and accurate. It remains WordPress’ primary source of documentation and will be for some time, so contributions are still valuable there. When a new version of WordPress is released, the docs team usually does a sprint to get the Codex up-to-date.</p>\n<p>Secondly, the main problem with the Codex is its navigation and structure. There’s a lot of good content in there mixed with a lot of out-of-date content. As we create new resources, we look at the content in the Codex and migrate good-quality content. If you fix a page in the Codex, then it’s likely that will end up somewhere in a new documentation resource.</p>\n<p><strong>How can folks get involved with helping the roadmap move along?</strong></p>\n<p>We particularly need help in two areas:</p>\n<ol>\n<li>Someone to help with ongoing development of <a title=\"http://wptavern.com/help-contribute-to-the-official-wordpress-developer-resource-by-testing-code-references\" href=\"http://wptavern.com/help-contribute-to-the-official-wordpress-developer-resource-by-testing-code-references\">WP-Parser</a> (the parser used to generate the Code Reference). A lot of things are on hold until we get someone helping there.</li>\n<li>Writing the <a title=\"https://make.wordpress.org/docs/theme-developer-handbook/\" href=\"https://make.wordpress.org/docs/theme-developer-handbook/\">theme</a> and <a title=\"https://make.wordpress.org/docs/plugin-developer-handbook/\" href=\"https://make.wordpress.org/docs/plugin-developer-handbook/\">plugin developer</a> handbooks. These have been around for a long time and we really want to get them finished off so that we can move on to focusing on user support.</li>\n</ol>\n<h2>To Some, Google Is The WordPress Codex</h2>\n<p>It may be the largest collection of WordPress documentation but I bet it doesn&#8217;t compare to the amount of WordPress content published on sites across the web. The paradox of publishing content on the Codex for the benefit of everyone versus a personal site for the benefit of a small audience has existed since it was created.</p>\n<p>I think it would be awesome if content from sites like <a title=\"http://justintadlock.com/\" href=\"http://justintadlock.com/\">Justin Tadlock</a> found a home on the Codex but perhaps we don&#8217;t need one at all. Maybe all we need is Google. When I asked the Tavern&#8217;s Twitter followers what <a title=\"http://wptavern.com/7-aspects-of-wordpress-i-take-for-granted\" href=\"http://wptavern.com/7-aspects-of-wordpress-i-take-for-granted\">aspect of WordPress do they take for granted</a>, Jared Novack submitted the following answer:</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p><a href=\"https://twitter.com/wptavern\">@wptavern</a> You can type anything into google followed by \"WordPress\" and someone has already asked (and answered) it</p>\n<p>&mdash; Jared Novack (@jaredNova) <a href=\"https://twitter.com/jaredNova/statuses/494322903739936768\">July 30, 2014</a></p></blockquote>\n<p></p>\n<p>If the Codex ever goes offline, it will be a sad day. However, if it&#8217;s replaced with easy to navigate, skill level targeted documentation, with a solid code reference, I think a lot of users and developers will be happy with its replacement. Has the Codex saved your bacon once or twice? Let us know in the comments.</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, 11 Aug 2014 22:20: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: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: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:57:\"WPTavern: WPWeekly Episode 157 – Jeffro Tells His Story\";s: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=28075&preview_id=28075\";s: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:150:\"http://wptavern.com/wpweekly-episode-157-jeffro-tells-his-story?utm_source=rss&utm_medium=rss&utm_campaign=wpweekly-episode-157-jeffro-tells-his-story\";s: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:2274:\"<p>The past 156 episodes of WordPress Weekly are filled with stories of people who are doing exciting things with WordPress. For this episode, I decided to try something a little different. I handed the show over to <a href=\"http://marcuscouch.com/\" title=\"http://marcuscouch.com/\">Marcus Couch</a>, who interviewed me. In the show, I describe how I became interested in computers and the events that lead me to where I am today. It&#8217;s a lengthy episode but one I hope you enjoy.</p>\n<p>A reminder that beginning this week, WordPress Weekly will be recorded live on <strong>Wednesdays at 9:30 PM Eastern</strong>. The change better accommodates my schedule and the new day and time is also more compatible with guests.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"http://wptavern.com/wordpress-3-9-2-fixes-security-vulnerabilities-users-strongly-encouraged-to-update\" title=\"http://wptavern.com/wordpress-3-9-2-fixes-security-vulnerabilities-users-strongly-encouraged-to-update\">WordPress 3.9.2 Fixes Security Vulnerabilities, Users Strongly Encouraged To Update</a><br />\n<a href=\"http://wptavern.com/crowd-favorite-announces-chris-lema-as-new-cto\" title=\"http://wptavern.com/crowd-favorite-announces-chris-lema-as-new-cto\">Crowd Favorite Announces Chris Lema As New CTO</a><br />\n<a href=\"http://wptavern.com/how-to-change-jetpack-accounts-without-losing-your-stats-or-subscribers\" title=\"http://wptavern.com/how-to-change-jetpack-accounts-without-losing-your-stats-or-subscribers\">How to Change Jetpack Accounts Without Losing Your Stats or Subscribers</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 13th 3 P.M. Eastern &#8211; Special Guest, Pippin Williamson</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 #157:</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:\"Mon, 11 Aug 2014 20:05: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: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: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:67:\"WPTavern: Underscores WordPress Starter Theme Adds Support for Sass\";s: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=28061\";s: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/underscores-wordpress-starter-theme-adds-support-for-sass?utm_source=rss&utm_medium=rss&utm_campaign=underscores-wordpress-starter-theme-adds-support-for-sass\";s: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><a href=\"http://underscores.me/\" target=\"_blank\">Underscores</a> community project contributors <a href=\"http://themeshaper.com/2014/08/11/sass-comes-to-_s/\" target=\"_blank\">announced</a> today that the theme now includes support for <a href=\"http://sass-lang.com/\" target=\"_blank\">Sass</a>. The popular WordPress starter theme is an open source project maintained by Automattic, and many of its users requested Sass support, according to contributor Tammie Lister. &#8220;The community firstly asked for Sass. As Sass is in core, this makes sense. It was already part of most themers&#8217; workflow.&#8221;</p>\n<p>If you visit <a href=\"http://underscores.me/\" target=\"_blank\">Underscores.me</a> and click on &#8220;Advanced Options&#8221;, you&#8217;ll now find that you can check a box to add Sass support:</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/add-sass.jpg\" rel=\"prettyphoto[28061]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/add-sass.jpg?resize=968%2C355\" alt=\"add-sass\" class=\"aligncenter size-full wp-image-28068\" /></a></p>\n<p>Lister emphasized in the announcement that support for Sass is included in a way that gives developers the freedom to use it as they please:</p>\n<blockquote><p>Not everyone compiles or uses Sass the same, so _s shouldn&#8217;t force anyone to follow one path or another. In this sense, the Sass provided takes a pure approach, not requiring Compass or any other scripts.</p></blockquote>\n<p>Sass support came about from a combination of numerous pull requests and forks of the project on GitHub. However, the project&#8217;s contributors do not wish to limit everyone to Sass and are open to other CSS preprocessors. <strong>&#8220;I&#8217;d still love to see a fork of Less for _s. We&#8217;re keen it opens up the way to other preprocessors,&#8221;</strong> Lister told the Tavern regarding the Sass support announced today.</p>\n<p>Earlier this year, <a href=\"http://wptavern.com/wordpress-com-formally-opens-its-marketplace-to-theme-developers\" target=\"_blank\">WordPress.com formally opened up its marketplace to theme developers</a>. Theme submission <a href=\"http://developer.wordpress.com/themes/\" target=\"_blank\">guidelines</a> are fairly strict and developers are encouraged to use the _s theme for a head start. While many theme authors appreciate the ability to save time with mixins and variables, using a preprocessor is not required for submitting to WordPress.com.</p>\n<p>Every WordPress themer has a unique workflow that may or may not involve a preprocessor, and the Underscores project contributors plan to respect that. <strong>&#8220;_s doesn&#8217;t tell you how to do things, it gives you a start. Anything we add to it should also do that,&#8221;</strong> Lister said.</p>\n<p>The addition of Sass support marks another turning point for the project, as Lister notes that the <a href=\"https://github.com/Automattic/_s\" target=\"_blank\">GitHub repository</a> will now be used solely for development. If you want to use Underscores in a project, the team encourages you to download it directly from <a href=\"http://underscores.me/\" target=\"_blank\">Underscores.me</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, 11 Aug 2014 19:00:58 +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: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:93:\"Post Status: Week in review: theme shops, hub and spoke, you can’t afford me, and much more\";s: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:30:\"http://www.poststat.us/?p=7070\";s: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://www.poststat.us/week-review-theme-shops-hub-spoke-cant-afford-much/?utm_source=rss&utm_medium=rss&utm_campaign=week-review-theme-shops-hub-spoke-cant-afford-much\";s: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:10330:\"<p><img class=\"aligncenter size-large wp-image-6769\" src=\"http://www.poststat.us/wp-content/uploads/2014/06/week-in-review1-752x300.jpg\" alt=\"week-in-review\" width=\"627\" height=\"250\" /></p>\n<p>Welcome to the seventh “<a href=\"http://www.poststat.us/category/week-in-review/\">Week in Review</a>” on Post Status, where I hope to offer up some of the things you may have missed in the last week or so. A whole bunch of good stuff to read from the last week, so let&#8217;s get to it:</p>\n<h3>Theme shops sorted by their Alexa rank</h3>\n<p>Devin Price has updated his <a href=\"http://wptheming.com/2014/08/theme-shop-directory-2014/\">list of WordPress theme shops</a>, sorted by Alexa rank, for 2014. This is a really interesting list that&#8217;s sure to enlighten you to some theme shops that you&#8217;ve never heard of. I&#8217;ve referenced the 2013 version many times in the past. I&#8217;m glad Devin put time into doing this again.</p>\n<p>Alexa isn&#8217;t a perfect way to rank theme shops, obviously, but it does offer good insight to see what average Joes unfamiliar with the WordPress theme landscape probably stumble upon as they search for WordPress themes. As Devin notes, the order of the top shops haven&#8217;t changed a whole lot in the past year, though pretty much all have gained ground, and WPMU Dev jumped all the way to number 1 from number 6.</p>\n<h3>Hub and spoke versus distributed teams</h3>\n<p>Jeff Chandler blogged about <a href=\"http://wptavern.com/how-crowd-favorite-utilizes-multiple-offices-and-a-distributed-work-force\">Crowd Favorite&#8217;s <del>hub and spoke office</del> (<em>edit</em>: it&#8217;s actually a constellation model; no &#8220;hub&#8221;) model</a> (a central office + many smaller offices). Jake Goldman responded with his <a href=\"http://jakegoldman.me/2014/08/hub-and-spoke-vs-distributed/\">case for a fully distributed team</a> (10up&#8217;s model). Both offer quality insight into how some of the larger WordPress consultancies operate.</p>\n<h3>You can&#8217;t afford the plugin you want</h3>\n<p>Chris Lema has written <a href=\"http://chrislema.com/cant-afford-wordpress-plugin-want/\">an excellent post about custom plugin development</a>, and why you just can&#8217;t get the exact thing you want off the shelf (unless you get real lucky).</p>\n<blockquote><p>That plugin that does everything you ever wanted? It doesn’t exist. And if it did, if someone built it, it would cost you thousands and thousands of dollars.</p>\n<p>Because what you often describe isn’t a plugin. It’s a system.</p>\n<p>And since you don’t want to connect several focused plugins, that each do the one thing they were made to do, you won’t really find the perfect plugin sitting there waiting for you.</p></blockquote>\n<h3>SSL all the things</h3>\n<p><span id=\"more-7070\"></span></p>\n<p><a href=\"http://searchengineland.com/google-starts-giving-ranking-boost-secure-httpsssl-sites-199446\">Google spoke from on high</a>, declaring SSL to be a portion of their ranking algorithm. The SEOs and the SSL sellers rejoiced. Tim Nash has a nice<a href=\"https://timnash.co.uk/guessing-ssl-questions/\"> primer on the nerdy details of SSL</a>. Joost de Valk also has some <a href=\"https://yoast.com/move-website-https-ssl/\">practical tips for switching over to SSL</a>. And Zack Tollman has a great performance post over at The Theme Foundry <a href=\"https://thethemefoundry.com/blog/why-we-dont-use-a-cdn-spdy-ssl/\">about SPDY and SSL</a>.</p>\n<p>Now, all that said, seriously don&#8217;t freak out about SSL. It is great, that&#8217;s true, but just because Google says it&#8217;s part of their algorithm doesn&#8217;t mean you have to have it no matter what. Still though, having SSL enabled is probably a good thing for most sites, if you can afford it. Just be smart about it, and not purely reactionary to Google&#8217;s whims.</p>\n<h3>Some hosts start to support Clef, the password-less login app</h3>\n<p>SiteGround and three other hosts announced <a href=\"http://blog.getclef.com/protecting-users-default/\">default support for Clef last week</a>. New installs on those platforms will enable the password-less login app. Clef works as a form of two-factor authentication, since you have to have your phone on you and scan the login screen to access the site.</p>\n<p>It&#8217;s obviously past time to rely purely on passwords, so it&#8217;s good to see folks supporting Clef and other two-factor methods out of the box.</p>\n<h3>WordPress-based portfolio templates, with Semplice</h3>\n<p><a href=\"http://semplicelabs.com/\">Semplice</a> is a WordPress portfolio template product, that&#8217;s still in development, but it&#8217;s definitely outside of the normal WordPress themes you see. I got in touch with the folks behind Semplice and they expect to have something ready in a few weeks for beta testing. It seems you can already buy it though, so I don&#8217;t know what that&#8217;s about. Either way, this may be a product to keep an eye on.</p>\n<h3>The WordPress security &#8220;delimma&#8221;</h3>\n<p>Tony Perez, CEO of Sucuri, write about <a href=\"http://tonyonsecurity.com/2014/08/09/the-dilemma-that-is-wordpress-security/\">what he considers to be a delimma with WordPress security</a>. I don&#8217;t personally agree with some of Tony&#8217;s conclusions here, but they are worth reading, as your mileage may vary. He takes some folks&#8217; words to task (including my own), but I think in the end there is a more a difference in opinion on how to delivery the security message versus actual differences in implementing security measures.</p>\n<p>I believe the Drupal vs WordPress method for highlighting last week&#8217;s security release was a reflection of how WordPress and Drupal communicate in general; WordPress said it as if speaking to regular site owners and Drupal spoke to developers. To me, making WordPress accessible to regular people is paramount &#8212; related to security issues or not.</p>\n<p>I have a lot more I can say about this, but I have no desire to get in a pointless battle when I think we mostly agree on the goal, just not the message. But I do have one more note. Tony finishes his post with this:</p>\n<blockquote><p>You can’t own 22% of the market and not expect issues. Is it best to fight it and blindly convince yourself that they don’t exist, or is it better to embrace it?</p></blockquote>\n<p>I take exception to this. I don&#8217;t know anyone in a significant position within the WordPress project that takes such a &#8220;blind&#8221; stance. You can&#8217;t say WordPress core developers don&#8217;t take security seriously, because they absolutely do.</p>\n<h3>Stellar and international payments</h3>\n<p><a href=\"https://www.stellar.org/blog/introducing-stellar/\">Stellar</a> is a &#8220;a decentralized protocol for sending and receiving money in any pair of currencies&#8221; with some big backers, like Stripe. Brent and Kirby, at Prospress, nerded out over Stellar when it launched, and then wrote up a <a href=\"http://prospress.com/will-stellar-finally-fix-international-payments/\">great post about what this could mean for big savings in international eCommerce</a>.</p>\n<h3>Tablesaw: responsive tables, by Filament Group</h3>\n<p>Responsive tables are a pain. The Filament Group really attacked them with <a href=\"http://filamentgroup.com/lab/tablesaw.html\">Tablesaw</a>. This is a really nice solution that you may consider for implementation with certain types of themes and websites.</p>\n<h3>Comment likes on WordPress.com</h3>\n<p><a href=\"http://en.blog.wordpress.com/2014/08/07/introducing-comment-likes/\">WordPress.com has introduced comment likes</a>. This could be great for some sites with heavy amounts of comments, especially if they add some sorting options to bring good comments to the top. It might be a while before this one hits Jetpack though; apparently there are some technical challenges there.</p>\n<h3>Get news of new WordPress.com themes</h3>\n<p>Also in WordPress.com land, it turns out they aren&#8217;t really blogging about every theme release any more. So Luke McDonald put together a Twitter account to help keep you informed.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p><a href=\"http://t.co/unxO0Vbjaz\">http://t.co/unxO0Vbjaz</a> no longer promotes or announces Premium theme releases, so I spent some time to do this: <a href=\"https://t.co/Cenf4RW0Ed\">https://t.co/Cenf4RW0Ed</a></p>\n<p>&mdash; Luke McDonald (@thelukemcdonald) <a href=\"https://twitter.com/thelukemcdonald/statuses/497817557529665536\">August 8, 2014</a></p></blockquote>\n<p></p>\n<h3>Why attend WordPress conferences (and updates on some of them)</h3>\n<p>Andy Leverenz puts some good reasons together on the Elegant Themes blog about <a href=\"http://www.elegantthemes.com/blog/tips-tricks/wordpress-conferences-are-on-the-rise-why-you-should-attend\">why you should attend WordPress conferences</a>, and he highlights some of those coming up.</p>\n<p>Speaking of, if you want to go to PressNomics (the attendee list is awesome so far), <a href=\"http://pressnomics.com/2014/08/players-came-far-wide-attendees/\">you better act soon</a>; that conference could sell out really soon.</p>\n<p>The <a href=\"http://2014.sf.wordcamp.org/2014/08/04/say-hello-to-the-first-group-of-wordcamp-san-francisco-speakers/\">first</a> and <a href=\"http://2014.sf.wordcamp.org/2014/08/07/our-second-group-of-wordcamp-san-francisco-speakers/\">second</a> batches of WordCamp San Francisco speakers have been announced.</p>\n<p><a href=\"http://2014.europe.wordcamp.org/\">WordCamp Europe&#8217;s</a> speaker list is also dripping out, and it&#8217;s pretty amazing; that&#8217;s going to be an incredible event in Sofia.</p>\n<p>Finally, if you&#8217;re in the south, WordCamp Birmingham (my local camp &#8212; #WPYall!) is this Saturday. It&#8217;s going to be a great time, and I hope I get to meet some of you there. You can still register, <a href=\"http://2014.birmingham.wordcamp.org/\">so do that and come learn with us</a>.</p>\n<hr />\n<p>Have a great week, y&#8217;all. Make some news, and I&#8217;ll write it. Be on the lookout too, I&#8217;ve got my own news to share in the next month or so. Which means it&#8217;s probably a good time to subscribe to my <a title=\"Newsletter\" href=\"http://www.poststat.us/newsletter/\">newsletter</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, 11 Aug 2014 17:22: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:15:\"Brian Krogsgard\";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:59:\"WordPress.tv: Kailey Lampert: Hidden Treasures 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37206\";s: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:76:\"http://wordpress.tv/2014/08/11/kailey-lampert-hidden-treasures-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:666:\"<div id=\"v-rF09mHB3-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37206/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37206/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37206&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/11/kailey-lampert-hidden-treasures-of-wordpress/\"><img alt=\"Kailey Lampert: Hidden Treasures of WordPress\" src=\"http://videos.videopress.com/rF09mHB3/video-92a0f142f5_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:\"Mon, 11 Aug 2014 15:24: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: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: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:69:\"WordPress.tv: WordCamp Organizers’ Orientation Hangout Mar 19, 2014\";s: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=36465\";s: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:83:\"http://wordpress.tv/2014/08/11/wordcamp-organizers-orientation-hangout-mar-19-2014/\";s: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:687:\"<div id=\"v-RWT5wtrZ-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36465/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36465/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36465&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/11/wordcamp-organizers-orientation-hangout-mar-19-2014/\"><img alt=\"WordCamp Organizers&#8217; Orientation Hangout Mar 19, 2014\" src=\"http://videos.videopress.com/RWT5wtrZ/video-f088d9ed3d_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:\"Mon, 11 Aug 2014 15:17:41 +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: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:66:\"WordPress.tv: Peter Baran: Optimalizácia WordPress pre rýchlosť\";s: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=37425\";s: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:82:\"http://wordpress.tv/2014/08/11/peter-baran-optimalizacia-wordpress-pre-rychlost-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:673:\"<div id=\"v-zO6njcbX-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37425/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37425/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37425&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/11/peter-baran-optimalizacia-wordpress-pre-rychlost-2/\"><img alt=\"Peter Baran: Optimalizácia WordPress pre rýchlosť\" src=\"http://videos.videopress.com/zO6njcbX/video-97d1c51b93_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:\"Mon, 11 Aug 2014 15:14: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: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: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:26:\"Matt: Mosquito Preferences\";s: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=43977\";s: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:42:\"http://ma.tt/2014/08/mosquito-preferences/\";s: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:340:\"<p><a href=\"http://www.smithsonianmag.com/science-nature/why-do-mosquitoes-bite-some-people-more-than-others-10255934/?no-ist\">Why Do Mosquitoes Bite Some People More Than Others?</a> I&#8217;m pretty lucky in the mosquito-biting department, they tend to go for others around me. So this article is for those that take one for the team.</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, 11 Aug 2014 14:10:54 +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: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:74:\"Lorelle on WP: Find, Search, Replace, and Delete in the WordPress Database\";s: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:37:\"http://lorelle.wordpress.com/?p=11808\";s: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:97:\"http://lorelle.wordpress.com/2014/08/10/find-search-replace-and-delete-in-the-wordpress-database/\";s: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:545:\"The following was originally published on WordCast and authored by Lorelle VanFossen. It is reprinted here as a reference guide. You&#8217;ve moved your WordPress installation from one server to another. You&#8217;ve changed domain names. You&#8217;ve moved images around on your server and now they don&#8217;t load. You&#8217;ve changed your WordPress installation and now images show [&#8230;]<img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=lorelle.wordpress.com&blog=72&post=11808&subd=lorelle&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:\"Sun, 10 Aug 2014 23:36: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Lorelle VanFossen\";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:49:\"WordPress.tv: WordCamp Program and Guidelines AMA\";s: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=36468\";s: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:\"http://wordpress.tv/2014/08/10/wordcamp-program-and-guidelines-ama/\";s: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:641:\"<div id=\"v-GpOXhwFM-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36468/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36468/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36468&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/10/wordcamp-program-and-guidelines-ama/\"><img alt=\"WordCamp Program and Guidelines AMA\" src=\"http://videos.videopress.com/GpOXhwFM/video-04332ce530_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:\"Sun, 10 Aug 2014 15:43:52 +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: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:69:\"WordPress.tv: Nancy West Johnson: Create Your First WordPress Website\";s: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=37125\";s: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:86:\"http://wordpress.tv/2014/08/10/nancy-west-johnson-create-your-first-wordpress-website/\";s: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:686:\"<div id=\"v-sOK3Xmvm-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37125/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37125/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37125&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/10/nancy-west-johnson-create-your-first-wordpress-website/\"><img alt=\"Nancy West Johnson: Create Your First WordPress Website\" src=\"http://videos.videopress.com/sOK3Xmvm/video-fe44872092_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:\"Sun, 10 Aug 2014 15:11: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: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:81:\"WordPress.tv: Brennen Byrne: Passwords – The Weakest Link in WordPress 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:28:\"http://wordpress.tv/?p=37133\";s: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:96:\"http://wordpress.tv/2014/08/10/brennen-byrne-passwords-the-weakest-link-in-wordpress-security-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:712:\"<div id=\"v-zHKcIQfo-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37133/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37133/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37133&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/10/brennen-byrne-passwords-the-weakest-link-in-wordpress-security-3/\"><img alt=\"Brennen Byrne: Passwords &#8211; The Weakest Link in WordPress Security\" src=\"http://videos.videopress.com/zHKcIQfo/video-4a4789c1c2_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, 10 Aug 2014 15:02: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: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:24:\"Matt: Exploring Ubiquiti\";s: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=43979\";s: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/08/exploring-ubiquiti/\";s: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:5846:\"<p>I was looking for something else when I stumbled across <a href=\"http://www.amazon.com/dp/B00CPRVF5K/\">a little $95 router</a> that claimed it could do 1M packets per second, multi-WAN, was tiny, and had 80 5-star reviews. Huh? The reviews had some left-handed compliments (&#8220;for advanced users only&#8221;) but one mentioned getting hooked on the company&#8217;s other products as well. Next thing I know I&#8217;m looking at a <a href=\"http://amazon.com/dp/B004XXMUCQ/\">$67 access point</a> that has everyone raving about its range and extensibility. These things were too cheap &#8212; my assumption was it was a Chinese OEM like <a href=\"http://www.zyxel.com/\">Zyxel</a> that makes novel but ultimately not the best quality products.</p>\n<p>At this point I should confess I&#8217;m a bit of a consumer networking geek &#8212; it&#8217;s a hobby of mine. I really enjoy upgrading people&#8217;s routers so they have better range in parts of the house they didn&#8217;t before, getting them a <a href=\"http://www.amazon.com/gp/product/B007IMPMW4/\">DOCSIS 3.0 modem</a> so their connection is faster (and buying it so they don&#8217;t pay an exorbitant rental fee to their cable company), everything about <a href=\"http://sonos.com/\">Sonos</a>, <a href=\"http://www.sonos.com/airplay/\">hooking up an Airport Express to Sonos so you can Airplay things</a>, showing how you can set up two APs with the same SSID and clients will just connect to whatever they&#8217;re closest to, you don&#8217;t need each one to have a unique SSID, you can give the 2.4ghz and 5ghz networks the same SSID, Time Machine for backups, setting up failover internet with multiple connections or a USB LTE stick&#8230; I redo all my home stuff about once every 18 months, and then take the best of what I&#8217;ve learned and set up friends. I&#8217;m constantly updating firmware. My current best practice setup is <a href=\"http://www.sonos.com/\">Sonos</a> for all audio, usually streaming from <a href=\"http://spotify.com/\">Spotify</a> or <a href=\"http://siriusxm.com/\">SiriusXM</a>, a <a href=\"http://www.amazon.com/dp/B00I9RQOR4/\">Peplink Balance One router</a>, <a href=\"http://www.amazon.com/dp/B00F0DD0I6/\">Netgear Nighthawk R9000 access points</a> (though I liked the <a href=\"http://www.amazon.com/dp/B008ABOJKS/\">ASUS AC66U just as much</a>), if I need a switch I&#8217;ll go for <a href=\"http://www.amazon.com/gp/product/B004GHMU5Q/\">a higher-end managed one</a> that support spanning tree protocol (STP) properly because otherwise the way the Sonos does bridging can spaz out and overload your network, <a href=\"https://nest.com/\">Nest themostat and smoke detectors</a>, <a href=\"http://www.smartthings.com/\">Smartthings</a> for everything else. I&#8217;m <a href=\"http://august.com/\">waiting for August</a> for smart locks.</p>\n<p>At the <a href=\"http://automattic.com/\">Automattic</a> office we run <a href=\"https://meraki.cisco.com/\">Meraki</a>, which was pretty solid until we upgraded to the MR34 to get 802.11AC, but it&#8217;s expensive, and you need to subscribe to a per-device yearly license fee for everything to work. They also have <a href=\"https://meraki.cisco.com/blog/\">a great WP-powered blog</a>, and generally the cleanest site of anyone out there. That said, they&#8217;re impossible to buy without going through a terrible reseller, so I&#8217;ve never been able to justify using it at home.</p>\n<p>Back to Ubiquiti. First I come across their <a href=\"http://community.ubnt.com/\">forums/community sites</a>, which are ugly and sprawling and full of amazing info from people who do wireless deployments across all of the top companies like <a href=\"http://www.arubanetworks.com/\">Aruba</a>, <a href=\"http://www.ruckuswireless.com/\">Ruckus</a>, <a href=\"http://www.aerohive.com/\">Aerohive</a>, <a href=\"http://www.xirrus.com/\">Xirrus</a>, Meraki. You see people making builds for <a href=\"http://community.ubnt.com/t5/EdgeMAX/EdgeRouter-and-Xbox-LIVE/m-p/640951#M18782\">alternative UPNP packages</a> and that going into their core release months later. (Everything is Debian based, from what I can tell.) The company is based in San Jose that went public a few years ago, and is <a href=\"https://www.google.com/finance?q=NASDAQ%3AUBNT\">now worth about 3.7B</a>, and the founder (formerly of Apple) <a href=\"http://www.businessweek.com/articles/2013-04-24/robert-pera-the-kid-that-bought-the-grizzlies\">bought the Memphis Grizzlies</a>. They seem to have gotten their start with long-haul point-to-point wireless radios <a href=\"http://www.ubnt.com/airfiber/airfiber5/\">that can go dozens of kilometers</a>, which makes sense why their APs would be known for their range. You can buy direct from them, or like I mentioned most of their stuff is available on Amazon. And it&#8217;s inexpensive! Even Ubiquiti&#8217;s <a href=\"http://amazon.com/gp/product/B00D80J2XU/\">AC product, which is $300,</a> is much, much cheaper than the Meraki MR34 which costs $1,400 and requires a yearly license <em>or it stops working</em>.</p>\n<p>Plus they make these wonderfully cheesy product promo videos:</p>\n<p><span class=\"embed-youtube\"></span></p>\n<p>Normally I wouldn&#8217;t post about something until I&#8217;ve tried it in-person, but I was excited to find this whole new (to me) world of high-performance, reasonable-cost devices. John Pozazidides, long-time WP community member, did <a href=\"https://www.youtube.com/watch?v=vj_nlSWGkb8\">an overview of the Unifi devices on Youtube</a>. At Automattic our once-a-year grand meetup is coming up in Utah, and every year wireless is an issue, especially the first day or two. I ordered some of the Ubiquiti equipment to test when I&#8217;m in Houston next week, looking forward to playing around with it.</p>\n<p>Any Ma.tt readers with experience with any of these or big WLAN deployments?</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, 09 Aug 2014 19:02: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: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: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:74:\"WordPress.tv: Panel Discussion: How to Become a Better WordPress Developer\";s: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=37123\";s: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:91:\"http://wordpress.tv/2014/08/09/panel-discussion-how-to-become-a-better-wordpress-developer/\";s: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:696:\"<div id=\"v-r1C30AUX-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37123/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37123/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37123&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/09/panel-discussion-how-to-become-a-better-wordpress-developer/\"><img alt=\"Panel Discussion: How to Become a Better WordPress Developer\" src=\"http://videos.videopress.com/r1C30AUX/video-4cabba6b28_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:\"Sat, 09 Aug 2014 15:46: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: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:56:\"WordPress.tv: WordCamp Organizers’ Orientation Hangout\";s: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=36435\";s: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:71:\"http://wordpress.tv/2014/08/09/wordcamp-organizers-orientation-hangout/\";s: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:662:\"<div id=\"v-6N4zGbcR-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36435/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36435/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36435&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/09/wordcamp-organizers-orientation-hangout/\"><img alt=\"WordCamp Organizers&#8217; Orientation Hangout\" src=\"http://videos.videopress.com/6N4zGbcR/video-66135d2449_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:\"Sat, 09 Aug 2014 15:39: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:\"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: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:64:\"WordPress.tv: Kronda Adair: Planning a Successful WordPress Site\";s: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=37129\";s: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:81:\"http://wordpress.tv/2014/08/09/kronda-adair-planning-a-successful-wordpress-site/\";s: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:676:\"<div id=\"v-v6aZbeBB-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37129/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37129/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37129&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/09/kronda-adair-planning-a-successful-wordpress-site/\"><img alt=\"Kronda Adair: Planning a Successful WordPress Site\" src=\"http://videos.videopress.com/v6aZbeBB/video-20b89e8534_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:\"Sat, 09 Aug 2014 15:13: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: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: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:67:\"WordPress.tv: How to add subtitles and translations to 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37740\";s: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:92:\"http://wordpress.tv/2014/08/08/how-to-add-subtitles-and-translations-to-wordpress-tv-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:690:\"<div id=\"v-AhRoo4R8-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37740/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37740/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37740&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/08/how-to-add-subtitles-and-translations-to-wordpress-tv-videos/\"><img alt=\"How to add subtitles and translations to WordPress.tv\" src=\"http://videos.videopress.com/AhRoo4R8/video-6c101845a3_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:\"Sat, 09 Aug 2014 02:33: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: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: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:65:\"WPTavern: WordPress cdnjs Plugin Makes It Easy to Offload Scripts\";s: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=28012\";s: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:174:\"http://wptavern.com/wordpress-cdnjs-plugin-makes-it-easy-to-offload-scripts?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-cdnjs-plugin-makes-it-easy-to-offload-scripts\";s: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:3173:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/wp-cdnjs.png\" rel=\"prettyphoto[28012]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/wp-cdnjs.png?resize=772%2C250\" alt=\"wp-cdnjs\" class=\"aligncenter size-full wp-image-28020\" /></a></p>\n<p>The <a href=\"http://cdnjs.com/\" target=\"_blank\">cdnjs</a> service is used by hundreds of thousands of websites to offload static files for performance. It&#8217;s an open source community-driven project that hosts a variety of different file types, including JavaScript, CSS, SWF, and images, thanks to help from sponsors UserApp and CloudFlare.</p>\n<p><a href=\"http://wordpress.org/plugins/wp-cdnjs/\" target=\"_blank\">WP cdnjs</a> is a new plugin that allows users to easily include any CSS or JavaScript library hosted at cdnjs. Once installed, you can search all cdnjs libraries directly within the plugin&#8217;s settings.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/search-cdnjs.png\" rel=\"prettyphoto[28012]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/search-cdnjs.png?resize=1025%2C586\" alt=\"search-cdnjs\" class=\"aligncenter size-full wp-image-28026\" /></a></p>\n<p>Once you locate a script you want to use, you have the option to choose secondary assets and select the minified/non-minified version. Scripts can be enabled and even re-ordered on the settings page.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/add-scripts.png\" rel=\"prettyphoto[28012]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/add-scripts.png?resize=1025%2C582\" alt=\"add-scripts\" class=\"aligncenter size-full wp-image-28028\" /></a></p>\n<p>The plugin adds the libraries using <a href=\"http://paulirish.com/2010/the-protocol-relative-url/\" target=\"_blank\">protocol-relative URLs</a> which means that it will support both http and https sites.</p>\n<p>Although the settings page looks very simple, WP cdnjs packs in a solid set of features:</p>\n<ul>\n<li>Builtin cdnjs.com search</li>\n<li>Reorder included files with an intuitive drag-and-drop interface</li>\n<li>Integrates seamlessly with WordPress (no developer up-sells or donation requests)</li>\n<li>Choose the secondary assets you want to include</li>\n<li>Selects the minified version or non-minified version</li>\n<li>Optionally select any additional assets you&#8217;d like</li>\n<li>Specify where to include files (header / footer)</li>\n<li>Options to globally or individually enable and disable included libraries</li>\n<li>SSL support\n</ul>\n<p>I tested the plugin and was impressed by how easy it was to find and use libraries. cdnjs is a useful and dependable service that generally operates with <a href=\"http://stats.pingdom.com/htbkuegtgycv\" target=\"_blank\">99.9% uptime</a>. This plugin makes it easy and convenient for WordPress admins take advantage of the free CDN. If you want to offload some commonly used scripts, chances are that you&#8217;ll find them at cdnjs. Download <a href=\"http://wordpress.org/plugins/wp-cdnjs/\" target=\"_blank\">WP cdnjs</a> from WordPress.org and start searching for libraries that you can offload to improve performance.</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, 08 Aug 2014 23:55: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: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:64:\"WordPress.tv: How to upload your WordCamp videos to 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37731\";s: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:82:\"http://wordpress.tv/2014/08/08/how-to-upload-your-wordcamp-videos-to-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:677:\"<div id=\"v-88YRYWc5-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37731/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37731/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37731&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/08/how-to-upload-your-wordcamp-videos-to-wordpress-tv/\"><img alt=\"How to upload your WordCamp videos to WordPress.tv\" src=\"http://videos.videopress.com/88YRYWc5/video-d78811a062_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, 08 Aug 2014 22:56: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: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: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:78:\"WPTavern: Heroku WP: A Template for Installing and Running WordPress on Heroku\";s: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=27968\";s: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:198:\"http://wptavern.com/heroku-wp-a-template-for-installing-and-running-wordpress-on-heroku?utm_source=rss&utm_medium=rss&utm_campaign=heroku-wp-a-template-for-installing-and-running-wordpress-on-heroku\";s: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:3724:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/wp-and-heroku.jpg\" rel=\"prettyphoto[27968]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/wp-and-heroku.jpg?resize=715%2C302\" alt=\"wp-and-heroku\" class=\"aligncenter size-full wp-image-28002\" /></a></p>\n<p>Over the past few months, WordPress developers have been experimenting with speeding up PHP execution with HHVM (HipHop Virtual Machine) and have achieved some <a href=\"https://twitter.com/markjaquith/statuses/458294601129144320\" target=\"_blank\">amazingly fast load times</a>. HHVM <a href=\"http://hhvm.com/blog/3095/getting-wordpress-running-on-hhvm\" target=\"_blank\">compatibility with WordPress</a> is gradually improving and more hosting companies are moving to adopt it, as many believe that HHVM will soon revolutionize PHP.</p>\n<p>Changes in WordPress 3.9 helped to improve compatibility with HHVM and, as a result, a few WP + HHVM templates have popped up, including a new one for Heroku fans. <a href=\"https://github.com/xyu/heroku-wp\" target=\"_blank\">Heroku WP</a> is a template for installing and running WordPress on the <a href=\"http://www.heroku.com/\" target=\"_blank\">Heroku</a> cloud application platform with the official Heroku stack.</p>\n<p>Automattic engineer <a href=\"http://www.xyu.io/\" target=\"_blank\">Xiao Yu</a> created Heroku WP with the goal of keeping it simple, fast, secure, and scalable. He used Heroku&#8217;s new <a href=\"https://blog.heroku.com/archives/2014/4/29/introducing_the_new_php_on_heroku\" target=\"_blank\">PHP buildpack</a> which incorporates nginx and HHVM. Heroku WP is built on top of the following:</p>\n<ul>\n<li><a href=\"http://nginx.org/\" target=\"_blank\">nginx</a> &#8211; For serving web content</li>\n<li><a href=\"http://hhvm.com/\" target=\"_blank\">HHVM</a> &#8211; A virtual machine designed to serve Hack and PHP</li>\n<li><a href=\"http://www.mysql.com/\" target=\"_blank\">MySQL</a> &#8211; Provided by the ClearDB add-on</li>\n<li><a href=\"http://memcached.org/\" target=\"_blank\">Memcached</a> &#8211; Provided by the MemCachier add-on</li>\n<li><a href=\"https://getcomposer.org/\" target=\"_blank\">Composer</a> &#8211; A dependency manager to make installing and managing plugins easier</li>\n</ul>\n<p>The Heroku WP template also bundles Jetpack, SendGrid, caching plugins, <a href=\"http://wordpress.stackexchange.com/questions/38902\" target=\"_blank\">SSL Domain Alias</a> to send WP admin traffic to Heroku over SSL directly, and a couple of other plugins. You can include additional plugins and/or upgrade versions by updating the <code>composer.json</code> file.</p>\n<h3>2.5X Improvement in WordPress Response Times with Heroku WP</h3>\n<p>Yu <a href=\"http://www.xyu.io/2014/06/wordpress-on-nginx-hhvm-with-heroku-buildpacks/\" target=\"_blank\">reports</a> that with the new nginx + HHVM Heroku buildpack, his updated template for WordPress has seen more than 2.5X improvement in response times when compared to the old Heroku LAMP stack. His personal <a href=\"http://www.xyu.io/\" target=\"_blank\">site</a> is actually running on the template. &#8220;It feels a lot faster navigating WP admin and page generation times look much better,&#8221; he said.</p>\n<p>The template is not just for small blogs. Yu built Heroku WP with cloud architecture in mind, so that <a href=\"https://www.heroku.com/pricing\" target=\"_blank\">the number of Dynos can scale</a> without breaking. If you&#8217;ve been looking for a quick way to experiment with WordPress on NGINX + HHVM, the Heroku WP template is an excellent starting point. Follow Yu&#8217;s <a href=\"https://github.com/xyu/heroku-wp#installation\" target=\"_blank\">instructions</a> for installing, configuring and deploying WordPress to Heroku.</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, 08 Aug 2014 21:20: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:\"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: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:83:\"WPTavern: How Crowd Favorite Utilizes Multiple Offices and a Distributed Work Force\";s: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=27870\";s: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/how-crowd-favorite-utilizes-multiple-offices-and-a-distributed-work-force?utm_source=rss&utm_medium=rss&utm_campaign=how-crowd-favorite-utilizes-multiple-offices-and-a-distributed-work-force\";s: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:7086:\"<p>As I was listening to an <a title=\"http://www.poststat.us/chris-lema-interview/\" href=\"http://www.poststat.us/chris-lema-interview/\">interview with Chris Lema</a>, I was surprised to hear how Crowd Favorite has offices setup across the world. Many of the WordPress agencies I&#8217;m familiar with are 100% distributed with one physical office. This is the first time I&#8217;ve heard of a WordPress development agency with multiple offices throughout the world. I contacted the CTO of <a title=\"http://crowdfavorite.com\" href=\"http://crowdfavorite.com\">Crowd Favorite</a>, Chris Lema, to learn why the company is structured this way and what practical benefits and drawbacks it offers.</p>\n<h2>The Crowd Favorite Approach To Offices</h2>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/CrowdFavoriteOfficesAcrossTheWorld.jpg\" rel=\"prettyphoto[27870]\"><img class=\"size-full wp-image-27963\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/CrowdFavoriteOfficesAcrossTheWorld.jpg?resize=1025%2C332\" alt=\"Crowd Favorite Office Locations Across The World\" /></a>Crowd Favorite Office Locations Across The World\n<p>Crowd Favorite takes an entirely different approach to having an office. Instead of one or two locations, they have small, satellite offices spread across the world. This approach allows the company to merge the benefits of a distributed work force with having physical locations. Each office is staffed by a group of people who excel at a specific skill. Lema describes the offices as <em>communities of practice</em>.</p>\n<blockquote><p>For example, there&#8217;s an office in Phoenix that we have that is dedicated to design work and branding, and they&#8217;re fantastic at that. That&#8217;s a very different dynamic than if you had three designers across the country, four designers across the country, or two brand people across the country.</p>\n<p>Sure, if they were really phenomenal people, you could hire them and you&#8217;d get a bang for your buck, but if you put a whole group of them together in one place, you&#8217;ll discover that they go further faster.</p></blockquote>\n<p>Regional and localized offices enable people to work together to accelerate their progress. The offices are also used to focus on disciplines. For example, the Las Vegas, NV office is focused on video and promotion, the office in Arizona is focused on design, and the office in Denver, CO is focused on advanced development. Crowd Favorite even has a small office in New York focused on .net and Ruby development.</p>\n<h2>Offices Have Different Purposes Depending On The Region</h2>\n<p>Offices outside the US have a unique business dynamic associated with them. They&#8217;re used as the final component of a business deal after establishing trust and a relationship with a customer. &#8220;As Karim Marucchi worked in several different countries, it became a cornerstone of the way he works, that he would have an office, and that&#8217;s the office that would drive the business in that region.&#8221; Lema said. &#8220;It&#8217;s especially effective when you think about it on the international stage because you want to be able to make sure that your presence is physically felt in the areas where you&#8217;re doing business. We have an office in Italy for example, specifically for that reason.&#8221;</p>\n<h2>The Lone Rangers Of A Distributed Workforce</h2>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/TheLongRangerWorker.png\" rel=\"prettyphoto[27870]\"><img class=\"size-full wp-image-27961\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/TheLongRangerWorker.png?resize=637%2C279\" alt=\"The Lone Ranger Developer\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/eschipul/2296528916/\">eschipul</a> &#8211; <a href=\"http://creativecommons.org/licenses/by-sa/2.0/\">cc</a>\n<p>One of the benefits of having several office locations is the increased opportunity for employees to work together. However, one of the biggest drawbacks is that some employees end up working alone. For example, Crowd Favorite has an office in Seattle, WA that handles development operations that is staffed by one person. This is why Crowd Favorite and other companies with a distributed work force organize company wide meetups once or twice a year. It gives individuals a chance to meet their co-workers and strengthen their connection to the company.</p>\n<h2>How Other WordPress Companies Handle Offices</h2>\n<p>One of the benefits of working with WordPress is that it can be done from anywhere in the world, as long as an internet connection is available. <a title=\"http://automattic.com/\" href=\"http://automattic.com/\">Automattic</a> is a leading example of how employees can accomplish anything without having to spend eight hours in a cubicle. Despite having a distributed work force, the company maintains a physical presence with an office in San Francisco, CA. The office is used as a co-working space, to host shareholder meetings, or to just hang out.</p>\n<p>Web development firm <a title=\"http://10up.com/\" href=\"http://10up.com/\">10up </a>has an office in <a title=\"http://10up.com/blog/2013/portland-office-opening/\" href=\"http://10up.com/blog/2013/portland-office-opening/\">Portland, OR</a>. The office hosts speakers, out-of-town guests, and the occasional workshop. <a title=\"http://webdevstudios.com/\" href=\"http://webdevstudios.com/\">WebDevStudios</a> is another large web development firm with a 100% distributed work force. Unlike 10up and Automattic, the company has two office locations, one in <a title=\"http://webdevstudios.com/about/webdevstudios/new-jersey-location/\" href=\"http://webdevstudios.com/about/webdevstudios/new-jersey-location/\">New Jersey</a> and the other in <a title=\"http://webdevstudios.com/about/webdevstudios/philadelphia-location/\" href=\"http://webdevstudios.com/about/webdevstudios/philadelphia-location/\">Philadelphia, PA</a>.</p>\n<h2>Copy The Motivation, Not The Model</h2>\n<p>Going with a 100% distributed work force has drawbacks as does everyone working in the same physical space. Crowd Favorite believes they have figured out a way to reap the benefits of both methods. &#8220;When you say we&#8217;re only going to have one office, there are drawbacks. When you say we&#8217;re going to be 100% remote, there are going to be drawbacks. I think we&#8217;ve tried to thread the needle on this to find the situation that gives us the least amount of drawbacks with the most amount of potential.&#8221; Lema said.</p>\n<p>Is the way Crowd Favorite uses offices a model for other WordPress development firms to follow? &#8220;Copying someone&#8217;s model is a really poor approach to anything. Copying someone&#8217;s motivation may be a more helpful approach to think about.&#8221; Lema told the Tavern. Every company is different and has to satisfy its own needs and requirements.</p>\n<p>Crowd Favorite has found success using offices not only for co-working spaces, but as a way to build trust and establish relationships with clients in other parts of 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:\"Fri, 08 Aug 2014 20:25: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: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: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:49:\"Post Status: How has WordPress changed your life?\";s: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:30:\"http://www.poststat.us/?p=6995\";s: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:112:\"http://www.poststat.us/wordpress-changed-life/?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-changed-life\";s: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:6142:\"<p><img class=\"aligncenter size-large wp-image-7067\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/wc-nyc-752x272.jpg\" alt=\"wc-nyc\" width=\"627\" height=\"226\" />Last week, I was in New York City for WordCamp and some client meetings. The event was a huge success, with four full tracks of expert designers, developers, and WordPress professionals sharing what they&#8217;ve learned.</p>\n<p>I had a great time with everyone there. I saw old friends, and met new friends.</p>\n<p>I had my recording equipment with me, and I asked a question to some folks there: how has WordPress changed your life?</p>\n<p>Here are their answers:</p>\n<!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"http://s3.amazonaws.com/PostStatus/DraftPodcast/how-has-wordpress-changed-your-life.mp3\">http://s3.amazonaws.com/PostStatus/DraftPodcast/how-has-wordpress-changed-your-life.mp3</a>\n<p><a href=\"http://s3.amazonaws.com/PostStatus/DraftPodcast/how-has-wordpress-changed-your-life.mp3\">Direct Download</a></p>\n<p>And here are just a few of the pictures I took, from WordCamp and some just from around the city. I&#8217;m not much of a photographer, but feel free to use any of these however you wish:<span id=\"more-6995\"></span></p>\n\n<a href=\"http://www.poststat.us/wordpress-changed-life/this-is-a-busy-town/\"><img width=\"150\" height=\"99\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/this-is-a-busy-town-150x99.jpg\" class=\"attachment-thumbnail\" alt=\"this-is-a-busy-town\" /></a>\n<a href=\"http://www.poststat.us/wordpress-changed-life/nyc-tunnel/\"><img width=\"150\" height=\"99\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/nyc-tunnel-150x99.jpg\" class=\"attachment-thumbnail\" alt=\"nyc-tunnel\" /></a>\n<a href=\"http://www.poststat.us/wordpress-changed-life/nyc-street-tower/\"><img width=\"150\" height=\"100\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/nyc-street-tower-150x100.jpg\" class=\"attachment-thumbnail\" alt=\"nyc-street-tower\" /></a>\n<a href=\"http://www.poststat.us/wordpress-changed-life/wcnyc-tshirt/\"><img width=\"150\" height=\"99\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/wcnyc-tshirt-150x99.jpg\" class=\"attachment-thumbnail\" alt=\"wcnyc-tshirt\" /></a>\n<a href=\"http://www.poststat.us/wordpress-changed-life/lema-on-membership/\"><img width=\"150\" height=\"99\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/lema-on-membership-150x99.jpg\" class=\"attachment-thumbnail\" alt=\"lema-on-membership\" /></a>\n<a href=\"http://www.poststat.us/wordpress-changed-life/boon-keynote-pie-chart/\"><img width=\"150\" height=\"100\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/boon-keynote-pie-chart-150x100.jpg\" class=\"attachment-thumbnail\" alt=\"boon-keynote-pie-chart\" /></a>\n<a href=\"http://www.poststat.us/wordpress-changed-life/sara-cannon-design-talk/\"><img width=\"150\" height=\"100\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/sara-cannon-design-talk-150x100.jpg\" class=\"attachment-thumbnail\" alt=\"sara-cannon-design-talk\" /></a>\n<a href=\"http://www.poststat.us/wordpress-changed-life/ryan-wp-json-api-talk/\"><img width=\"150\" height=\"100\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/ryan-wp-json-api-talk-150x100.jpg\" class=\"attachment-thumbnail\" alt=\"ryan-wp-json-api-talk\" /></a>\n<a href=\"http://www.poststat.us/wordpress-changed-life/jenn-php-lol/\"><img width=\"150\" height=\"100\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/jenn-php-lol-150x100.jpg\" class=\"attachment-thumbnail\" alt=\"jenn-php-lol\" /></a>\n<a href=\"http://www.poststat.us/wordpress-changed-life/mike-heartbeat-api-fun/\"><img width=\"150\" height=\"99\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/mike-heartbeat-api-fun-150x99.jpg\" class=\"attachment-thumbnail\" alt=\"mike-heartbeat-api-fun\" /></a>\n<a href=\"http://www.poststat.us/wordpress-changed-life/pippin-is-always-working/\"><img width=\"100\" height=\"150\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/pippin-is-always-working-100x150.jpg\" class=\"attachment-thumbnail\" alt=\"pippin-is-always-working\" /></a>\n<a href=\"http://www.poststat.us/wordpress-changed-life/everyone-is-hiring/\"><img width=\"150\" height=\"99\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/everyone-is-hiring-150x99.jpg\" class=\"attachment-thumbnail\" alt=\"everyone-is-hiring\" /></a>\n<a href=\"http://www.poststat.us/wordpress-changed-life/freedom-tower/\"><img width=\"99\" height=\"150\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/freedom-tower-99x150.jpg\" class=\"attachment-thumbnail\" alt=\"freedom-tower\" /></a>\n<a href=\"http://www.poststat.us/wordpress-changed-life/september-11-memorial/\"><img width=\"150\" height=\"99\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/september-11-memorial-150x99.jpg\" class=\"attachment-thumbnail\" alt=\"september-11-memorial\" /></a>\n<a href=\"http://www.poststat.us/wordpress-changed-life/flower-in-911-victims-name/\"><img width=\"150\" height=\"99\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/flower-in-911-victims-name-150x99.jpg\" class=\"attachment-thumbnail\" alt=\"flower-in-911-victims-name\" /></a>\n<a href=\"http://www.poststat.us/wordpress-changed-life/nyc-from-the-plane/\"><img width=\"150\" height=\"99\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/nyc-from-the-plane-150x99.jpg\" class=\"attachment-thumbnail\" alt=\"nyc-from-the-plane\" /></a>\n\n<p>I&#8217;d like to thank the organizers for their efforts, the sponsors for their investment in the WordPress community, the speakers for their wisdom, and the attendees for their hunger to learn and connect with like-minded individuals.</p>\n<p>If you&#8217;ve never attended a WordCamp &#8212; especially one outside of your own city &#8212; I highly encourage you do. They are so fun. There are a number of events coming up that I&#8217;ll be at as well, so I hope you&#8217;ll say hi there: <a href=\"http://wpyall.com\">WordCamp Birmingham</a> (August 16th), <a title=\"The WordPress community summit is back\" href=\"http://www.poststat.us/wordpress-community-summit-back/\">WordCamp San Francisco</a> (October 25-26th), and <a href=\"http://www.poststat.us/pressnomics-3-dates/\">PressNomics</a> (January 22nd-24th).</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, 08 Aug 2014 16:29: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:15:\"Brian Krogsgard\";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:61:\"WordPress.tv: Morten Rand-Hendriksen: Web Design is a Process\";s: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=37105\";s: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/08/08/morten-rand-hendriksen-web-design-is-a-process/\";s: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:670:\"<div id=\"v-dYueyfUb-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37105/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37105/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37105&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/08/morten-rand-hendriksen-web-design-is-a-process/\"><img alt=\"Morten Rand-Hendriksen: Web Design is a Process\" src=\"http://videos.videopress.com/dYueyfUb/video-91140fd7f1_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, 08 Aug 2014 15:53: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: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: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:\"WordPress.tv: Matt Banks: Strawberry Custom Fields Forever\";s: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=37050\";s: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://wordpress.tv/2014/08/08/matt-banks-strawberry-custom-fields-forever/\";s: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:664:\"<div id=\"v-boRWXo4z-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37050/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37050/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37050&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/08/matt-banks-strawberry-custom-fields-forever/\"><img alt=\"Matt Banks: Strawberry Custom Fields Forever\" src=\"http://videos.videopress.com/boRWXo4z/video-e83871d941_scruberthumbnail_6.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, 08 Aug 2014 15:31: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: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: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:76:\"WordPress.tv: Stacey Lane: How To Pick a WordPress Theme That Doesn’t Suck\";s: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=37121\";s: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:90:\"http://wordpress.tv/2014/08/08/stacey-lane-how-to-pick-a-wordpress-theme-that-doesnt-suck/\";s: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:701:\"<div id=\"v-rcIC0zXI-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37121/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37121/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37121&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/08/stacey-lane-how-to-pick-a-wordpress-theme-that-doesnt-suck/\"><img alt=\"Stacey Lane: How To Pick a WordPress Theme That Doesn&#8217;t Suck\" src=\"http://videos.videopress.com/rcIC0zXI/video-f420b5a692_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:\"Fri, 08 Aug 2014 15:24: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: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: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:69:\"WPTavern: Mobile ShareBar Adds a WhatsApp Sharing Button to 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=24066\";s: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/mobile-sharebar-adds-a-whatsapp-sharing-button-to-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=mobile-sharebar-adds-a-whatsapp-sharing-button-to-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:3635:\"<p>Earlier this year, Facebook <a href=\"http://newsroom.fb.com/news/2014/02/facebook-to-acquire-whatsapp/\" target=\"_blank\">acquired WhatsApp</a> for $19 billion dollars. With 450+ million users per month and 70% of them active per day, Facebook is betting on the the app&#8217;s massive user base and continued growth.</p>\n<p>Although <a href=\"http://www.whatsapp.com/\" target=\"_blank\">WhatsApp</a> is enormously popular, very few WordPress sharing plugins have prioritized adding the service to the list of supported sharing options. Depending on the demographic of your site&#8217;s readership, you may stand to strongly benefit from making it easy for WhatsApp users to share your content with each other via the app.</p>\n<p><a href=\"http://wordpress.org/plugins/mobile-sharebar/\" target=\"_blank\">Mobile ShareBar</a> is one of the first plugins to add a WhatsApp sharing button, right up there with the same preeminence of Facebook and Twitter. The sharebar only appears to visitors when they are browsing your site on a mobile site, and you can remove the Facebook and Twitter buttons if you just want to include WhatsApp.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/mobile-sharebar-example.jpg\" rel=\"prettyphoto[24066]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/mobile-sharebar-example.jpg?resize=450%2C694\" alt=\"mobile-sharebar-example\" class=\"aligncenter size-full wp-image-27928\" /></a></p>\n<p>The plugin allows you to select specific post types where you want the sharebar to appear, i.e. frontpage, posts, pages, categories, archives, tags, and even specific custom post types. You can also change the position of the bar to appear on the bottom of the screen. All text for the sharing buttons is customizable in the plugin&#8217;s settings page:</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/mobile-sharebar-options.png\" rel=\"prettyphoto[24066]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/mobile-sharebar-options.png?resize=659%2C558\" alt=\"mobile-sharebar-options\" class=\"aligncenter size-full wp-image-27941\" /></a></p>\n<p>A real-time preview of the sharebar appears in the settings page as you edit it, so you know what it&#8217;s going to look like on mobile devices. After testing the plugin, my only complaint is that the sharebar is sticky as you scroll down the page, taking up valuable mobile real estate. Having the option to remove that would be preferable, as stickiness might be a deal breaker for some users.</p>\n<p>While WhatsApp is available for iPhone, BlackBerry, Android, Windows Phone and Nokia, the sharing button only works with iPhones at the moment. This is because the iPhone app is the only one that works with the <a href=\"https://www.whatsapp.com/faq/iphone/23559013\" target=\"_blank\">URL scheme</a>.</p>\n<p>Facebook CEO Mark Zuckerberg commented on the WhatsApp acquisition: <strong>&#8220;WhatsApp is on a path to connect 1 billion people. The services that reach that milestone are all incredibly valuable.&#8221;</strong> When <a href=\"http://recode.net/2014/02/20/before-facebook-deal-whatsapp-was-helping-buzzfeed-and-shazam-go-viral-with-new-platform-tools/?_ga=1.172310307.1038543520.1407428466\" target=\"_blank\">Buzzfeed added a WhatsApp</a> sharing button, they found that readers on iOS clicked it more often than the Twitter button. It might be worth finding out if your readers are using WhatsApp so you can prioritize it among your sharing options. You can get the <a href=\"http://wordpress.org/plugins/mobile-sharebar/\" target=\"_blank\">Mobile ShareBar</a> from WordPress.org.</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, 07 Aug 2014 23:06:23 +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:81:\"WPTavern: How to Change Jetpack Accounts Without Losing Your Stats or 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=27914\";s: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/how-to-change-jetpack-accounts-without-losing-your-stats-or-subscribers?utm_source=rss&utm_medium=rss&utm_campaign=how-to-change-jetpack-accounts-without-losing-your-stats-or-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1732:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/JetpackWordPressStatsFeaturedImage.png\" rel=\"prettyphoto[27914]\"><img class=\"aligncenter wp-image-27924 size-full\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/JetpackWordPressStatsFeaturedImage.png?resize=669%2C339\" alt=\"Jetpack Stats Featured Image\" /></a></p>\n<p>If you&#8217;re using Jetpack and need to reconnect it to a site but don&#8217;t have access to the WordPress.com account associated with it, you can switch accounts without losing your stats or subscribers. Just follow these simple steps.</p>\n<ol>\n<li>Login to your self-hosted WordPress site and disconnect Jetpack.</li>\n<li>Create a new WordPress.com account.</li>\n<li>Connect your self-hosted WordPress site to Jetpack using the new account.</li>\n</ol>\n<p>I asked George Stephanis, who is on the Jetpack development team, if users should be worried about stats and subscribers being lost in the process.</p>\n<blockquote><p>Ideally it should be smooth, and the stats should transfer automatically.  Sites are indexed by domain and path, so as long as those don&#8217;t change and still match up with what we have on file, it&#8217;ll just work.</p>\n<p>If they do change and the user winds up connected to a clean site, it&#8217;s just a quick five-minute operation for one of our Happiness Engineers to transfer stats over to the new site, so nothing is ever lost.</p></blockquote>\n<p>In most cases, Jetpack will continue to hum along after switching WordPress.com user accounts. However, if you notice stats missing or weird behavior, you should contact the <a title=\"http://jetpack.me/contact-support/\" href=\"http://jetpack.me/contact-support/\">Jetpack support team</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, 07 Aug 2014 21:57: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: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: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:87:\"WPTavern: Color Posts Plugin Extends Jetpack to Add Intuitive Background Color Matching\";s: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=27889\";s: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:218:\"http://wptavern.com/color-posts-plugin-extends-jetpack-to-add-intuitive-background-color-matching?utm_source=rss&utm_medium=rss&utm_campaign=color-posts-plugin-extends-jetpack-to-add-intuitive-background-color-matching\";s: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:4410:\"<p>Automatically changing the background color of a post based on its images is a fancy effect that you may have noticed on WordPress.com&#8217;s <a href=\"http://theme.wordpress.com/themes/ryu/\">Ryu</a> theme. It&#8217;s currently WordPress.com&#8217;s 7th most popular theme and is also <a href=\"https://wordpress.org/themes/ryu\" target=\"_blank\">available for self-hosted sites</a> with the same intuitive background changing feature built in.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/color-posts.png\" rel=\"prettyphoto[27889]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/color-posts.png?resize=687%2C597\" alt=\"color-posts\" class=\"aligncenter size-full wp-image-27907\" /></a></p>\n<p>Jetpack developer <a href=\"http://jeremy.hu/\" target=\"_blank\">Jeremy Herve</a> just released an independent plugin version of the feature cut out of the theme. <a href=\"http://wordpress.org/plugins/color-posts/\" target=\"_blank\">Color Posts</a> does the following:</p>\n<ol>\n<li>Grabs an image from the post</li>\n<li>Samples it</li>\n<li>Creates a matching color and a contrast value (black or white)</li>\n<li>Changes the post&#8217;s background color to match the image</li>\n</ol>\n<p><a href=\"http://wordpress.org/plugins/jetpack/\" target=\"_blank\">Jetpack</a> must be active in order for Color Posts to do its magic, as it utilizes the <code>Tonesque</code> and <code>Jetpack_PostImages</code> classes.</p>\n<p>Here&#8217;s how it works: Color Posts uses the <code>Jetpack_PostImages</code> class to run through a few different methods to select an image representative of the post. <a href=\"https://github.com/Automattic/jetpack/blob/3.1/_inc/lib/tonesque.php\" target=\"_blank\">Tonesque</a> grabs the color index for each of five sample points of the image and then finds the average color of the image based on those five sample points. It creates a color object and checks the contrast against the main color, giving either black or white for use with opacity.</p>\n<p>The result is beautifully matching backgrounds for each post. The <a href=\"http://ryudemo.wordpress.com/\" target=\"_blank\">Ryu theme demo</a> is a good example of this feature in action.</p>\n<h3>Extend Color Posts to Color Match Other Elements on Your Site</h3>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/color-matching.png\" rel=\"prettyphoto[27889]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/color-matching.png?resize=1025%2C468\" alt=\"photo credit: Telstar Logistics - cc\" class=\"size-full wp-image-27917\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/telstar/2903029/\">Telstar Logistics</a> &#8211; <a href=\"http://creativecommons.org/licenses/by-nc/2.0/\">cc</a>\n<p>Herve explains in the plugin&#8217;s <a href=\"http://wordpress.org/plugins/color-posts/faq/\" target=\"_blank\">FAQ</a> how it can be used for more than just matching the background of a post to an image. The color matching feature can be applied to post links, image borders, title, etc. He includes example code for building your own CSS from the colors grabbed by the plugin to change other elements on your site.</p>\n<p>Herve&#8217;s <a href=\"http://jeremy.hu/color-posts-jetpack-plugin/\" target=\"_blank\">post</a> gives you an example of how he changes the color and contrast of the title on his site based on the values retrieved by the plugin. If you want to use your own image, instead of letting Jetpack pick, Color Posts lets you do that via the <code>colorposts_image_output</code> filter. The plugin also lets you change the default color assigned to posts without an image using the <code>jetpack_open_graph_image_default</code> filter.</p>\n<p>Theme developers who already support Jetpack can add color matching to their themes using this method or by offering support for the plugin. Color Posts brings post designs alive with self-aware color matching capabilities. You&#8217;d be hard-pressed to do a better job matching your background colors manually each time &#8211; but who would want to? This plugin does it all automatically with a little bit of magic.</p>\n<p><a href=\"http://wordpress.org/plugins/color-posts/\" target=\"_blank\">Color Posts</a> can be downloaded from WordPress.org but be advised that it&#8217;s still a work in progress. You can contribute feedback and code on <a href=\"https://github.com/jeherve/color-posts/\" 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:\"Thu, 07 Aug 2014 20:26: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: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:50:\"WordPress.tv: Nick Pelton: WP-to-JS and Back Again\";s: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=36507\";s: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:69:\"http://wordpress.tv/2014/08/07/nick-pelton-wp-to-js-and-back-again-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:650:\"<div id=\"v-EPghHKUx-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36507/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36507/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36507&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/07/nick-pelton-wp-to-js-and-back-again-2/\"><img alt=\"Nick Pelton: WP-to-JS and Back Again\" src=\"http://videos.videopress.com/EPghHKUx/video-5149ef4234_scruberthumbnail_7.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:\"Thu, 07 Aug 2014 15:23: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: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: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:43:\"WordPress.tv: Trimming Videos with Avidemux\";s: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=37335\";s: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:61:\"http://wordpress.tv/2014/08/07/trimming-videos-with-avidemux/\";s: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:635:\"<div id=\"v-r0mCJ7Q4-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37335/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37335/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37335&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/07/trimming-videos-with-avidemux/\"><img alt=\"Trimming Videos with Avidemux\" src=\"http://videos.videopress.com/r0mCJ7Q4/video-13dfb0e852_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:\"Thu, 07 Aug 2014 15:13: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: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: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:54:\"WordPress.tv: Monika Zbínová: Blogujeme na 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://wordpress.tv/?p=37302\";s: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:69:\"http://wordpress.tv/2014/08/07/monika-zbinova-blogujeme-na-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:648:\"<div id=\"v-fk7GsLte-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37302/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37302/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37302&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/07/monika-zbinova-blogujeme-na-wordpress/\"><img alt=\"Monika Zbínová: Blogujeme na WordPress\" src=\"http://videos.videopress.com/fk7GsLte/video-6fda7662ce_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:\"Thu, 07 Aug 2014 15:05: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: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: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:31:\"Matt: The Future of Iced Coffee\";s: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=43973\";s: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://ma.tt/2014/08/the-future-of-iced-coffee/\";s: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:451:\"<blockquote><p>Somehow, Freeman had scaled perfection.</p>\n<p>On behalf of all craftspeople, including writers, I had to know how.\n</p></blockquote>\n<p>Read the whole article on the Atlantic: <a href=\"http://www.theatlantic.com/features/archive/2014/08/the-future-of-iced-coffee/375114/\">The Future of Iced Coffee</a>. (Blue Bottle is an <a href=\"http://audrey.co/\">Audrey company</a>.) Hat tip: <a href=\"http://nickgernert.com/\">Nick Gernert</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, 07 Aug 2014 11:29: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: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: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:94:\"WPTavern: WPCore Plugin Manager Adds Update Notifications, Plans to Implement Pro Subscription\";s: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=27827\";s: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:230:\"http://wptavern.com/wpcore-plugin-manager-adds-update-notifications-plans-to-implement-pro-subscription?utm_source=rss&utm_medium=rss&utm_campaign=wpcore-plugin-manager-adds-update-notifications-plans-to-implement-pro-subscription\";s: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:3213:\"<p>WPCore <a href=\"http://wptavern.com/wpcore-create-wordpress-plugin-collections-and-install-them-in-one-click\" target=\"_blank\">launched</a> less than a month ago and has already gone through several rounds of improvement. The <a href=\"https://wpcore.com/\" target=\"_blank\">app</a> allows WordPress users to create plugin collections and install them in one click. Most recently, WPCore added <a href=\"http://wptavern.com/wpcore-plugin-manager-adds-favoriting-and-custom-plugins-to-collections\" target=\"_blank\">favoriting and the ability to include custom plugins</a> hosted outside of WordPress.org.</p>\n<p>Today, WPCore creator <a href=\"http://stueynet.com/\" target=\"_blank\">Stuart Starr</a> announced a new update notifications feature which allows users to receive email notices when one of their collections has a plugin with an update.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/update-notifications.png\" rel=\"prettyphoto[27827]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/update-notifications.png?resize=1025%2C512\" alt=\"update-notifications\" class=\"aligncenter size-full wp-image-27858\" /></a></p>\n<p>The feature is still in development so it currently sends a separate email for each collection where you have subscriptions enabled. Starr is working on creating a digest email instead. This is a handy feature if you have a site using a collection that includes a plugin you&#8217;re watching for updates. Perhaps you&#8217;re looking for a bug fix or a particular improvement that&#8217;s coming down the line. Turn on email notifications for a collection including the plugin you&#8217;re watching and you&#8217;ll get a notice in your inbox when it&#8217;s time to update.</p>\n<h3>WPCore Pro Subscription Plan Coming August 31</h3>\n<p>The WPCore site is now SSL secured in preparation for a new paid subscription plan that will be in place on August 31. Starr is electing to thank WPCore&#8217;s early adopters by grandfathering them into the pro account level, which includes all the features currently in place.</p>\n<p>Anyone who registers before the end of August will be a WPCore Pro member for life. Once the pro subscription plan is in place, new free users will be on a basic plan, which doesn&#8217;t include custom plugins or the new update notifications feature. Starr told the Tavern that pricing for the pro account level will be in the range of a few cups of coffee per month.</p>\n<h3>WPCore Plugin Manager Plugin Rewritten</h3>\n<p>The <a href=\"http://wordpress.org/plugins/wpcore/\" target=\"_blank\">plugin</a> that accompanies WPCore has been completely rewritten to perform better and minimize communication with the app. Starr rebuilt the way the plugin pulls in collections to WordPress sites, so the older version of the plugin will no longer return plugins. If you want to be able to add new collections, you&#8217;ll need to update to the latest version.</p>\n<p>Starr has been adding improvements based on user feedback and welcomes feature requests and thoughts on the new subscription model. Follow <a href=\"https://twitter.com/wpcoreapp\" target=\"_blank\">@wpcoreapp</a> on Twitter to send any feedback and stay up to date.</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, 06 Aug 2014 22:07:15 +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: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:93:\"WPTavern: WordPress 3.9.2 Fixes Security Vulnerabilities, Users Strongly Encouraged To Update\";s: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=27834\";s: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:228:\"http://wptavern.com/wordpress-3-9-2-fixes-security-vulnerabilities-users-strongly-encouraged-to-update?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-3-9-2-fixes-security-vulnerabilities-users-strongly-encouraged-to-update\";s: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:2845:\"<p>WordPress users are strongly encouraged to update their sites to 3.9.2 as it&#8217;s a security focused release. According to <a title=\"http://wordpress.org/news/2014/08/wordpress-3-9-2/\" href=\"http://wordpress.org/news/2014/08/wordpress-3-9-2/\">the announcement</a>, 3.9.2 fixes a possible denial of service issue in PHP’s XML processing. The bug was first reported by <a href=\"https://twitter.com/nirgoldshlager\">Nir Goldshlager</a> of the Salesforce.com Product Security Team and was fixed by Michael Adams and Andrew Nacin of the WordPress security team. The release was also coordinated with the <a href=\"https://www.drupal.org/SA-CORE-2014-004\">Drupal security team</a>.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/WordPressVersionsInUse.png\" rel=\"prettyphoto[27834]\"><img class=\"size-full wp-image-27861\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/08/WordPressVersionsInUse.png?resize=323%2C267\" alt=\"18.8% Of WordPress Sites Are Running On Version 3.5\" /></a>18.8% Of WordPress Sites Are Running On Version 3.5\n<p>Since the vulnerability is present in WordPress 3.5 to 3.9.1, there are several sites that need to be manually updated in order to be protected. Automatic updates for security releases was introduced in WordPress 3.7, leaving users of 3.6 and 3.5 especially vulnerable. According to <a title=\"https://wordpress.org/about/stats/\" href=\"https://wordpress.org/about/stats/\">stats on WordPress.org</a>, 26.8% of all WordPress sites will not be auto updated. Among those sites, 18.8% are still using WordPress 3.5.</p>\n<p>WordPress 3.9.2 has a few other security updates as well:</p>\n<ul>\n<li>Fixes a possible but unlikely code execution when processing widgets (WordPress is not affected by default), discovered by <a href=\"http://www.buayacorp.com/\">Alex Concha</a> of the WordPress security team.</li>\n<li>Prevents information disclosure via XML entity attacks in the external GetID3 library, reported by <a href=\"http://onsec.ru/en/\">Ivan Novikov</a> of ONSec.</li>\n<li>Adds protections against brute attacks against CSRF tokens, reported by <a href=\"http://systemoverlord.com/\">David Tomaschik</a> of the Google Security Team.</li>\n<li>Contains some additional security hardening, like preventing cross-site scripting that could be triggered only by administrators.</li>\n</ul>\n<p>You can update to 3.9.2 immediately by browsing to <strong>Dashboard &gt; Updates </strong>in the backend of WordPress. Sites that have automatic updates configured will be updated within 12 hours. Sites using WordPress 3.8.3 or 3.7.3 will be updated to 3.8.4 or 3.7.4. Older versions of WordPress are not supported, so please update to 3.9.2 for the latest and greatest.</p>\n<p>It&#8217;s awesome to see the security teams from both WordPress and Drupal working together to keep users safe.</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, 06 Aug 2014 20:07: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: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:86:\"Post Status: WordPress and Drupal teams collaborate for simultaneous security 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:30:\"http://www.poststat.us/?p=7020\";s: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:174:\"http://www.poststat.us/wordpress-and-drupal-collaborate-for-security-release/?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-and-drupal-collaborate-for-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3367:\"<p><img class=\"aligncenter size-large wp-image-7024\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/wordpress-drupal-security1-752x353.jpg\" alt=\"wordpress-drupal-security\" width=\"752\" height=\"353\" />WordPress and Drupal are both releasing security updates today that affect all supported versions of the two popular CMS platforms.</p>\n<p><a href=\"https://twitter.com/Nirgoldshlager\">Nir Goldshlager</a>, a security researcher and part of the Salesforce.com Product Security Team, discovered a PHP-level vulnerability that could result in denial of service (DoS) attacks. Goldshlager notified the PHP, WordPress, and Drupal security teams all at once.</p>\n<p>The vulnerability is within a PHP XML parser used by XML-RPC, and is &#8220;vulnerable to an XML entity expansion attach which can cause CPU and memory exhaustion, and MySQL to reach the maximum amount of open connections.&#8221;</p>\n<p>The bug itself is relatively minor, but of interest is the collaboration between the WordPress and Drupal teams to create a fix. WordPress lead developer Andrew Nacin and Mike Adams of the WordPress security team collaborated on a fix for the vulnerability and offered to coordinate with the Drupal security team.</p>\n<p>The fix devised by Nacin and Adams prevents the XML-RPC vulnerability while keeping the feature active. Turning off XML-RPC would have left the burden of handling the fix on the site owner or host and would have harmed clients such as the mobile apps.</p>\n<p>So, interestingly enough, two WordPress core developers are getting props today for both WordPress and Drupal releases. The respective security teams and Goldshlager have been working together for a couple of weeks now to appropriately address the situation and refine the patch included in today&#8217;s updates. The patch itself is for an external library that WordPress has always used, called the Incutio XML-RPC Library. Drupal uses a derivative of the same library, making the collaboration between the two teams quite logical and straightforward.<span id=\"more-7020\"></span></p>\n<p>Andrew Nacin tells me that this is the first time he knows of that the WordPress and Drupal security teams have collaborated. It certainly goes to show just how beneficial open source is, that two completely different CMS platforms are able to quickly close such security holes.</p>\n<p>The WordPress security release includes a few other minor security patches as well, but the collaboration between the WordPress and Drupal security teams is what makes this release most noteworthy, in my opinion.</p>\n<p>WordPress will be automatically upgrading all eligible websites from WordPress 3.7 to WordPress 3.9 major versions to include these fixes, as well as the WordPress 4.0 beta. The latest stable branch is now WordPress 3.9.2, and the WordPress 4.0 development branch is in beta 3. The release of WordPress 4.0 is still on target for the week of August 25th.</p>\n<p>If you have automatic updates enabled for WordPress, you&#8217;ll see those roll out shortly; otherwise, you can download it from <a href=\"http://wordpress.org/download/\">WordPress.org</a>. You can also check out the official release posts for both <a href=\"https://www.drupal.org/SA-CORE-2014-004\">Drupal</a> and <a href=\"http://wordpress.org/news/2014/08/wordpress-3-9-2/\">WordPress</a> on their respective blogs.</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, 06 Aug 2014 19:05:02 +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:15:\"Brian Krogsgard\";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:42:\"Dev Blog: WordPress 3.9.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3269\";s: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/08/wordpress-3-9-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:2347:\"<p>WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately.</p>\n<p>This release fixes a possible denial of service issue in PHP&#8217;s XML processing, reported by <a href=\"https://twitter.com/nirgoldshlager\">Nir Goldshlager</a> of the Salesforce.com Product Security Team. It  was fixed by Michael Adams and Andrew Nacin of the WordPress security team and David Rothstein of the <a href=\"https://www.drupal.org/SA-CORE-2014-004\">Drupal security team</a>. This is the first time our two projects have coordinated joint security releases.</p>\n<p>WordPress 3.9.2 also contains other security changes:</p>\n<ul>\n<li>Fixes a possible but unlikely code execution when processing widgets (WordPress is not affected by default), discovered by <a href=\"http://www.buayacorp.com/\">Alex Concha</a> of the WordPress security team.</li>\n<li>Prevents information disclosure via XML entity attacks in the external GetID3 library, reported by <a href=\"http://onsec.ru/en/\">Ivan Novikov</a> of ONSec.</li>\n<li>Adds protections against brute attacks against CSRF tokens, reported by <a href=\"http://systemoverlord.com/\">David Tomaschik</a> of the Google Security Team.</li>\n<li>Contains some additional security hardening, like preventing cross-site scripting that could be triggered only by administrators.</li>\n</ul>\n<p>We appreciated responsible disclosure of these issues directly to our security team. For more information, see the <a href=\"http://codex.wordpress.org/Version_3.9.2\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/3.9?stop_rev=29383&rev=29411\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 3.9.2</a> or venture over to <strong>Dashboard → Updates</strong> and simply click &#8220;Update Now&#8221;.</p>\n<p>Sites that support automatic background updates will be updated to WordPress 3.9.2 within 12 hours. (If you are still on WordPress 3.8.3 or 3.7.3, you will also be updated to 3.8.4 or 3.7.4. We don&#8217;t support older versions, so please update to 3.9.2 for the latest and greatest.)</p>\n<p>Already testing WordPress 4.0? The third beta is <a href=\"https://wordpress.org/wordpress-4.0-beta3.zip\">now available</a> (zip) and it contains these security fixes.</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, 06 Aug 2014 19:04: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: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:\"\";}}}}}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:79:\"WPTavern: MarkPress Plugin Transforms WordPress into a Markdown-Powered Journal\";s: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=27815\";s: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/markpress-plugin-transforms-wordpress-into-a-markdown-powered-journal?utm_source=rss&utm_medium=rss&utm_campaign=markpress-plugin-transforms-wordpress-into-a-markdown-powered-journal\";s: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:3092:\"<p>Over the past year, WordPress plugin developers have created some unique implementations of the post editor that add <a href=\"http://daringfireball.net/projects/markdown/\" target=\"_blank\">Markdown</a> editing with a side-by-side preview. Both the <a href=\"http://wptavern.com/gust-plugin-adds-support-for-categories-featured-images-and-custom-post-types\" target=\"_blank\">Gust</a> and <a href=\"http://wptavern.com/splitdown-a-free-ghost-style-markdown-editor-for-wordpress\" target=\"_blank\">Splitdown</a> plugins were inspired by the <a href=\"https://ghost.org/\" target=\"_blank\">Ghost</a> editor and attempt to recreate that experience in WordPress.</p>\n<p><a href=\"http://wordpress.org/plugins/markpress/\" target=\"_blank\">MarkPress</a> is the newest to join the ranks of Markdown-powered editors. The plugin adds an interesting twist in that it completely transforms your WordPress site to support writing journal notes without being in the admin. The new editor gives a live preview of notes as you compose.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/MarkPress-editor.png\" rel=\"prettyphoto[27815]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/MarkPress-editor.png?resize=1025%2C601\" alt=\"MarkPress-editor\" class=\"aligncenter size-full wp-image-27822\" /></a></p>\n<p>MarkPress automatically saves as you are writing and naturally only works if the user is logged in. The plugin was designed to work nicely on mobile devices as well. When used on mobile, the top bar displays a button that allows you to toggle back and forth between the compose screen and the preview:</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/view-mode.png\" rel=\"prettyphoto[27815]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/view-mode.png?resize=400%2C652\" alt=\"view-mode\" class=\"aligncenter size-full wp-image-27830\" /></a></p>\n<p>It&#8217;s important to note that MarkPress takes over your WordPress install on activation and repurposes the frontend for quickly composing journal notes. This isn&#8217;t a plugin that you can use to simply replace the default post editor, as it wasn&#8217;t designed to do that.</p>\n<p>After testing MarkPress I was impressed with its beautiful implementation of the Markdown editor and simplified writing experience. However, finding your way back to the admin after reaching the frontend editor is quite difficult. Additionally, posts are automatically marked as published as you compose them. I understand that MarkPress is focused around journal notes but wish that its beautiful editor could also be used for writing regular blog posts.</p>\n<p>Overall, the plugin is nicely done and provides an interesting new take on the WordPress post editor. If you want to create a Markdown-powered journal with WordPress as the sole purpose of your website, then MarkPress is an excellent option that will help you to write more efficiently. <a href=\"http://wordpress.org/plugins/markpress/\" target=\"_blank\">Download</a> it for free from WordPress.org and take it for a test drive.</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, 06 Aug 2014 18:50: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:\"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:56:\"WPTavern: Crowd Favorite Announces Chris Lema As New CTO\";s: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=27800\";s: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:156:\"http://wptavern.com/crowd-favorite-announces-chris-lema-as-new-cto?utm_source=rss&utm_medium=rss&utm_campaign=crowd-favorite-announces-chris-lema-as-new-cto\";s: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:4039:\"<p>Crowd Favorite <a title=\"http://crowdfavorite.com/blog/2014/08/crowd-favorite-welcomes-chris-lema/\" href=\"http://crowdfavorite.com/blog/2014/08/crowd-favorite-welcomes-chris-lema/\">has appointed Chris Lema</a> as the company&#8217;s new CTO. Alex King, the current CTO, will move into the Chief Software Architect role, allowing him to focus his expertise in product development and deep-level technical leadership with the company&#8217;s teams. Lema will begin in mid-September and use his product development experience to help bring the WordPress platform and WordPress products into Fortune 500 enterprises.</p>\n<h2>How Chris Lema Quickly Became A Leading Figure In The WordPress Community</h2>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/ChrisLemaFeaturedImage.png\" rel=\"prettyphoto[27800]\"><img class=\"size-full wp-image-27802\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/ChrisLemaFeaturedImage.png?resize=650%2C200\" alt=\"Chris Lema Featured Image\" /></a>Image Courtesy Of The <a title=\"http://2014.miami.wordcamp.org/speaker-submission-update/\" href=\"http://2014.miami.wordcamp.org/speaker-submission-update/\">WordCamp Miami Website</a>\n<p>PostStat.us has a <a title=\"http://www.poststat.us/chris-lema-interview/\" href=\"http://www.poststat.us/chris-lema-interview/\">great article covering the move</a>, including a special one hour interview with Lema. I&#8217;ve jokingly said that Lema has come out of nowhere. Although I still hold to that notion, he explains in the interview, the circumstances that have helped him be successful in the WordPress community.</p>\n<p>Lema has years of experience starting, managing, and selling startups especially within the Software as a Service market. With 20 years of experience under his belt, he decided to help others in the WordPress community by sharing stories of the lessons he&#8217;s learned from the mistakes he&#8217;s made <a title=\"http://chrislema.com/\" href=\"http://chrislema.com/\">using his blog</a>.</p>\n<p>Since the SaSS and product market in WordPress is so young, his voice and blog quickly became a leading authority. A combination of luck, experience, passion, personality, and timing helped him become an authority in the product space. Writing about the business of WordPress from a perspective not many people have is also a contributing factor.</p>\n<h2>A Few Predictions</h2>\n<p>Near the end of the interview, Lema makes a few predictions, all of which make sense to me. The first is that WordPress is growing on the edge. These are the people who have heard of WordPress and want to start a website but have no idea where to start. Lema predicts more out of the box solutions for these users. <a title=\"http://evermo.re/\" href=\"http://evermo.re/\">Evermore</a>, <a title=\"http://newrainmaker.com/platform/\" href=\"http://newrainmaker.com/platform/\">Rain Maker</a>, and <a title=\"http://oboxthemes.com/instant\" href=\"http://oboxthemes.com/instant\">Obox Instant</a> are just some of the platforms already catering to that segment of the market.</p>\n<p>The second is that WordPress businesses will continue to consolidate. Last but not least, product vendors will need to up their game to remain competitive. An example is WordPress hosting. What was once a <strong>wow</strong> feature two years ago is now a standard feature across most of the basic plans.</p>\n<h2>The Voice Of Crowd Favorite</h2>\n<p>With Lema&#8217;s ability to inspire crowds and motivate people with his speaking engagements, I can see him becoming the voice of Crowd Favorite. The announcement post mentions this possibility as well.</p>\n<blockquote><p>You will continue to hear from us through Chris with his valuable online presence. As a popular speaker at conferences and work with our sales and marketing teams, we know his voice will be a great addition to the Crowd Favorite brand.</p></blockquote>\n<p>I&#8217;ve had the pleasure to speak with Lema at various WordCamps and I can&#8217;t think of a better person to be the voice of a company.</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, 06 Aug 2014 18:05: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: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:119:\"WordPress.tv: Branislav Pokrivčák: Keď Google Analytics nestačí- pokročilá analytika pre WordPress a WooCommerce\";s: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=36675\";s: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://wordpress.tv/2014/08/06/branislav-pokrivcak-ked-google-analytics-nestaci-pokrocila-analytika-pre-wordpress-a-woocommerce/\";s: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:778:\"<div id=\"v-PL3hdE07-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/36675/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/36675/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=36675&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/06/branislav-pokrivcak-ked-google-analytics-nestaci-pokrocila-analytika-pre-wordpress-a-woocommerce/\"><img alt=\"Branislav Pokrivčák: Keď Google Analytics nestačí- pokročilá analytika pre WordPress a WooCommerce\" src=\"http://videos.videopress.com/PL3hdE07/video-841d50f286_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:\"Wed, 06 Aug 2014 15:54: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: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: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:108:\"WordPress.tv: Claudio Sanches: Aprenda a criar uma loja com WooCommerce e veja as novidades da versão 2.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=37446\";s: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:124:\"http://wordpress.tv/2014/08/06/claudio-sanches-aprenda-a-criar-uma-loja-com-woocommerce-e-veja-as-novidades-da-versao-2-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:763:\"<div id=\"v-AM6TpjZZ-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37446/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37446/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37446&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/06/claudio-sanches-aprenda-a-criar-uma-loja-com-woocommerce-e-veja-as-novidades-da-versao-2-1-0/\"><img alt=\"Claudio Sanches: Aprenda a criar uma loja com WooCommerce e veja as novidades da versão 2.1.0\" src=\"http://videos.videopress.com/AM6TpjZZ/video-b37bff9b2e_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:\"Wed, 06 Aug 2014 15:37: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: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: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:58:\"WordPress.tv: Peter Šebo: Tak mám stránku! A čo teraz?\";s: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=37292\";s: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:71:\"http://wordpress.tv/2014/08/06/peter-sebo-tak-mam-stranku-a-co-teraz-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:654:\"<div id=\"v-8RZabqtu-1\" class=\"video-player\">\n</div><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/37292/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/37292/\" /></a> <img alt=\"\" border=\"0\" src=\"http://pixel.wp.com/b.gif?host=wordpress.tv&blog=5089392&post=37292&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/08/06/peter-sebo-tak-mam-stranku-a-co-teraz-2/\"><img alt=\"Peter Šebo: Tak mám stránku! A čo teraz?\" src=\"http://videos.videopress.com/8RZabqtu/video-d9e1dbb07d_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:\"Wed, 06 Aug 2014 15:02: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: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: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:32:\"Matt: Jargon Feeds on Lazy Minds\";s: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=43971\";s: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/08/jargon-feeds-on-lazy-minds/\";s: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:310:\"<p>An oldie from Scott Berkun on <a href=\"http://scottberkun.com/2012/why-jargon-feeds-on-lazy-minds/\">Why Jargon Feeds on Lazy Minds</a>. The link to the Politics and the English Language essay seems to be broken, <a href=\"https://www.mtholyoke.edu/acad/intrel/orwell46.htm\">here&#8217;s a better one</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:\"Wed, 06 Aug 2014 10:56: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: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: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:85:\"WPTavern: SchoolPress: A WordPress-Powered Open Source App for Educators and Students\";s: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=27730\";s: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/schoolpress-a-wordpress-powered-open-source-app-for-educators-and-students?utm_source=rss&utm_medium=rss&utm_campaign=schoolpress-a-wordpress-powered-open-source-app-for-educators-and-students\";s: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:4377:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/school.jpg\" rel=\"prettyphoto[27730]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/school.jpg?resize=1025%2C487\" alt=\"photo credit: Rob Shenk via - cc\" class=\"size-full wp-image-27795\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/rcsj/2915797223/\">Rob Shenk</a> via &#8211; <a href=\"http://creativecommons.org/licenses/by-nc-nd/2.0/\">cc</a>\n<p>Jason Coleman, creator of the popular <a href=\"http://www.paidmembershipspro.com/\" target=\"_blank\">Paid Memberships Pro</a> plugin, launched his new <a href=\"http://schoolpress.me/\" target=\"_blank\">SchoolPress app</a> in beta this week. SchoolPress is an open source WordPress-powered web app designed for educators who want to incorporate a virtual component into their online or offline classes.</p>\n<p>The app is a demo that was created to showcase ideas from  <a href=\"http://shop.oreilly.com/product/0636920029380.do?cmp=af-prog-books-videos-product_cj_9781449364076_%25zp\" target=\"_blank\">Building Web Apps with WordPress</a>, Coleman&#8217;s recent book collaboration with Brian Messenlehner. It enables educators to easily start a class online with an option to restrict the students to invite-only:</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/start-class.png\" rel=\"prettyphoto[27730]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/start-class.png?resize=1025%2C494\" alt=\"start-class\" class=\"aligncenter size-full wp-image-27780\" /></a></p>\n<p>Educators can add students, create assignments with due dates, and start discussions on a bbPress-powered forum. Students can then submit work via a text/file upload and teachers can track their progress.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/assignments.png\" rel=\"prettyphoto[27730]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/assignments.png?resize=778%2C406\" alt=\"assignments\" class=\"aligncenter size-full wp-image-27783\" /></a></p>\n<p>SchoolPress is built with WordPress multisite, BuddyPress, Paid Memberships Pro, StartBox, Bootstrap, Font Awesome, and roughly a dozen <a href=\"https://github.com/bwawwp/schoolpress/blob/dev/docs/gettingstarted.md#plugins-used\" target=\"_blank\">plugins</a>. The social aspect of the site provides the functionality that allows educators to initiate private/direct communication with students.</p>\n<p>If you want to test the app, Coleman encourages you to only post real classes you intend to run at <a href=\"http://open.schoolpress.me/\" target=\"_blank\">open.schoolpress.me</a>. Otherwise, please use the <a href=\"http://testschool.schoolpress.me/\" target=\"_blank\">testschool.schoolpress.me</a> site. The app is still under development and Coleman plans to share more about building web apps with WordPress on his <a href=\"http://bwawwp.com/schoolpress-launched/\" target=\"_blank\">blog</a>, in addition to the <a href=\"http://open.schoolpress.me/classes/building-web-apps-with-wordpress/\" target=\"_blank\">free course</a> offered on the website.</p>\n<p>The code for the app is available for anyone to use or recreate for specific requirements. It&#8217;s important to note that this isn&#8217;t a plug-and-play app, as noted in the documentation: <strong>&#8220;While this repository contains all of the code for the schoolpress.me site, getting a site like schoolpress.me setup using this codebase is not trivial.&#8221;</strong> The documentation includes detailed instructions for <a href=\"https://github.com/bwawwp/schoolpress/blob/dev/docs/gettingstarted.md\" target=\"_blank\">getting started</a>, <a href=\"https://github.com/bwawwp/schoolpress/blob/dev/docs/gettingstarted.md#installing-schoolpress-on-your-server\" target=\"_blank\">installing SchoolPress on your own server</a>, and <a href=\"https://github.com/bwawwp/schoolpress/blob/dev/docs/newschool.md\" target=\"_blank\">launching a new school site</a>.</p>\n<p>If you want to recreate SchoolPress for your own use, it&#8217;s going to require a bit of development expertise. The app is still in beta but it gives you a solid start on building your own open source learning management system with social networking features incorporated. Check out the <a href=\"https://github.com/bwawwp/schoolpress\" target=\"_blank\">code on GitHub</a> and watch for updates as the app evolves.</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, 05 Aug 2014 23:33: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: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:85:\"Post Status: Interview with Chris Lema: a journey to working full time with 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:30:\"http://www.poststat.us/?p=7004\";s: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:108:\"http://www.poststat.us/chris-lema-interview/?utm_source=rss&utm_medium=rss&utm_campaign=chris-lema-interview\";s: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:5334:\"<p><img class=\"aligncenter size-large wp-image-7012\" src=\"http://www.poststat.us/wp-content/uploads/2014/08/chrislema-752x367.jpg\" alt=\"chrislema\" width=\"752\" height=\"367\" /></p>\n<p>On May 28th, 2012, I was virtually introduced to Chris Lema. He had 653 Twitter followers at the time. I know so, because that&#8217;s how we were introduced &#8212; through an email from Twitter telling me he was now following me. At the time, he&#8217;d not even started <a href=\"http://chrislema.com\">daily writing on his personal blog</a>; he didn&#8217;t start that until September of that year.</p>\n<p>It&#8217;s hard to imagine a time where I didn&#8217;t know who Chris Lema was, or a time where I wasn&#8217;t learning from him. Today, Chris is a significant voice in the WordPress world. He was just announced, deservedly so, in the <a href=\"http://2014.sf.wordcamp.org/2014/08/04/say-hello-to-the-first-group-of-wordcamp-san-francisco-speakers/\">first batch of speakers</a> for WordCamp San Francisco.</p>\n<p>He&#8217;s been blogging nearly every day for two years. I&#8217;ve met him at a number of events. We&#8217;ve shared meals together. We&#8217;ve had phone calls where Chris gave me advice for my career and life. We even spent a week in Cape Town, South Africa traveling together for a WordCamp <a title=\"Let’s learn in Cape Town\" href=\"http://www.poststat.us/blogging-kickstarted-career/\">that I won&#8217;t forget</a>.</p>\n<p>Chris Lema is my friend, and a mentor. I owe him a tremendous amount for his advice, his continuous generosity, and his kindness toward me. And I also know I can&#8217;t pay him back; giving to others is his passion, and I&#8217;ll never be able match that in return.</p>\n<p>What I know I can do is pay it forward. As I gain knowledge, and maybe even a shred of my own wisdom, I can pay forward that mentorship to others that are up and coming in their careers, and be to them as Chris has been to me and as others have been to Chris.</p>\n<p>I&#8217;m one of many, many people that feel this way about Chris. He now has 6,500 followers on Twitter &#8212; something I note purely as a way to compare to the beginning of this post, and highlight how many people he&#8217;s impacted in such a short time. He&#8217;s also a direct mentor to dozens of people who make their living with WordPress.</p>\n<h3>What if Chris did WordPress full time?</h3>\n<p>Incredibly, Chris has had this influence and impact on the WordPress community without having a full time WordPress job.<span id=\"more-7004\"></span></p>\n<p>For eight years, he&#8217;s been at Emphasys Software &#8212; a successful company, but not one you&#8217;d know of in the WordPress ecosystem &#8212; and he&#8217;s been coaching WordPress companies and blogging in his spare time.</p>\n<p>It makes you wonder, what would he do if his full time job were WordPress-centric? I certainly have thought so. And as Chris notes in our interview, I asked him this question while we were in Cape Town.</p>\n<p>I wanted to see what would happen with Chris full time in the WordPress world, and now we&#8217;re about to find out.</p>\n<h3>Joining Crowd Favorite as CTO</h3>\n<p><a href=\"http://chrislema.com/wordpress-change-your-life/\">Chris is announcing today</a> that he&#8217;s <a href=\"http://crowdfavorite.com/blog/2014/08/crowd-favorite-welcomes-chris-lema/\">joining Crowd Favorite</a> full time as its new Chief Technical Officer.</p>\n<p>Chris was already on the board of the VeloMedia Group, which has utilized the Crowd Favorite brand <a title=\"Crowd Favorite to be acquired by VeloMedia\" href=\"http://www.poststat.us/crowd-favorite-acquired-velomedia/\">since its acquisition of the company late last year</a>.</p>\n<p>CEO Karim Marucchi has wanted Chris to be a full time part of the VeloMedia group for some time as well. But the logistics weren&#8217;t easy to work out. However, in the last month or so they really pushed to make it happen, and now Chris will be the CTO as well as a chief strategist for Crowd Favorite and other companies within the VeloMedia group.</p>\n<p>Chris will focus heavily on reaching out to the enterprise space, via consulting opportunities and a variety of other concepts they are working on.</p>\n<h3>Hear about Chris&#8217; journey to full time WordPress</h3>\n<p>In this interview, Chris and I talk about his journey to working full time with WordPress. We talk about his career, his entry into blogging and the WordPress community, about the structure of Crowd Favorite, and the WordPress economy in general.</p>\n<a href=\"http://s3.amazonaws.com/PostStatus/DraftPodcast/chris-lema-post-status-draft.mp3\">http://s3.amazonaws.com/PostStatus/DraftPodcast/chris-lema-post-status-draft.mp3</a>\n<p><a href=\"http://s3.amazonaws.com/PostStatus/DraftPodcast/chris-lema-post-status-draft.mp3\">Direct Download</a></p>\n<p>It was an absolute pleasure to talk to Chris, and I&#8217;m thrilled to see him join Crowd Favorite full time. You can see Chris&#8217; <a href=\"http://chrislema.com/wordpress-change-your-life/\">announcement on his blog</a>, as well as <a href=\"http://crowdfavorite.com/blog/2014/08/crowd-favorite-welcomes-chris-lema/\">Crowd Favorite&#8217;s</a>. Also be sure to follow <a href=\"http://twitter.com/chrislema\">Chris on Twitter</a>, and definitely tell him congratulations on this new journey.</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, 05 Aug 2014 20: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";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:89:\"WPTavern: Serious Bug Discovered In The All In One WordPress Security and Firewall 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=27752\";s: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:224:\"http://wptavern.com/serious-flaw-discovered-in-the-all-in-one-wordpress-security-and-firewall-plugin?utm_source=rss&utm_medium=rss&utm_campaign=serious-flaw-discovered-in-the-all-in-one-wordpress-security-and-firewall-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:5290:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/AllInOneWordPressSecurityFeaturedImage.png\" rel=\"prettyphoto[27752]\"><img class=\"aligncenter size-full wp-image-27754\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/AllInOneWordPressSecurityFeaturedImage.png?resize=728%2C267\" alt=\"All In One WordPress Security and Firewall Featured Image\" /></a></p>\n<p>Pippin Willamson, creator of the <a title=\"http://affiliatewp.com/\" href=\"http://affiliatewp.com/\">AffliateWP</a> plugin, has discovered a serious bug within the <a title=\"http://wordpress.org/plugins/all-in-one-wp-security-and-firewall/\" href=\"http://wordpress.org/plugins/all-in-one-wp-security-and-firewall/\">All In One WordPress Security and Firewall</a> plugin. According to a <a title=\"http://wordpress.org/support/topic/blindly-checking-for-fwp-in-wp_options-is-dangerous\" href=\"http://wordpress.org/support/topic/blindly-checking-for-fwp-in-wp_options-is-dangerous\">forum thread</a> created by Williamson, All In One WordPress Security and Firewall automatically detects option ids with <strong>fwp</strong> as malicious and deletes them.</p>\n<p><code>Known WP Pharma Hack Entry: fwp and option_id: 1101143<br />\nThe options table entry with known pharma hack for option_id 1101143 with option_name affwp_settings was successfully deleted</code></p>\n<p>The pharma hack was well underway in early 2011 but made headlines in the WordPress community when Chris Pearson, <a title=\"http://www.pearsonified.com/2010/04/wordpress-pharma-hack.php\" href=\"http://www.pearsonified.com/2010/04/wordpress-pharma-hack.php\">published a detailed guide</a> explaining how to detect and remove the malicious code. Even though <strong>fwp</strong> is an option id commonly used by the pharma hack, it&#8217;s used by legitimate WordPress plugins as well. As Williamson explains, blindly checking for and deleting <strong>fwp</strong> in the options table is dangerous.</p>\n<blockquote><p>While it is true that sites that have been compromised by the pharma attack do often contain option names with fwp, this is in no way a conclusive test.</p>\n<p>Blindly assuming that an option matching fwp is malicious is really pretty poor and not friendly to legitimate settings that are stored in the database that contain any version of fwp.</p>\n<p>For example, all of our settings are stored with a prefix of affwp_. That means that every single one of our database options are immediately flagged by your plugin and deleted without question or any additional evidence to support the malicious flag.</p>\n<p>The sheer number of plugins that could be negatively impacted by this poor attempt at accurately identifying malicious option rows is staggering. wp is used in a huge number of plugins and is often combined with a letter or word that represents the plugin, so it&#8217;s highly likely that other plugins store options that include the letters fwp in their option name.</p></blockquote>\n<p>Although I don&#8217;t use AffliateWP, I installed WordPress All In One Security and Firewall on my localhost and used the database scanner to see if any option ids are discovered using fwp. During the database scan, it discovered the option id of <strong>sfwpavatar</strong> and promptly removed it from the database. Sfwpavatar is related to the Simple Forums plugin, specifically to handle avatar images. The id has nothing to do with the pharma hack.</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/AllInOneSecurityDatabaseScan2.png\" rel=\"prettyphoto[27752]\"><img class=\"size-full wp-image-27762\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/08/AllInOneSecurityDatabaseScan2.png?resize=977%2C211\" alt=\"All In One Security Database Scan\" /></a>FWP Detected!\n<p>Option 150 as seen in the wp_options table in the database.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/FWPOptionIdInTheDatabase.png\" rel=\"prettyphoto[27752]\"><img class=\"size-full wp-image-27760\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/08/FWPOptionIdInTheDatabase.png?resize=797%2C160\" alt=\"This Is The Option Discovered by All In One WordPress Security and Firewall\" /></a>This Is The Option Discovered by All In One WordPress Security and Firewall\n<p><del>I reached out to the developers of the All In One WordPress Security and Firewall plugin to find out when a fix can be expected. At the time of publishing, they have yet to respond. This post will be updated when or if they respond.</del></p>\n<p><del>Until an update is pushed out that explicitly addresses this bug, I would avoid using it or at the very least, the Database Scanner.</del></p>\n<h2>New Version Temporarily Disables Database Scanner</h2>\n<p>The team has pushed out a <a title=\"http://wordpress.org/plugins/all-in-one-wp-security-and-firewall/\" href=\"http://wordpress.org/plugins/all-in-one-wp-security-and-firewall/\">new version</a> that addresses the issue discussed in the post. You should already see an update notification in the dashboard. According to the <a title=\"http://wordpress.org/plugins/all-in-one-wp-security-and-firewall/changelog/\" href=\"http://wordpress.org/plugins/all-in-one-wp-security-and-firewall/changelog/\">change log</a>, the update temporarily disables the Database Scanner.</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, 05 Aug 2014 20:17: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: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:28:\"BuddyPress: BuddyPress 2.0.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://buddypress.org/?p=185945\";s: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:\"http://buddypress.org/2014/08/buddypress-2-0-2-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:866:\"<p>We&#8217;re very happy to announce that BuddyPress 2.0.2 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.2.zip\">zip file</a>, or through WordPress via Dashboard &gt; Plugins.</p>\n<p>This maintenance release provides a number of fixes for regressions in the Extended Profiles component, and also fixes a PHP Notice that can occur in certain situation (also in the Extended Profile component).</p>\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-2/\">2.0.2 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:\"Tue, 05 Aug 2014 20:05: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:10:\"Paul Gibbs\";s: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:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 12 Aug 2014 16:02:49 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"157025\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Tue, 12 Aug 2014 15:45:16 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20140802051528\";}", "no");
INSERT INTO `wp_options` VALUES("626", "_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:\"Tue, 12 Aug 2014 15:28:57 +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: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: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: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: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: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: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: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: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: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: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: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:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 10 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: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: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: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:14:\"WP Super Cache\";s: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/wp-super-cache/#post-2572\";s: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 Nov 2007 11:40: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2572@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:73:\"A very fast caching engine for WordPress that produces static html files.\";s: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:\"Donncha O Caoimh\";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: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: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: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: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: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: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:24:\"Fast Secure Contact Form\";s: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/si-contact-form/#post-12636\";s: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, 27 Aug 2009 01:20: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"12636@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:\"An easy and powerful form builder that lets your visitors send you email. Blocks all automated spammers. No templates to mess with.\";s: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:\"Mike Challis\";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:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 12 Aug 2014 16:02: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:7:\"expires\";s:29:\"Tue, 12 Aug 2014 16:03:57 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Tue, 12 Aug 2014 15:28:57 +0000\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20140802051528\";}", "no");
INSERT INTO `wp_options` VALUES("623", "_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c", "1407902569", "no");
INSERT INTO `wp_options` VALUES("624", "_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c", "1407859369", "no");
INSERT INTO `wp_options` VALUES("632", "_transient_dash_4077549d03da2e451c8b5f002294ff51", "<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2014/08/wordpress-3-9-2/\'>WordPress 3.9.2 Security Release</a> <span class=\"rss-date\">August 6, 2014</span><div class=\"rssSummary\">WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately. This release fixes a possible denial of service issue in PHP’s XML processing, reported by Nir Goldshlager of the Salesforce.com Product Security Team. It  was fixed by Michael Adams and Andrew Nacin of the WordPress [</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2014/08/12/andrew-nacin-keynote-wordcamp-seattle-2014/\' title=\'\'>WordPress.tv: Andrew Nacin: Keynote WordCamp Seattle 2014</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2014/08/12/wordcamp-org-site-tools-orientation/\' title=\'\'>WordPress.tv: WordCamp.org Site Tools Orientation</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2014/08/12/fish-bowl-interactive-group-discussion/\' title=\'\'>WordPress.tv: Fish Bowl Interactive Group Discussion</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'http://wordpress.org/plugins/wysija-newsletters/\' class=\'dashboard-news-plugin-link\'>MailPoet Newsletters</a>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=wysija-newsletters&amp;_wpnonce=409faabb6b&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'MailPoet Newsletters\'>Install</a>)</span></li></ul></div>", "no");
INSERT INTO `wp_options` VALUES("636", "duplicator_settings", "a:9:{s:7:\"version\";s:5:\"0.5.6\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:16:\"uninstall_tables\";b:1;s:13:\"package_debug\";b:0;s:17:\"package_mysqldump\";b:0;s:22:\"package_mysqldump_path\";s:0:\"\";s:17:\"package_zip_flush\";b:0;s:20:\"storage_htaccess_off\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("637", "duplicator_version_plugin", "0.5.6", "yes");
INSERT INTO `wp_options` VALUES("638", "duplicator_ui_view_state", "a:1:{s:14:\"dup-wpnotice01\";b:1;}", "yes");
INSERT INTO `wp_options` VALUES("639", "duplicator_package_active", "O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:23:\"20140812_technositescom\";s:4:\"Hash\";s:29:\"53ea3adf57b784996140812160343\";s:8:\"NameHash\";s:53:\"20140812_technositescom_53ea3adf57b784996140812160343\";s:7:\"Version\";s:5:\"0.5.6\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:50:\"/home/wwwtechn/public_html/scotts/wp-snapshots/tmp\";s:8:\"StoreURL\";s:44:\"http://techno-sites.com/scotts/wp-snapshots/\";s:8:\"ScanFile\";s:63:\"20140812_technositescom_53ea3adf57b784996140812160343_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":17:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:33:\"/home/wwwtechn/public_html/scotts\";s:4:\"Size\";i:0;s:12:\"WarnFileSize\";a:0:{}s:12:\"WarnFileName\";a:0:{}s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:5:\"Links\";a:0:{}s:8:\"OmitDirs\";a:0:{}s:9:\"OmitFiles\";a:0:{}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:23:\"20140812_technositescom\";s:4:\"Hash\";s:29:\"53ea3adf57b784996140812160343\";s:8:\"NameHash\";s:53:\"20140812_technositescom_53ea3adf57b784996140812160343\";s:7:\"Version\";s:5:\"0.5.6\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:50:\"/home/wwwtechn/public_html/scotts/wp-snapshots/tmp\";s:8:\"StoreURL\";s:44:\"http://techno-sites.com/scotts/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";O:13:\"DUP_Installer\":11:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:30;}s:8:\"Database\";O:12:\"DUP_Database\":9:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:30;s:25:\"\0DUP_Database\0dbStorePath\";N;}}s:28:\"\0DUP_Archive\0filterDirsArray\";a:0:{}s:28:\"\0DUP_Archive\0filterExtsArray\";a:0:{}}s:9:\"Installer\";r:45;s:8:\"Database\";r:57;}", "yes");
INSERT INTO `wp_options` VALUES("625", "_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109", "1407902570", "no");
INSERT INTO `wp_options` VALUES("185", "_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc", "1406955614", "no");
INSERT INTO `wp_options` VALUES("188", "_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0", "1406998814", "no");
INSERT INTO `wp_options` VALUES("189", "_transient_dash_aa95765b5cc111c56d5993d476b1c2f0", "<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wptavern.com/wpweekly-episode-156-a-crowdfunding-roundtable?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wpweekly-episode-156-a-crowdfunding-roundtable\' title=\'In this episode of WordPress Weekly, Marcus Couch and I are joined by three gentleman who have gone through the crowdfunding experience. Scott Kingsley Clark is a Senior Web Engineer at 10up. He’s also the lead developer of the Pods Framework and a number of other WordPress plugins. He used Kickstarter in September of 2011 and asked for $1,500.  He ended up  [&hellip;]\'>WPTavern: WPWeekly Episode 156 – A Crowdfunding Roundtable</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/wordpress-async-task-library-from-techcrunch-now-open-source?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-async-task-library-from-techcrunch-now-open-source\' title=\'TechCrunch is one of the largest sites publishing with WordPress and its developers are always looking to improve performance to maximize engagement and ad revenue. This week the team open sourced its WP Async Task Library, which was created to offload time-consuming tasks into background tasks. Alex Khadiwala and Nico Vincent introduced the library at the B [&hellip;]\'>WPTavern: WordPress Async Task Library from TechCrunch Now Open Source</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/radcliffe-a-free-image-heavy-wordpress-theme-for-writers?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=radcliffe-a-free-image-heavy-wordpress-theme-for-writers\' title=\'Designer and developer Anders Norén has been making a name for himself with his beautifully minimalist WordPress themes. Norén strives for simplicity on the page and in his code, and his five free themes collectively have nearly 130,000 downloads on WordPress.org. Radcliffe is the newest of his creations, designed specifically for writers. Ordinarily, themes [&hellip;]\'>WPTavern: Radcliffe: A Free Image-Heavy WordPress Theme for Writers</a></li><li><a class=\'rsswidget\' href=\'http://ma.tt/2014/08/100-owner/\' title=\'The best approach is to think like a 100% owner of your company with long-term time horizon. Then you work backward to the present and see what makes sense and what remains. Versus, here is what we have now, how do we carry it forward? Marc Andreessen in The Future of the News Business: A Monumental Twitter Stream All in One Place. [&hellip;]\'>Matt: 100% Owner</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2014/08/01/julian-dziki-seo-und-linkbuilding-im-jahr-2014/\' title=\' [&hellip;]\'>WordPress.tv: Julian Dziki: SEO und Linkbuilding im Jahr 2014</a></li></ul></div>", "no");
INSERT INTO `wp_options` VALUES("190", "_transient_timeout_feed_57bc725ad6568758915363af670fd8bc", "1406998814", "no");
INSERT INTO `wp_options` VALUES("191", "_transient_feed_57bc725ad6568758915363af670fd8bc", "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:\"Sat, 02 Aug 2014 04:39:54 +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:20:\"Post Carousel Slider\";s: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:\"https://wordpress.org/plugins/post-carousel-slider/#post-70449\";s: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 Jul 2014 19:47: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:\"70449@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:142:\"Posts Carousel  Slider is a WordPress posts content slider plugin. Posts slider displays your blog&#039;s recent posts using beautiful slider.\";s: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:\"hemant29\";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:19:\"dpaBottomofPostPage\";s: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:61:\"https://wordpress.org/plugins/dpabottomofpostpage/#post-70515\";s: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, 01 Aug 2014 16:27:58 +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:\"70515@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:95:\"This plugin can add several messages or adverts to the bottom of every WordPress post and page.\";s: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:\"peter achutha\";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:\"Easy Lightbox 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/easy-lightbox-wp/#post-70478\";s: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, 31 Jul 2014 13:37: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:36:\"70478@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:89:\"Easy lightbox wordpress is an awesome for your wordpress site&#039;s images &#38; 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"lazypersons\";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:38:\"The Events Calendar Outlook Import Fix\";s: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:80:\"https://wordpress.org/plugins/the-events-calendar-outlook-import-fix/#post-70504\";s: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, 01 Aug 2014 06:26: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:36:\"70504@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:66:\"Fix import of calendar events from The Events Calendar to Outlook.\";s: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:\"Andy Fragen\";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:25:\"Plot Over Time - Extended\";s: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/plot-over-time-extended/#post-70492\";s: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, 31 Jul 2014 20:45: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:\"70492@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:149:\"Uses the Google Chart Tools API for charting data entered with posts using MetaTags. Supports two optional components of multiple charts per page and\";s: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:\"rdcravens\";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:22:\"Kopa Nictitate Toolkit\";s: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/kopa-nictitate-toolkit/#post-70502\";s: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, 01 Aug 2014 04:23: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"70502@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:88:\"A specific plugin use in Nictitate Theme to help you register post types 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:9:\"kopatheme\";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:24:\"Tracking Scripts 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:65:\"https://wordpress.org/plugins/tracking-script-manager/#post-70361\";s: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 Jul 2014 22:24:58 +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:\"70361@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:103:\"Add tracking codes, scripts, or any code to the header or footer of the page on your WordPress website.\";s: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:\"JHipkin\";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:12:\"FnF.fm Radio\";s: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:\"https://wordpress.org/plugins/fnffm-radio/#post-70303\";s: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 Jul 2014 19:54: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:\"70303@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:84:\"FnF.fm is an Online Radio Station that can be used as either a widget or Short code.\";s: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:\"CartOOnist ARiF\";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:14:\"Use jQuery CDN\";s: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/use-jquery-cdn/#post-70468\";s: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, 31 Jul 2014 07:31: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:36:\"70468@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:\"Charge les bibliothèques open source jQuery et jQuery-migrate depuis le CDN de jQuery délivré par MAXCDN\";s: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:\"luciole135\";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:23:\"Keyword to Tooltip 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:65:\"https://wordpress.org/plugins/keyword-to-tooltip-lite/#post-70493\";s: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, 31 Jul 2014 21:08:58 +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:\"70493@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:74:\"Easily add a brief to long explanation to certain words all over 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:16:\"rusuandreirobert\";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:\"Map Contact\";s: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:\"https://wordpress.org/plugins/map-contact/#post-70443\";s: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 Jul 2014 17:21: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:\"70443@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:91:\"Instantly create stylish and professional Contact Us Page with Map 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:11:\"ryan_xantoo\";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:19:\"Account Locker 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:61:\"https://wordpress.org/plugins/account-locker-lite/#post-70495\";s: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, 31 Jul 2014 23:50: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:36:\"70495@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:77:\"Allows the administrator to lock/ban specific accounts without deleting them.\";s: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:\"Gewora\";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:36:\"Assign WP Roles for iThemes Exchange\";s: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/assign-wp-roles-for-ithemes-exchange/#post-70500\";s: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, 01 Aug 2014 03:58: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"70500@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:76:\"Automatically assign roles to customers when they purchase certain 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Timothy Jacobs\";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:22:\"WooCommerce 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/woocommerce-shortcodes/#post-70510\";s: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, 01 Aug 2014 15:10: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"70510@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:84:\"Adds a button in TinyMCE editor allowing use of WooCommerce shortcodes. 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:15:\"Claudio Sanches\";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:26:\"CFS Custom Category Fields\";s: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:\"https://wordpress.org/plugins/cfs-custom-category-fields/#post-70486\";s: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, 31 Jul 2014 15:55: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"70486@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:95:\"A Custom Field Suite Addon that provides custom meta data for categories and custom taxonomies.\";s: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:\"GatorDog\";s: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:\"Sat, 02 Aug 2014 05:00:14 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:\"Sat, 02 Aug 2014 05:14:54 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Sat, 02 Aug 2014 04:39:54 +0000\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20090627192103\";}", "no");
INSERT INTO `wp_options` VALUES("192", "_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc", "1406998814", "no");
INSERT INTO `wp_options` VALUES("193", "_transient_feed_mod_57bc725ad6568758915363af670fd8bc", "1406955614", "no");
INSERT INTO `wp_options` VALUES("194", "_transient_timeout_feed_1a5f760f2e2b48827d4974a60857e7c2", "1406998814", "no");
INSERT INTO `wp_options` VALUES("195", "_transient_feed_1a5f760f2e2b48827d4974a60857e7c2", "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:43:\"WordPress Plugins » View: Recently Updated\";s: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/updated/\";s: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:43:\"WordPress Plugins » View: Recently Updated\";s: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:\"Sat, 02 Aug 2014 04:39: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: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:\"Share Buttons by E-MAILiT\";s: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:\"http://wordpress.org/plugins/e-mailit/#post-49453\";s: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, 12 Feb 2013 19:33: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"49453@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:62:\"The simple way to add one button sharing to over 130 services.\";s: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:\"E-MAILiT\";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:\"PopupAlly\";s: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/popupally/#post-65101\";s: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, 13 Mar 2014 13:15:15 +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:\"65101@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:119:\"PopupAlly allows you to create advanced popup signup forms in under 5 minutes without the need to deal with messy code.\";s: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:\"Robin\";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:38:\"WooCommerce Geolocation Based 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://wordpress.org/plugins/woocommerce-geolocation-based-products/#post-69778\";s: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, 13 Jul 2014 17:33:34 +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:\"69778@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:138:\"A WooCommerce plugin/extension that adds ability for your store to show/hide products based on visitors geolocation taken from IP address.\";s: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:\"Roy Ho\";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:20:\"Post Carousel Slider\";s: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:61:\"http://wordpress.org/plugins/post-carousel-slider/#post-70449\";s: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 Jul 2014 19:47: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:\"70449@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:142:\"Posts Carousel  Slider is a WordPress posts content slider plugin. Posts slider displays your blog&#039;s recent posts using beautiful slider.\";s: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:\"hemant29\";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:28:\"Hermit 虾米音乐播放器\";s: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/hermit/#post-66213\";s: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, 13 Apr 2014 10:36:54 +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:\"66213@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:75:\"Hermit 虾米音乐播放器：支持Html5+Flash的虾米音乐播放器。\";s: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:\"mu feng\";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:16:\"Facebook Members\";s: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:57:\"http://wordpress.org/plugins/facebook-members/#post-21215\";s: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, 28 Sep 2010 17:39: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:35:\"21215@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:122:\"THE Simplest way to bring Facebook LikeBox + Facebook Recommendation Bar functionality to WordPress with lot more Options.\";s: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:\"Arpit\";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:29:\"Pricing Deals for WooCommerce\";s: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:70:\"http://wordpress.org/plugins/pricing-deals-for-woocommerce/#post-65047\";s: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, 12 Mar 2014 00:13: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:\"65047@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:114:\"Dynamic Pricing, Wholesale Pricing,  BOGO Deals and more - Pricing Deals can do any kind of deal you can think of!\";s: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:\"vark\";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:18:\"Wizhi Optimization\";s: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/wizhi-optimization/#post-70283\";s: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 Jul 2014 04:11: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"70283@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:80:\"Clean up and optimization WordPress for Chinese user or who use English in China\";s: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:\"Amos Lee\";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:20:\"Ad Blocking Detector\";s: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:61:\"http://wordpress.org/plugins/ad-blocking-detector/#post-62550\";s: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, 08 Jan 2014 04:36: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"62550@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:143:\"Tired of missed opportunities because of pesky ad blocker browser extensions, add-ons, and plugins? Fight\nback with Ad Blocking Detector today!\";s: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:\"John Morris\";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:19:\"dpaBottomofPostPage\";s: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:60:\"http://wordpress.org/plugins/dpabottomofpostpage/#post-70515\";s: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, 01 Aug 2014 16:27:58 +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:\"70515@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:95:\"This plugin can add several messages or adverts to the bottom of every WordPress post and page.\";s: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:\"peter achutha\";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:26:\"Gravity Forms PDF Extended\";s: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:\"http://wordpress.org/plugins/gravity-forms-pdf-extended/#post-42910\";s: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, 08 Sep 2012 14:22: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"42910@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:141:\"Gravity Forms PDF Extended allows you to save/view/download a PDF from the front- and back-end, and automate PDF creation on form submission.\";s: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:19:\"Blue Liquid Designs\";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:7:\"RSVP ME\";s: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/rsvp-me/#post-20999\";s: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, 19 Sep 2010 09:31: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:35:\"20999@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:20:\"A Robust RSVP 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"MicahBlu\";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:23:\"Easy Lightbox 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/plugins/easy-lightbox-wp/#post-70478\";s: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, 31 Jul 2014 13:37: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:\"70478@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:89:\"Easy lightbox wordpress is an awesome for your wordpress site&#039;s images &#38; 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"lazypersons\";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:8:\"Backdrop\";s: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:\"http://wordpress.org/plugins/backdrop/#post-44861\";s: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, 25 Oct 2012 07:21: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:35:\"44861@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:91:\"Backdrop is an improved site background customizer allowing for all manner of fancy things.\";s: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:\"Phillip.Gooch\";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:24:\"Hitsteps Visitor 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:65:\"http://wordpress.org/plugins/hitsteps-visitor-manager/#post-60744\";s: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, 18 Nov 2013 17:59:28 +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:\"60744@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:124:\"Hitsteps is a powerful real time website visitor manager, it allow you to view and interact with your visitors in real time.\";s: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:\"hitsteps\";s: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/updated\";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:\"Sat, 02 Aug 2014 05:00:14 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:\"Sat, 02 Aug 2014 05:14:14 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Sat, 02 Aug 2014 04:39:14 +0000\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20090627192103\";}", "no");
INSERT INTO `wp_options` VALUES("196", "_transient_timeout_feed_mod_1a5f760f2e2b48827d4974a60857e7c2", "1406998814", "no");
INSERT INTO `wp_options` VALUES("197", "_transient_feed_mod_1a5f760f2e2b48827d4974a60857e7c2", "1406955614", "no");
INSERT INTO `wp_options` VALUES("629", "_transient_timeout_plugin_slugs", "1407945812", "no");
INSERT INTO `wp_options` VALUES("630", "_transient_plugin_slugs", "a:12:{i:0;s:33:\"addthis/addthis_social_widget.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:25:\"duplicator/duplicator.php\";i:4;s:39:\"easy-theme-and-plugin-upgrades/init.php\";i:5;s:9:\"hello.php\";i:6;s:31:\"wp-lightbox/plugin-lightbox.php\";i:7;s:23:\"revslider/revslider.php\";i:8;s:45:\"special-recent-posts/special-recent-posts.php\";i:9;s:27:\"woocommerce/woocommerce.php\";i:10;s:41:\"wordpress-importer/wordpress-importer.php\";i:11;s:43:\"wp-maintenance-mode/wp-maintenance-mode.php\";}", "no");
INSERT INTO `wp_options` VALUES("200", "_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e", "1406998814", "no");
INSERT INTO `wp_options` VALUES("201", "_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e", "<h4>Most Popular</h4>\n<h5><a href=\'http://wordpress.org/plugins/wordfence/\'>Wordfence Security</a></h5>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=wordfence&amp;_wpnonce=d01cdec66e&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'Wordfence Security\'>Install</a>)</span>\n<p>Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.</p>\n<h4>Newest Plugins</h4>\n<h5><a href=\'https://wordpress.org/plugins/kopa-nictitate-toolkit/\'>Kopa Nictitate Toolkit</a></h5>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=kopa-nictitate-toolkit&amp;_wpnonce=181d6dce40&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'Kopa Nictitate Toolkit\'>Install</a>)</span>\n<p>A specific plugin use in Nictitate Theme to help you register post types and shortcodes.</p>\n<h4>Recently Updated</h4>\n<h5><a href=\'http://wordpress.org/plugins/easy-lightbox-wp/\'>Easy Lightbox Wordpress</a></h5>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=easy-lightbox-wp&amp;_wpnonce=4d6a678ab0&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'Easy Lightbox Wordpress\'>Install</a>)</span>\n<p>Easy lightbox wordpress is an awesome for your wordpress site&#039;s images &amp; videos.</p>\n", "no");
INSERT INTO `wp_options` VALUES("204", "_transient_random_seed", "eae08d3c55bc365170a3876846f1609b", "yes");
INSERT INTO `wp_options` VALUES("207", "db_upgraded", "", "yes");
INSERT INTO `wp_options` VALUES("552", "auto_core_update_notified", "a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"technosites@live.com\";s:7:\"version\";s:5:\"3.9.2\";s:9:\"timestamp\";i:1407388662;}", "yes");
INSERT INTO `wp_options` VALUES("312", "category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("210", "can_compress_scripts", "0", "yes");
INSERT INTO `wp_options` VALUES("635", "_site_transient_update_plugins", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1407859411;s:7:\"checked\";a:12:{s:33:\"addthis/addthis_social_widget.php\";s:6:\"3.5.10\";s:19:\"akismet/akismet.php\";s:5:\"2.5.3\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"3.9.1\";s:25:\"duplicator/duplicator.php\";s:5:\"0.5.6\";s:39:\"easy-theme-and-plugin-upgrades/init.php\";s:5:\"1.0.4\";s:9:\"hello.php\";s:3:\"1.6\";s:31:\"wp-lightbox/plugin-lightbox.php\";s:5:\"1.8.0\";s:23:\"revslider/revslider.php\";s:5:\"4.3.8\";s:45:\"special-recent-posts/special-recent-posts.php\";s:5:\"1.9.9\";s:27:\"woocommerce/woocommerce.php\";s:6:\"2.1.12\";s:41:\"wordpress-importer/wordpress-importer.php\";s:5:\"0.6.1\";s:43:\"wp-maintenance-mode/wp-maintenance-mode.php\";s:6:\"1.8.11\";}s:8:\"response\";a:2:{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.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.0.1.zip\";}s:27:\"js_composer/js_composer.php\";O:8:\"stdClass\":4:{s:4:\"slug\";s:11:\"js_composer\";s:11:\"new_version\";s:5:\"4.3.2\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";}}s:12:\"translations\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("211", "_site_transient_timeout_wporg_theme_feature_list", "1406967373", "yes");
INSERT INTO `wp_options` VALUES("212", "_site_transient_wporg_theme_feature_list", "a:4:{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:6:\"Layout\";a:9:{i:0;s:12:\"fixed-layout\";i:1;s:12:\"fluid-layout\";i:2;s:17:\"responsive-layout\";i:3;s:10:\"one-column\";i:4;s:11:\"two-columns\";i:5;s:13:\"three-columns\";i:6;s:12:\"four-columns\";i:7;s:12:\"left-sidebar\";i:8;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";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\";}}", "yes");
INSERT INTO `wp_options` VALUES("214", "theme_mods_twentyeleven", "a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1406956808;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("215", "theme_mods_jupiter", "a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:8;}}", "yes");
INSERT INTO `wp_options` VALUES("216", "theme_switched", "", "yes");
INSERT INTO `wp_options` VALUES("217", "woocommerce_enable_lightbox", "no", "yes");
INSERT INTO `wp_options` VALUES("218", "_site_transient_timeout_popular_importers_en_US", "1407130401", "yes");
INSERT INTO `wp_options` VALUES("219", "_site_transient_popular_importers_en_US", "a:2:{s:9:\"importers\";a:8:{s:7:\"blogger\";a:4:{s:4:\"name\";s:7:\"Blogger\";s:11:\"description\";s:86:\"Install the Blogger importer to import posts, comments, and users from a Blogger blog.\";s:11:\"plugin-slug\";s:16:\"blogger-importer\";s:11:\"importer-id\";s:7:\"blogger\";}s:9:\"wpcat2tag\";a:4:{s:4:\"name\";s:29:\"Categories and Tags Converter\";s:11:\"description\";s:109:\"Install the category/tag converter to convert existing categories to tags or tags to categories, selectively.\";s:11:\"plugin-slug\";s:18:\"wpcat2tag-importer\";s:11:\"importer-id\";s:9:\"wpcat2tag\";}s:11:\"livejournal\";a:4:{s:4:\"name\";s:11:\"LiveJournal\";s:11:\"description\";s:82:\"Install the LiveJournal importer to import posts from LiveJournal using their API.\";s:11:\"plugin-slug\";s:20:\"livejournal-importer\";s:11:\"importer-id\";s:11:\"livejournal\";}s:11:\"movabletype\";a:4:{s:4:\"name\";s:24:\"Movable Type and TypePad\";s:11:\"description\";s:99:\"Install the Movable Type importer to import posts and comments from a Movable Type or TypePad blog.\";s:11:\"plugin-slug\";s:20:\"movabletype-importer\";s:11:\"importer-id\";s:2:\"mt\";}s:4:\"opml\";a:4:{s:4:\"name\";s:8:\"Blogroll\";s:11:\"description\";s:61:\"Install the blogroll importer to import links in OPML format.\";s:11:\"plugin-slug\";s:13:\"opml-importer\";s:11:\"importer-id\";s:4:\"opml\";}s:3:\"rss\";a:4:{s:4:\"name\";s:3:\"RSS\";s:11:\"description\";s:58:\"Install the RSS importer to import posts from an RSS feed.\";s:11:\"plugin-slug\";s:12:\"rss-importer\";s:11:\"importer-id\";s:3:\"rss\";}s:6:\"tumblr\";a:4:{s:4:\"name\";s:6:\"Tumblr\";s:11:\"description\";s:84:\"Install the Tumblr importer to import posts &amp; media from Tumblr using their API.\";s:11:\"plugin-slug\";s:15:\"tumblr-importer\";s:11:\"importer-id\";s:6:\"tumblr\";}s:9:\"wordpress\";a:4:{s:4:\"name\";s:9:\"WordPress\";s:11:\"description\";s:130:\"Install the WordPress importer to import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.\";s:11:\"plugin-slug\";s:18:\"wordpress-importer\";s:11:\"importer-id\";s:9:\"wordpress\";}}s:10:\"translated\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("221", "news_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("222", "faq_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("223", "portfolio_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("227", "wpb_js_composer_templates_slashes_updated", "yes", "yes");
INSERT INTO `wp_options` VALUES("225", "_site_transient_timeout_browser_2f26ba3f927ba9dcb88d92136c041d46", "1407563699", "yes");
INSERT INTO `wp_options` VALUES("226", "_site_transient_browser_2f26ba3f927ba9dcb88d92136c041d46", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"36.0.1985.125\";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");
INSERT INTO `wp_options` VALUES("228", "wpb_js_templates", "a:1:{i:0;a:2:{s:4:\"name\";s:0:\"\";s:8:\"template\";s:0:\"\";}}", "yes");
INSERT INTO `wp_options` VALUES("237", "Jupiter_options", "a:271:{s:14:\"custom_favicon\";s:0:\"\";s:18:\"disable_breadcrumb\";s:4:\"true\";s:20:\"disable_smoothscroll\";s:4:\"true\";s:22:\"header_search_location\";s:10:\"beside_nav\";s:22:\"disable_homepage_title\";s:5:\"false\";s:20:\"responsive_nav_width\";s:3:\"480\";s:10:\"grid_width\";s:4:\"1254\";s:13:\"content_width\";s:2:\"73\";s:18:\"content_responsive\";s:3:\"960\";s:11:\"iphone_icon\";s:0:\"\";s:18:\"iphone_icon_retina\";s:0:\"\";s:9:\"ipad_icon\";s:0:\"\";s:16:\"ipad_icon_retina\";s:0:\"\";s:9:\"analytics\";s:0:\"\";s:22:\"disable_header_toolbar\";s:5:\"false\";s:18:\"enable_header_date\";s:5:\"false\";s:22:\"header_toolbar_tagline\";s:0:\"\";s:20:\"header_toolbar_phone\";s:13:\"123-123456789\";s:20:\"header_toolbar_email\";s:20:\"some@companyname.com\";s:20:\"header_toolbar_login\";s:4:\"true\";s:24:\"header_toolbar_subscribe\";s:5:\"false\";s:20:\"mailchimp_action_url\";s:0:\"\";s:30:\"disable_header_social_networks\";s:4:\"true\";s:28:\"header_social_networks_style\";s:6:\"circle\";s:26:\"header_social_sites_select\";s:0:\"\";s:17:\"header_social_url\";s:0:\"\";s:27:\"header_social_networks_site\";s:0:\"\";s:26:\"header_social_networks_url\";s:0:\"\";s:4:\"logo\";s:67:\"http://techno-sites.com/scotts/wp-content/uploads/2014/08/logo1.png\";s:15:\"responsive_logo\";s:0:\"\";s:11:\"header_grid\";s:5:\"false\";s:13:\"header_height\";s:3:\"178\";s:20:\"enable_sticky_header\";s:4:\"true\";s:20:\"header_scroll_height\";s:2:\"55\";s:13:\"logo_position\";s:4:\"left\";s:13:\"loggedin_menu\";s:12:\"primary-menu\";s:14:\"main_nav_style\";s:7:\"classic\";s:15:\"main_menu_align\";s:4:\"left\";s:22:\"header_start_tour_page\";s:0:\"\";s:31:\"header_start_tour_page_selector\";s:0:\"\";s:27:\"header_start_tour_page_page\";s:0:\"\";s:26:\"header_start_tour_page_cat\";s:0:\"\";s:27:\"header_start_tour_page_post\";s:0:\"\";s:31:\"header_start_tour_page_manually\";s:0:\"\";s:22:\"header_start_tour_text\";s:0:\"\";s:11:\"add_sidebar\";s:0:\"\";s:8:\"sidebars\";s:13:\"recent events\";s:14:\"disable_footer\";s:4:\"true\";s:14:\"footer_columns\";s:1:\"3\";s:18:\"disable_sub_footer\";s:4:\"true\";s:17:\"enable_footer_nav\";s:4:\"true\";s:11:\"footer_logo\";s:0:\"\";s:9:\"copyright\";s:61:\"Copyright © 2014 scottsdaleseville.com | All Rights Reserved\";s:21:\"disable_quick_contact\";s:4:\"true\";s:19:\"quick_contact_title\";s:10:\"Contact Us\";s:19:\"quick_contact_email\";s:20:\"technosites@live.com\";s:18:\"quick_contact_desc\";s:89:\"We\'re not around right now. But you can send us an email and we\'ll get back to you, asap.\";s:31:\"background_selector_orientation\";s:17:\"full_width_layout\";s:24:\"boxed_layout_shadow_size\";s:2:\"60\";s:29:\"boxed_layout_shadow_intensity\";s:4:\"0.25\";s:15:\"bg_panel_upload\";s:0:\"\";s:14:\"bg_panel_color\";s:0:\"\";s:16:\"bg_panel_stretch\";s:5:\"false\";s:10:\"body_color\";s:4:\"#fff\";s:10:\"body_image\";s:0:\"\";s:9:\"body_size\";s:5:\"false\";s:13:\"body_position\";s:0:\"\";s:15:\"body_attachment\";s:0:\"\";s:11:\"body_repeat\";s:0:\"\";s:11:\"body_source\";s:8:\"no-image\";s:10:\"page_color\";s:4:\"#fff\";s:10:\"page_image\";s:0:\"\";s:9:\"page_size\";s:5:\"false\";s:13:\"page_position\";s:0:\"\";s:15:\"page_attachment\";s:0:\"\";s:11:\"page_repeat\";s:0:\"\";s:11:\"page_source\";s:8:\"no-image\";s:12:\"header_color\";s:4:\"#fff\";s:12:\"header_image\";s:65:\"http://techno-sites.com/scotts/wp-content/uploads/2014/08/bg4.png\";s:11:\"header_size\";s:5:\"false\";s:15:\"header_position\";s:8:\"left top\";s:17:\"header_attachment\";s:6:\"scroll\";s:13:\"header_repeat\";s:8:\"repeat-x\";s:13:\"header_source\";s:6:\"custom\";s:12:\"banner_color\";s:0:\"\";s:12:\"banner_image\";s:68:\"http://techno-sites.com/scotts/wp-content/uploads/2014/08/title1.jpg\";s:11:\"banner_size\";s:5:\"false\";s:15:\"banner_position\";s:13:\"center center\";s:17:\"banner_attachment\";s:5:\"fixed\";s:13:\"banner_repeat\";s:0:\"\";s:13:\"banner_source\";s:6:\"custom\";s:12:\"footer_color\";s:0:\"\";s:12:\"footer_image\";s:0:\"\";s:11:\"footer_size\";s:5:\"false\";s:15:\"footer_position\";s:0:\"\";s:17:\"footer_attachment\";s:0:\"\";s:13:\"footer_repeat\";s:0:\"\";s:13:\"footer_source\";s:8:\"no-image\";s:14:\"header_opacity\";s:1:\"1\";s:21:\"header_sticky_opacity\";s:4:\"0.95\";s:19:\"header_border_color\";s:0:\"\";s:10:\"skin_color\";s:7:\"#ed1c24\";s:15:\"body_text_color\";s:7:\"#252525\";s:8:\"h1_color\";s:7:\"#393836\";s:8:\"h2_color\";s:7:\"#393836\";s:8:\"h3_color\";s:7:\"#393836\";s:8:\"h4_color\";s:7:\"#393836\";s:8:\"h5_color\";s:7:\"#393836\";s:8:\"h6_color\";s:7:\"#393836\";s:7:\"p_color\";s:7:\"#252525\";s:7:\"a_color\";s:7:\"#333333\";s:13:\"a_color_hover\";s:7:\"#231f20\";s:12:\"strong_color\";s:7:\"#231f20\";s:17:\"main_nav_bg_color\";s:7:\"#ed1c24\";s:21:\"main_nav_top_bg_color\";s:0:\"\";s:23:\"main_nav_top_text_color\";s:7:\"#ffffff\";s:29:\"main_nav_top_text_hover_color\";s:7:\"#231f20\";s:27:\"main_nav_top_bg_hover_color\";s:7:\"#c3131a\";s:32:\"main_nav_top_bg_hover_color_rgba\";s:3:\"0.9\";s:21:\"main_nav_sub_bg_color\";s:4:\"#fff\";s:23:\"main_nav_sub_text_color\";s:7:\"#444444\";s:29:\"main_nav_sub_text_color_hover\";s:7:\"#ed1c24\";s:27:\"main_nav_sub_hover_bg_color\";s:7:\"#f5f5f5\";s:20:\"responsive_nav_color\";s:7:\"#ed1c24\";s:24:\"responsive_nav_txt_color\";s:7:\"#ffffff\";s:17:\"header_toolbar_bg\";s:7:\"#ffffff\";s:27:\"header_toolbar_border_color\";s:0:\"\";s:24:\"header_toolbar_txt_color\";s:7:\"#999999\";s:25:\"header_toolbar_link_color\";s:7:\"#999999\";s:35:\"header_toolbar_social_network_color\";s:7:\"#999999\";s:30:\"header_toolbar_search_input_bg\";s:0:\"\";s:31:\"header_toolbar_search_input_txt\";s:7:\"#c7c7c7\";s:16:\"page_title_color\";s:4:\"#fff\";s:17:\"page_title_shadow\";s:4:\"true\";s:19:\"page_subtitle_color\";s:4:\"#fff\";s:15:\"breadcrumb_skin\";s:4:\"dark\";s:19:\"banner_border_color\";s:0:\"\";s:19:\"sidebar_title_color\";s:7:\"#333333\";s:18:\"sidebar_text_color\";s:7:\"#666666\";s:19:\"sidebar_links_color\";s:7:\"#333333\";s:18:\"footer_title_color\";s:4:\"#fff\";s:17:\"footer_text_color\";s:7:\"#808080\";s:18:\"footer_links_color\";s:7:\"#999999\";s:19:\"sub_footer_bg_color\";s:7:\"#202020\";s:25:\"sub_footer_nav_copy_color\";s:4:\"#fff\";s:16:\"start_tour_color\";s:4:\"#333\";s:11:\"font_family\";s:0:\"\";s:20:\"special_fonts_list_1\";s:29:\"Open+Sans:400,300,600,700,800\";s:20:\"special_fonts_type_1\";s:6:\"google\";s:20:\"google_font_subset_1\";s:0:\"\";s:18:\"special_elements_1\";a:1:{i:0;s:4:\"body\";}s:20:\"special_fonts_type_2\";s:0:\"\";s:20:\"special_fonts_list_2\";s:4:\"none\";s:20:\"google_font_subset_2\";s:0:\"\";s:14:\"body_font_size\";s:2:\"14\";s:11:\"body_weight\";s:6:\"normal\";s:6:\"p_size\";s:2:\"14\";s:7:\"h1_size\";s:2:\"36\";s:9:\"h1_weight\";s:4:\"bold\";s:12:\"h1_transform\";s:9:\"uppercase\";s:7:\"h2_size\";s:2:\"30\";s:9:\"h2_weight\";s:4:\"bold\";s:12:\"h2_transform\";s:9:\"uppercase\";s:7:\"h3_size\";s:2:\"24\";s:9:\"h3_weight\";s:4:\"bold\";s:12:\"h3_transform\";s:9:\"uppercase\";s:7:\"h4_size\";s:2:\"18\";s:9:\"h4_weight\";s:4:\"bold\";s:12:\"h4_transform\";s:9:\"uppercase\";s:7:\"h5_size\";s:2:\"16\";s:9:\"h5_weight\";s:4:\"bold\";s:12:\"h5_transform\";s:9:\"uppercase\";s:7:\"h6_size\";s:2:\"14\";s:9:\"h6_weight\";s:6:\"normal\";s:12:\"h6_transform\";s:9:\"uppercase\";s:15:\"start_tour_size\";s:2:\"14\";s:19:\"main_nav_item_space\";s:2:\"20\";s:17:\"main_nav_top_size\";s:2:\"14\";s:19:\"main_nav_top_weight\";s:6:\"normal\";s:25:\"page_introduce_title_size\";s:2:\"34\";s:21:\"page_introduce_weight\";s:7:\"lighter\";s:20:\"page_title_transform\";s:4:\"none\";s:28:\"page_introduce_subtitle_size\";s:2:\"14\";s:33:\"page_introduce_subtitle_transform\";s:4:\"none\";s:18:\"sidebar_title_size\";s:2:\"14\";s:20:\"sidebar_title_weight\";s:6:\"bolder\";s:23:\"sidebar_title_transform\";s:9:\"uppercase\";s:17:\"sidebar_text_size\";s:2:\"12\";s:19:\"sidebar_text_weight\";s:6:\"normal\";s:17:\"footer_title_size\";s:2:\"14\";s:19:\"footer_title_weight\";s:3:\"800\";s:22:\"footer_title_transform\";s:9:\"uppercase\";s:16:\"footer_text_size\";s:2:\"12\";s:18:\"footer_text_weight\";s:6:\"normal\";s:14:\"portfolio_slug\";s:15:\"portfolio-posts\";s:23:\"portfolio_single_layout\";s:4:\"full\";s:29:\"Portfolio_single_image_height\";s:3:\"500\";s:21:\"single_portfolio_cats\";s:5:\"false\";s:23:\"single_portfolio_social\";s:4:\"true\";s:30:\"enable_portfolio_similar_posts\";s:4:\"true\";s:19:\"portfolio_next_prev\";s:4:\"true\";s:24:\"enable_portfolio_comment\";s:5:\"false\";s:24:\"archive_portfolio_layout\";s:5:\"right\";s:23:\"archive_portfolio_style\";s:7:\"classic\";s:24:\"archive_portfolio_column\";s:1:\"3\";s:30:\"archive_portfolio_image_height\";s:3:\"400\";s:34:\"archive_portfolio_pagination_style\";s:1:\"1\";s:13:\"single_layout\";s:5:\"right\";s:28:\"single_featured_image_height\";s:3:\"300\";s:29:\"single_disable_featured_image\";s:4:\"true\";s:20:\"blog_single_img_crop\";s:4:\"true\";s:19:\"single_meta_section\";s:4:\"true\";s:18:\"single_blog_social\";s:4:\"true\";s:14:\"blog_prev_next\";s:4:\"true\";s:18:\"enable_blog_author\";s:4:\"true\";s:18:\"diable_single_tags\";s:4:\"true\";s:27:\"enable_single_related_posts\";s:4:\"true\";s:27:\"enable_blog_single_comments\";s:4:\"true\";s:19:\"archive_page_layout\";s:5:\"right\";s:18:\"archive_page_title\";s:8:\"Archives\";s:24:\"archive_disable_subtitle\";s:4:\"true\";s:25:\"archive_blog_image_height\";s:3:\"350\";s:18:\"archive_loop_style\";s:6:\"modern\";s:24:\"archive_pagination_style\";s:1:\"1\";s:18:\"search_page_layout\";s:5:\"right\";s:17:\"search_page_title\";s:6:\"Search\";s:23:\"search_disable_subtitle\";s:4:\"true\";s:9:\"news_slug\";s:10:\"news-posts\";s:9:\"news_page\";s:0:\"\";s:11:\"news_layout\";s:4:\"full\";s:26:\"news_featured_image_height\";s:3:\"340\";s:9:\"minify-js\";s:5:\"false\";s:17:\"remove-js-css-ver\";s:4:\"true\";s:19:\"portfolio-post-type\";s:4:\"true\";s:14:\"news-post-type\";s:4:\"true\";s:13:\"faq-post-type\";s:4:\"true\";s:17:\"pricing-post-type\";s:4:\"true\";s:17:\"clients-post-type\";s:4:\"true\";s:19:\"employees-post-type\";s:4:\"true\";s:22:\"testimonials-post-type\";s:4:\"true\";s:20:\"flexslider-post-type\";s:4:\"true\";s:14:\"edge-post-type\";s:4:\"true\";s:19:\"iCarousel-post-type\";s:4:\"true\";s:16:\"banner-post-type\";s:4:\"true\";s:9:\"enable_uc\";s:5:\"false\";s:7:\"uc_logo\";s:0:\"\";s:8:\"uc_title\";s:36:\"We are currently under construction.\";s:11:\"uc_subtitle\";s:33:\"Our estimated time before launch.\";s:7:\"uc_date\";s:19:\"12/24/2017 12:00:00\";s:9:\"uc_offset\";s:1:\"0\";s:11:\"uc_facebook\";s:0:\"\";s:10:\"uc_twitter\";s:0:\"\";s:8:\"uc_gplus\";s:0:\"\";s:6:\"uc_rss\";s:41:\"http://techno-sites.com/scotts/?feed=rss2\";s:23:\"uc_mailchimp_action_url\";s:0:\"\";s:11:\"uc_bg_color\";s:0:\"\";s:12:\"uc_bg_repeat\";s:0:\"\";s:16:\"uc_bg_attachment\";s:0:\"\";s:14:\"uc_bg_position\";s:0:\"\";s:18:\"uc_bg_preset_image\";s:0:\"\";s:18:\"uc_bg_custom_image\";s:0:\"\";s:18:\"uc_bg_image_source\";s:8:\"no-image\";s:20:\"twitter_consumer_key\";s:0:\"\";s:23:\"twitter_consumer_secret\";s:0:\"\";s:20:\"twitter_access_token\";s:0:\"\";s:27:\"twitter_access_token_secret\";s:0:\"\";s:9:\"custom_js\";s:0:\"\";s:10:\"custom_css\";s:2125:\".tp-bannershadow.tp-shadow3 {\r\ntop: 0;\r\nz-index: 99;\r\n}\r\n.rowbg{\r\n/*background-image: url(http://www.scottsdaleseville.com/wp-content/uploads/2011/11/Sbg.png); background-repeat: no-repeat; height: 600px; margin-top: -35px;\r\nbackground-position: center center;\r\nbackground-color:#000;*/\r\npadding: 2% 2%;\r\nmin-height: 100px;\r\n/*padding: 10px 0 10px;*/\r\nbackground-image: url(http://techno-sites.com/scotts/wp-content/uploads/2014/08/title2.jpg);\r\nbackground-attachment: fixed;\r\nbackground-position: left top;\r\nbackground-repeat: repeat;\r\nmargin-bottom: 0px;\r\n}\r\n#mk-sidebar .post-list-image img {\r\ndisplay: none;\r\n}\r\n#mk-sidebar .post-list-image a{\r\ncolor: #ed1c24;font-weight:normal;\r\n}\r\n.home #theme-page .mk-grid {\r\nmax-width: 1254px;\r\n/*border-right: 12px solid #B70100;\r\nborder-left: 12px solid #B70100;*/\r\n\r\nmargin:0 auto;\r\nbackground-color:#fff;}\r\n}\r\n#theme-page .theme-page-wrapper {\r\nmargin: 0px auto;\r\n}\r\n/*.home #theme-page {\r\nbackground-color: #EADBC4;\r\n}*/\r\n.home #mk-footer{background-color: #EADBC4; padding: 0px 0 0;}\r\n.home #mk-footer .mk-padding-wrapper {\r\nbackground: #fff;\r\n/*border-left: 12px solid #B70100;\r\nborder-right: 12px solid #B70100;\r\nborder-bottom: 12px solid #B70100;*/\r\n}\r\n.srp-thumbnail-box{width:100px;\r\nheight:100px;}\r\n.srp-post-title{text-transform: none !important;\r\nfont-size: 16px !important;\r\n}\r\n.srp-post-title a{color: #ed1c24 !important;}\r\n\r\n.page-id-328 #theme-page .mk-grid {\r\nmax-width: 1254px;\r\n/*border-right: 12px solid #B70100;\r\nborder-left: 12px solid #B70100;*/\r\nmargin:0 auto;\r\nbackground-color:#fff;}\r\n}\r\n.page-id-328 #mk-footer{padding: 0px 0 0;}\r\n.page-id-328 #mk-footer{background-color: #EADBC4; padding: 0px 0 0;}\r\n.page-id-328 #mk-footer .mk-padding-wrapper {\r\nbackground: #fff;\r\n/*border-left: 25px solid #B70100;\r\nborder-right: 25px solid #B70100;\r\nborder-bottom: 25px solid #B70100;*/\r\n}\r\n.page-id-328 #theme-page .theme-page-wrapper .theme-content {\r\npadding: 0 2px;\r\n}\r\n.setpadding{padding: 0 25px;}\r\n.mk-nav-responsive-link i, .mk-toolbar-resposnive-icon i {\r\ncolor: #000000;\r\n}\r\n.page-id-328 #theme-page , .home #theme-page {\r\nbackground-color: #EADBC4;\r\n}\r\n\";s:20:\"theme_import_options\";s:0:\"\";s:14:\"option_storage\";s:15:\"Jupiter_options\";s:14:\"button_clicked\";s:18:\"save_theme_options\";}", "yes");
INSERT INTO `wp_options` VALUES("242", "nav_menu_options", "a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("633", "_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a", "1407870180", "yes");
INSERT INTO `wp_options` VALUES("634", "_site_transient_poptags_40cd750bba9870f18aada2478b24840a", "a:40:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"4587\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"2848\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"2785\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"2284\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2189\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"1792\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1587\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1563\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1529\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1519\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1448\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"1411\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1350\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1209\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1153\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1121\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1044\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1001\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:3:\"995\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"823\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"811\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:3:\"798\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"793\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"789\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"730\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"693\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"691\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"661\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"638\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"618\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"609\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"607\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"601\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"593\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"587\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"546\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"544\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"543\";}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"Share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";s:3:\"536\";}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";s:3:\"534\";}}", "yes");
INSERT INTO `wp_options` VALUES("271", "revslider-latest-version", "4.5.95", "yes");
INSERT INTO `wp_options` VALUES("627", "_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109", "1407902570", "no");
INSERT INTO `wp_options` VALUES("628", "_transient_feed_mod_b9388c83948825c1edaef0d856b7b109", "1407859370", "no");
INSERT INTO `wp_options` VALUES("253", "revslider_checktables", "1", "yes");
INSERT INTO `wp_options` VALUES("254", "revslider-static-css", ".tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}", "yes");
INSERT INTO `wp_options` VALUES("255", "revslider-update-check-short", "1407859355", "yes");
INSERT INTO `wp_options` VALUES("256", "recently_activated", "a:2:{s:43:\"wp-maintenance-mode/wp-maintenance-mode.php\";i:1407333537;s:32:\"gravityforms177/gravityforms.php\";i:1407310741;}", "yes");
INSERT INTO `wp_options` VALUES("267", "wpcf7", "a:1:{s:7:\"version\";s:5:\"3.9.1\";}", "yes");
INSERT INTO `wp_options` VALUES("338", "addthis_settings", "a:2:{s:8:\"wpfooter\";b:1;s:9:\"atversion\";s:3:\"300\";}", "yes");
INSERT INTO `wp_options` VALUES("339", "widget_addthis-widget", "a:4:{i:2;a:2:{s:5:\"title\";s:13:\"Tell A Friend\";s:5:\"style\";s:13:\"large_toolbox\";}i:3;a:2:{s:5:\"title\";s:13:\"Tell A Friend\";s:5:\"style\";s:13:\"large_toolbox\";}i:4;a:2:{s:5:\"title\";s:13:\"Tell A Friend\";s:5:\"style\";s:13:\"large_toolbox\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("341", "widget_recent_posts", "a:4:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:12:\"posts_number\";i:3;s:12:\"disable_time\";i:1;s:4:\"cats\";a:1:{i:0;s:1:\"9\";}}i:3;a:4:{s:5:\"title\";s:0:\"\";s:12:\"posts_number\";i:3;s:12:\"disable_time\";i:1;s:4:\"cats\";a:1:{i:0;s:1:\"9\";}}i:4;a:4:{s:5:\"title\";s:0:\"\";s:12:\"posts_number\";i:3;s:12:\"disable_time\";i:1;s:4:\"cats\";a:1:{i:0;s:1:\"9\";}}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("345", "widget_testimonial_widget", "a:4:{i:2;a:17:{s:5:\"title\";s:12:\"Testimonials\";s:5:\"count\";i:3;s:7:\"quote_1\";s:152:\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s,\";s:9:\"company_1\";s:11:\"Lorem Ipsum\";s:10:\"position_1\";s:0:\"\";s:5:\"url_1\";s:0:\"\";s:5:\"src_1\";s:0:\"\";s:7:\"quote_2\";s:125:\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. \";s:9:\"company_2\";s:24:\"It is a long established\";s:10:\"position_2\";s:0:\"\";s:5:\"url_2\";s:0:\"\";s:5:\"src_2\";s:0:\"\";s:7:\"quote_3\";s:164:\"Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. \";s:9:\"company_3\";s:26:\"Contrary to popular belief\";s:10:\"position_3\";s:0:\"\";s:5:\"url_3\";s:0:\"\";s:5:\"src_3\";s:0:\"\";}i:3;a:17:{s:5:\"title\";s:11:\"Testmonials\";s:5:\"count\";i:3;s:7:\"quote_1\";s:152:\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s,\";s:9:\"company_1\";s:11:\"Lorem Ipsum\";s:10:\"position_1\";s:0:\"\";s:5:\"url_1\";s:0:\"\";s:5:\"src_1\";s:0:\"\";s:7:\"quote_2\";s:125:\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. \";s:9:\"company_2\";s:24:\"It is a long established\";s:10:\"position_2\";s:0:\"\";s:5:\"url_2\";s:0:\"\";s:5:\"src_2\";s:0:\"\";s:7:\"quote_3\";s:164:\"Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. \";s:9:\"company_3\";s:26:\"Contrary to popular belief\";s:10:\"position_3\";s:0:\"\";s:5:\"url_3\";s:0:\"\";s:5:\"src_3\";s:0:\"\";}i:4;a:17:{s:5:\"title\";s:12:\"Testimonials\";s:5:\"count\";i:3;s:7:\"quote_1\";s:152:\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s,\";s:9:\"company_1\";s:11:\"Lorem Ipsum\";s:10:\"position_1\";s:0:\"\";s:5:\"url_1\";s:0:\"\";s:5:\"src_1\";s:0:\"\";s:7:\"quote_2\";s:125:\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. \";s:9:\"company_2\";s:24:\"It is a long established\";s:10:\"position_2\";s:0:\"\";s:5:\"url_2\";s:0:\"\";s:5:\"src_2\";s:0:\"\";s:7:\"quote_3\";s:164:\"Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. \";s:9:\"company_3\";s:26:\"Contrary to popular belief\";s:10:\"position_3\";s:0:\"\";s:5:\"url_3\";s:0:\"\";s:5:\"src_3\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("346", "revslider-valid-notice", "false", "yes");
INSERT INTO `wp_options` VALUES("524", "_site_transient_browser_e97bf3fb6d4be0a649d1fa9714fa458f", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"36.0.1985.125\";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");
INSERT INTO `wp_options` VALUES("486", "rg_form_version", "1.7.7", "yes");
INSERT INTO `wp_options` VALUES("487", "_transient_timeout_gform_update_info", "1407395284", "no");
INSERT INTO `wp_options` VALUES("488", "_transient_gform_update_info", "a:5:{s:7:\"headers\";a:5:{s:4:\"date\";s:29:\"Wed, 06 Aug 2014 07:08:04 GMT\";s:6:\"server\";s:6:\"Apache\";s:14:\"content-length\";s:2:\"13\";s:10:\"connection\";s:5:\"close\";s:12:\"content-type\";s:9:\"text/html\";}s:4:\"body\";s:13:\"0||1.7.9||||0\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}", "no");
INSERT INTO `wp_options` VALUES("435", "srp_plugin_options", "a:6:{s:11:\"srp_version\";s:5:\"1.9.9\";s:21:\"srp_global_post_limit\";i:3;s:22:\"srp_compatibility_mode\";s:3:\"yes\";s:15:\"srp_noimage_url\";s:108:\"http://techno-sites.com/scotts/wp-content/plugins/special-recent-posts/assets/images/icons/default-thumb.gif\";s:21:\"srp_log_errors_screen\";s:2:\"no\";s:21:\"srp_disable_theme_css\";s:2:\"no\";}", "yes");
INSERT INTO `wp_options` VALUES("436", "widget_wdg_specialrecentpostsfree", "a:2:{i:2;a:35:{s:12:\"widget_title\";s:0:\"\";s:17:\"display_thumbnail\";s:3:\"yes\";s:17:\"widget_title_hide\";s:2:\"no\";s:19:\"widget_title_header\";s:2:\"h4\";s:27:\"widget_title_header_classes\";s:0:\"\";s:15:\"thumbnail_width\";s:3:\"100\";s:16:\"thumbnail_height\";s:3:\"100\";s:14:\"thumbnail_link\";s:3:\"yes\";s:18:\"thumbnail_rotation\";s:2:\"no\";s:9:\"post_type\";s:4:\"post\";s:11:\"post_status\";s:7:\"publish\";s:10:\"post_limit\";s:1:\"3\";s:17:\"post_content_type\";s:7:\"content\";s:19:\"post_content_length\";s:3:\"100\";s:24:\"post_content_length_mode\";s:5:\"chars\";s:17:\"post_title_length\";s:3:\"100\";s:22:\"post_title_length_mode\";s:9:\"fulltitle\";s:10:\"post_order\";s:4:\"DESC\";s:11:\"post_offset\";i:0;s:11:\"post_random\";s:2:\"no\";s:17:\"post_current_hide\";s:2:\"no\";s:17:\"post_content_mode\";s:12:\"titleexcerpt\";s:9:\"post_date\";s:2:\"no\";s:12:\"post_include\";s:0:\"\";s:12:\"post_exclude\";s:0:\"\";s:16:\"custom_post_type\";s:0:\"\";s:12:\"noposts_text\";s:18:\"No posts available\";s:12:\"allowed_tags\";s:0:\"\";s:12:\"string_break\";s:0:\"\";s:18:\"image_string_break\";s:0:\"\";s:17:\"string_break_link\";s:3:\"yes\";s:11:\"date_format\";s:7:\"F jS, Y\";s:16:\"category_include\";s:3:\"9, \";s:14:\"category_title\";s:2:\"no\";s:14:\"nofollow_links\";s:2:\"no\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("617", "_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1407902569", "no");
INSERT INTO `wp_options` VALUES("618", "_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, 07 Aug 2014 04:36:52 +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:42:\"http://wordpress.org/?v=4.0-beta3-20140812\";s: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: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.9.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/08/wordpress-3-9-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/08/wordpress-3-9-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:\"Wed, 06 Aug 2014 19:04: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: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=3269\";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:377:\"WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately. This release fixes a possible denial of service issue in PHP&#8217;s XML processing, reported by Nir Goldshlager of the Salesforce.com Product Security Team. It  was fixed by Michael Adams and Andrew Nacin of the WordPress [&#8230;]\";s: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:2352:\"<p>WordPress 3.9.2 is now available as a security release for all previous versions. We strongly encourage you to update your sites immediately.</p>\n<p>This release fixes a possible denial of service issue in PHP&#8217;s XML processing, reported by <a href=\"https://twitter.com/nirgoldshlager\">Nir Goldshlager</a> of the Salesforce.com Product Security Team. It  was fixed by Michael Adams and Andrew Nacin of the WordPress security team and David Rothstein of the <a href=\"https://www.drupal.org/SA-CORE-2014-004\">Drupal security team</a>. This is the first time our two projects have coordinated joint security releases.</p>\n<p>WordPress 3.9.2 also contains other security changes:</p>\n<ul>\n<li>Fixes a possible but unlikely code execution when processing widgets (WordPress is not affected by default), discovered by <a href=\"http://www.buayacorp.com/\">Alex Concha</a> of the WordPress security team.</li>\n<li>Prevents information disclosure via XML entity attacks in the external GetID3 library, reported by <a href=\"http://onsec.ru/en/\">Ivan Novikov</a> of ONSec.</li>\n<li>Adds protections against brute attacks against CSRF tokens, reported by <a href=\"http://systemoverlord.com/\">David Tomaschik</a> of the Google Security Team.</li>\n<li>Contains some additional security hardening, like preventing cross-site scripting that could be triggered only by administrators.</li>\n</ul>\n<p>We appreciated responsible disclosure of these issues directly to our security team. For more information, see the <a href=\"http://codex.wordpress.org/Version_3.9.2\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/3.9?stop_rev=29383&amp;rev=29411\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 3.9.2</a> or venture over to <strong>Dashboard → Updates</strong> and simply click &#8220;Update Now&#8221;.</p>\n<p>Sites that support automatic background updates will be updated to WordPress 3.9.2 within 12 hours. (If you are still on WordPress 3.8.3 or 3.7.3, you will also be updated to 3.8.4 or 3.7.4. We don&#8217;t support older versions, so please update to 3.9.2 for the latest and greatest.)</p>\n<p>Already testing WordPress 4.0? The third beta is <a href=\"https://wordpress.org/wordpress-4.0-beta3.zip\">now available</a> (zip) and it contains these security fixes.</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/08/wordpress-3-9-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: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:20:\"WordPress 4.0 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/07/wordpress-4-0-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/07/wordpress-4-0-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:\"Fri, 18 Jul 2014 21:15: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: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=3261\";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:374:\"WordPress 4.0 Beta 2 is now available for download and testing. This is software still in development, so we don’t recommend that you run it on a production site. To get the beta, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). For more of what’s new in version 4.0, check out [&#8230;]\";s: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:\"Helen Hou-Sandi\";s: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:1738:\"<p>WordPress 4.0 Beta 2 is now available for download and testing. This is software still in development, so we don’t recommend that you run it on a production site. To get the beta, 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-4.0-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more of what’s new in version 4.0, <a href=\"http://wordpress.org/news/2014/07/wordpress-4-0-beta-1/\">check out the Beta 1 blog post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Further refinements for the the plugin installation and media library experiences.</li>\n<li>Updated TinyMCE, which now includes better indentation for lists and the restoration of the color picker.</li>\n<li>Cookies are now tied to a session internally, so if you have trouble logging in, <a href=\"https://core.trac.wordpress.org/ticket/20276\">#20276</a> may be the culprit.</li>\n<li>Various bug fixes (there were <a href=\"https://core.trac.wordpress.org/log?rev=29228&amp;stop_rev=29060&amp;limit=200\">nearly 170 changes</a> since last week).</li>\n</ul>\n<p>If you think you’ve found a bug, 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 bug report, <a href=\"http://core.trac.wordpress.org/\">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&amp;group=component&amp;milestone=4.0\">everything we’ve fixed</a>.</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/07/wordpress-4-0-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:2;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 4.0 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/07/wordpress-4-0-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/07/wordpress-4-0-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:\"Thu, 10 Jul 2014 10:17:41 +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=3248\";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:\"WordPress 4.0 Beta 1 is now available! This software is still in development, 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 4.0, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s: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:\"Helen Hou-Sandi\";s: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:4025:\"<p>WordPress 4.0 Beta 1 is now available!</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 4.0, try the <a href=\"http://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.0-beta1.zip\">download the beta here</a> (zip).</p>\n<p>4.0 is due out next month, but to get there, we need your help testing what we&#8217;ve been working on:</p>\n<ul>\n<li><strong>Previews of <a href=\"http://codex.wordpress.org/Embeds\">embedding via URLs</a></strong> in the visual editor and the &#8220;Insert from URL&#8221; tab in the media modal. Try pasting a URL (such as a <a href=\"http://wordpress.tv/\">WordPress.tv</a> or YouTube video) onto its own line in the visual editor. (<a href=\"https://core.trac.wordpress.org/ticket/28195\">#28195</a>, <a href=\"https://core.trac.wordpress.org/ticket/15490\">#15490</a>)</li>\n<li>The <strong>Media Library</strong> now has a &#8220;grid&#8221; view in addition to the existing list view. Clicking on an item takes you into a modal where you can see a larger preview and edit information about that attachment, and you can navigate between items right from the modal without closing it. (<a href=\"https://core.trac.wordpress.org/ticket/24716\">#24716</a>)</li>\n<li>We&#8217;re freshening up the <strong>plugin install experience</strong>. You&#8217;ll see some early visual changes as well as more information when searching for plugins and viewing details. (<a href=\"https://core.trac.wordpress.org/ticket/28785\">#28785</a>, <a href=\"https://core.trac.wordpress.org/ticket/27440\">#27440</a>)</li>\n<li><strong>Selecting a language</strong> when you run the installation process. (<a href=\"https://core.trac.wordpress.org/ticket/28577\">#28577</a>)</li>\n<li>The <strong>editor</strong> intelligently resizes and its top and bottom bars pin when needed. Browsers don&#8217;t like to agree on where to put things like cursors, so if you find a bug here, please also let us know your browser and operating system. (<a href=\"https://core.trac.wordpress.org/ticket/28328\">#28328</a>)</li>\n<li>We&#8217;ve made some improvements to how your keyboard and cursor interact with <strong>TinyMCE views</strong> such as the gallery preview. Much like the editor resizing and scrolling improvements, knowing about your setup is particularly important for bug reports here. (<a href=\"https://core.trac.wordpress.org/ticket/28595\">#28595</a>)</li>\n<li><strong>Widgets in the Customizer</strong> are now loaded in a separate panel. (<a href=\"https://core.trac.wordpress.org/ticket/27406\">#27406</a>)</li>\n<li>We&#8217;ve also made some changes to some <strong>formatting</strong> functions, so if you see quotes curling in the wrong direction, please file a bug report.</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&amp;group=component&amp;milestone=4.0\">everything we’ve fixed</a> so far.</p>\n<p><strong>Developers:</strong> Never fear, we haven&#8217;t forgotten you. There&#8217;s plenty for you, too &#8211; more on that in upcoming posts. In the meantime, check out the <a href=\"http://make.wordpress.org/core/2014/07/08/customizer-improvements-in-4-0/#customizer-panels\">API for panels in the Customizer</a>.</p>\n<p>Happy testing!</p>\n<p><em>Plugins, editor</em><br />\n<em>Media, things in between</em><br />\n<em>Please help look for bugs</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/07/wordpress-4-0-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:3;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.9.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/05/wordpress-3-9-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/05/wordpress-3-9-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, 08 May 2014 18:40:58 +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=3241\";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:385:\"After three weeks and more than 9 million downloads of WordPress 3.9, we&#8217;re pleased to announce that WordPress 3.9.1 is now available. This maintenance release fixes 34 bugs in 3.9, including numerous fixes for multisite networks, customizing widgets while previewing themes, and the updated visual editor. We&#8217;ve also made some improvements to the new audio/video [&#8230;]\";s: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:3077:\"<p>After three weeks and more than 9 million downloads of <a title=\"WordPress 3.9 “Smith”\" href=\"http://wordpress.org/news/2014/04/smith/\">WordPress 3.9</a>, we&#8217;re pleased to announce that WordPress 3.9.1 is now available.</p>\n<p>This maintenance release fixes 34 bugs in 3.9, including numerous fixes for multisite networks, customizing widgets while previewing themes, and the updated visual editor. We&#8217;ve also made some improvements to the new audio/video playlists feature and made some adjustments to improve performance. For a full list of changes, consult the <a href=\"https://core.trac.wordpress.org/query?milestone=3.9.1\">list of tickets</a> and the <a href=\"https://core.trac.wordpress.org/log/branches/3.9?rev=28353&amp;stop_rev=28154\">changelog</a>.</p>\n<p>If you are one of the millions already running WordPress 3.9, we&#8217;ve started rolling out automatic background updates for 3.9.1. 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.9.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click &#8220;Update Now.&#8221;</p>\n<p>Thanks to all of these fine individuals for contributing to 3.9.1: <a href=\"http://profiles.wordpress.org/jorbin\">Aaron Jorbin</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/rzen\">Brian Richards</a>, <a href=\"http://profiles.wordpress.org/ehg\">Chris Blower</a>, <a href=\"http://profiles.wordpress.org/jupiterwise\">Corey McKrill</a>, <a href=\"http://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"http://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"http://profiles.wordpress.org/feedmeastraycat\">feedmeastraycat</a>, <a href=\"http://profiles.wordpress.org/gcorne\">Gregory Cornelius</a>, <a href=\"http://profiles.wordpress.org/helen\">Helen Hou-Sandi</a>, <a href=\"http://profiles.wordpress.org/imath\">imath</a>, <a href=\"http://profiles.wordpress.org/avryl\">Janneke Van Dorpe</a>, <a href=\"http://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"http://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"http://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/m_i_n\">m_i_n</a>, <a href=\"http://profiles.wordpress.org/clorith\">Marius Jensen</a>, <a href=\"http://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"http://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"http://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"http://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, and <a href=\"http://profiles.wordpress.org/westonruter\">Weston Ruter</a>.</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/05/wordpress-3-9-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:4;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 &#8220;Smith&#8221; 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&#8217;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 [&#8230;]\";s: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:23297:\"<p>Version 3.9 of WordPress, named &#8220;Smith&#8221; 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&#8217;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&amp;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; height: 448px; \" 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/tellyworth\">Alex Shiels</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 (@tivnet)</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/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/lkwdwrd\">Luke Woodward</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/mikemanger\">Mike Manger</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/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\">Rachel Baker</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 Laan</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/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: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: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&#8217;t tested 3.9 yet, you&#8217;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 [&#8230;]\";s: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&#8217;t tested 3.9 yet, you&#8217;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&#8217;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&#8217;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:6;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 &#8220;Quick Draft&#8221; 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&#8217;t save. While we doubt anyone was writing a novella using [&#8230;]\";s: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 &#8220;Quick Draft&#8221; 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&#8217;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&#8217;re sorry we let you down.</p>\n<p>We&#8217;ve all lost words we&#8217;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&#8217;ve made a number of improvements to features like autosaves and revisions. With revisions, an old edit can always be restored. We&#8217;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 &#8220;Publish&#8221; button at the exact moment the coffee shop Wi-Fi has a hiccup.</p>\n<p>It&#8217;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 &#8220;discarded drafts&#8221; normally get deleted after seven days, and it&#8217;s already been six days since the release. If we were able to rescue your draft, you&#8217;ll see it on the &#8220;All Posts&#8221; screen after you update to 3.8.3. (We&#8217;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&#8217;ll turn into that novella.</p>\n<p><a href=\"http://wordpress.org/download/\">Download WordPress 3.8.3</a> or click &#8220;Update Now&#8221; on Dashboard → Updates.</p>\n<p><em>This affected version 3.7.2 as well, so we&#8217;re pushing a 3.7.3 to these installs, but we&#8217;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: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: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 [&#8230;]\";s: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&#8217;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&#8217;d like to hear about them so we can make adjustments.) For more, see TinyMCE&#8217;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&#8217;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&#8217;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:8;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 [&#8230;]\";s: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&amp;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 &#8220;Update Now.&#8221;</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&#8217;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:9;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 &#8216;em out. UI refinements when editing images and when working with media in the editor. We&#8217;ve also brought [&#8230;]\";s: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&amp;stop_rev=27639&amp;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 &#8216;em out.</li>\n<li>UI refinements when editing images and when working with media in the editor. We&#8217;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&#8217;ve uploaded an audio or video file.</li>\n<li>For theme developers, we&#8217;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&#8217;re still aiming for an April release, which means the next week will be critical for identifying and squashing bugs. If you&#8217;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&#8217;t tested WordPress 3.9 yet, now is the time — and be sure to update the &#8220;tested up to&#8221; version for your plugins so they&#8217;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&#8217;s make the date official<br />\nIt&#8217;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:\"\";}}}}}}}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:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 12 Aug 2014 16:02:49 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, 07 Aug 2014 04:36:52 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20140802051528\";}", "no");
INSERT INTO `wp_options` VALUES("479", "wp-maintenance-mode", "a:21:{s:6:\"active\";i:1;s:4:\"time\";i:0;s:4:\"link\";i:0;s:7:\"support\";i:0;s:10:\"admin_link\";i:0;s:7:\"rewrite\";s:0:\"\";s:6:\"notice\";i:0;s:4:\"unit\";i:1;s:5:\"theme\";i:2;s:8:\"styleurl\";s:0:\"\";s:5:\"index\";i:0;s:5:\"title\";s:0:\"\";s:6:\"header\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:4:\"text\";s:13:\"Coming Soon..\";s:7:\"exclude\";a:1:{i:0;s:0:\"\";}s:6:\"bypass\";i:0;s:4:\"role\";a:1:{i:0;s:13:\"administrator\";}s:13:\"role_frontend\";a:1:{i:0;s:13:\"administrator\";}s:5:\"radio\";i:0;s:4:\"date\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("480", "wp-maintenance-mode-msqld", "1", "yes");
INSERT INTO `wp_options` VALUES("523", "_site_transient_timeout_browser_e97bf3fb6d4be0a649d1fa9714fa458f", "1407929244", "yes");
INSERT INTO `wp_options` VALUES("492", "lbe_background", "#000000", "yes");
INSERT INTO `wp_options` VALUES("493", "lbe_background_custom", "", "yes");
INSERT INTO `wp_options` VALUES("494", "lbe_modal", "0", "yes");
INSERT INTO `wp_options` VALUES("495", "lbe_background_opacity", "0.6", "yes");
INSERT INTO `wp_options` VALUES("496", "lbe_emergefrom", "top", "yes");
INSERT INTO `wp_options` VALUES("497", "lbe_moveduration", "800", "yes");
INSERT INTO `wp_options` VALUES("498", "lbe_animationeasing", "1", "yes");
INSERT INTO `wp_options` VALUES("499", "lbe_autoresize", "1", "yes");
INSERT INTO `wp_options` VALUES("500", "lbe_autolightboxing", "3", "yes");
INSERT INTO `wp_options` VALUES("501", "lbe_autogroup", "0", "yes");
INSERT INTO `wp_options` VALUES("502", "lbe_theme", "default", "yes");
INSERT INTO `wp_options` VALUES("503", "lbe_default_width", "", "yes");
INSERT INTO `wp_options` VALUES("504", "lbe_default_height", "", "yes");
INSERT INTO `wp_options` VALUES("505", "lbe_exec", "", "yes");
INSERT INTO `wp_options` VALUES("506", "lbe_adv_options", "", "yes");
INSERT INTO `wp_options` VALUES("507", "lbe_autogallery", "1", "yes");
INSERT INTO `wp_options` VALUES("508", "lbe_default_class", ".lightbox, .evolution", "yes");
INSERT INTO `wp_options` VALUES("509", "lbe_shortcode", "lightbox", "yes");
INSERT INTO `wp_options` VALUES("510", "lbe_jquery", "1.8.3", "yes");
INSERT INTO `wp_options` VALUES("511", "lbe_installed", "1", "yes");
INSERT INTO `wp_options` VALUES("613", "_site_transient_update_themes", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1407859400;s:7:\"checked\";a:6:{s:7:\"jupiter\";s:5:\"3.9.3\";s:12:\"twentyeleven\";s:3:\"1.3\";s:14:\"twentyfourteen\";s:3:\"1.1\";s:9:\"twentyten\";s:3:\"1.3\";s:14:\"twentythirteen\";s:3:\"1.2\";s:12:\"twentytwelve\";s:3:\"1.4\";}s:8:\"response\";a:2:{s:12:\"twentyeleven\";a:4:{s:5:\"theme\";s:12:\"twentyeleven\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:41:\"https://wordpress.org/themes/twentyeleven\";s:7:\"package\";s:58:\"https://wordpress.org/themes/download/twentyeleven.1.8.zip\";}s:9:\"twentyten\";a:4:{s:5:\"theme\";s:9:\"twentyten\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:38:\"https://wordpress.org/themes/twentyten\";s:7:\"package\";s:55:\"https://wordpress.org/themes/download/twentyten.1.6.zip\";}}s:12:\"translations\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("549", "_site_transient_update_core", "O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-3.9.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.9.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-3.9.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-3.9.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"3.9.2\";s:7:\"version\";s:5:\"3.9.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:\"last_checked\";i:1407859346;s:15:\"version_checked\";s:5:\"3.9.2\";s:12:\"translations\";a:0:{}}", "yes");

/* INSERT TABLE DATA: wp_postmeta */
INSERT INTO `wp_postmeta` VALUES("1", "2", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1076", "414", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("1077", "414", "_oembed_4c23355376c7ddcb1e7459721571fa28", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("1075", "837", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("4", "80", "_wp_attached_file", "2011/11/contentbottombg1.png");
INSERT INTO `wp_postmeta` VALUES("5", "80", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"659\";s:6:\"height\";s:2:\"33\";s:14:\"hwstring_small\";s:22:\"height=\'6\' width=\'128\'\";s:4:\"file\";s:28:\"2011/11/contentbottombg1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:27:\"contentbottombg1-150x33.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"33\";}s:6:\"medium\";a:3:{s:4:\"file\";s:27:\"contentbottombg1-300x15.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"15\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:27:\"contentbottombg1-500x25.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:2:\"25\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("6", "89", "_wp_attached_file", "2011/11/skybg1.png");
INSERT INTO `wp_postmeta` VALUES("7", "89", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:2:\"31\";s:6:\"height\";s:3:\"445\";s:14:\"hwstring_small\";s:21:\"height=\'96\' width=\'6\'\";s:4:\"file\";s:18:\"2011/11/skybg1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:17:\"skybg1-31x150.png\";s:5:\"width\";s:2:\"31\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:17:\"skybg1-20x300.png\";s:5:\"width\";s:2:\"20\";s:6:\"height\";s:3:\"300\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:17:\"skybg1-31x288.png\";s:5:\"width\";s:2:\"31\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:17:\"skybg1-31x288.png\";s:5:\"width\";s:2:\"31\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:17:\"skybg1-20x300.png\";s:5:\"width\";s:2:\"20\";s:6:\"height\";s:3:\"300\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("8", "89", "_wp_attachment_context", "custom-background");
INSERT INTO `wp_postmeta` VALUES("9", "89", "_wp_attachment_is_custom_background", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("10", "130", "_wp_attached_file", "2011/11/bannerinfo1.png");
INSERT INTO `wp_postmeta` VALUES("11", "130", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:23:\"2011/11/bannerinfo1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"bannerinfo1-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"bannerinfo1-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:23:\"bannerinfo1-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("12", "130", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("13", "130", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("14", "131", "_wp_attached_file", "2011/11/bannerinfo2.png");
INSERT INTO `wp_postmeta` VALUES("15", "131", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:23:\"2011/11/bannerinfo2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"bannerinfo2-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"bannerinfo2-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:23:\"bannerinfo2-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("16", "131", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("17", "131", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("18", "134", "_wp_attached_file", "2011/11/bannerinfo4.png");
INSERT INTO `wp_postmeta` VALUES("19", "134", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:23:\"2011/11/bannerinfo4.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"bannerinfo4-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"bannerinfo4-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:23:\"bannerinfo4-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("20", "134", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("21", "134", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("22", "135", "_wp_attached_file", "2011/11/bannerinfo11.png");
INSERT INTO `wp_postmeta` VALUES("23", "135", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:24:\"2011/11/bannerinfo11.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"bannerinfo11-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"bannerinfo11-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:24:\"bannerinfo11-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("24", "135", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("25", "135", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("26", "156", "_wp_attached_file", "2011/11/skybigbg1.png");
INSERT INTO `wp_postmeta` VALUES("27", "156", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:2:\"31\";s:6:\"height\";s:4:\"1200\";s:14:\"hwstring_small\";s:21:\"height=\'96\' width=\'2\'\";s:4:\"file\";s:21:\"2011/11/skybigbg1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"skybigbg1-31x150.png\";s:5:\"width\";s:2:\"31\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:19:\"skybigbg1-7x300.png\";s:5:\"width\";s:1:\"7\";s:6:\"height\";s:3:\"300\";}s:5:\"large\";a:3:{s:4:\"file\";s:21:\"skybigbg1-26x1024.png\";s:5:\"width\";s:2:\"26\";s:6:\"height\";s:4:\"1024\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:20:\"skybigbg1-31x288.png\";s:5:\"width\";s:2:\"31\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:20:\"skybigbg1-31x288.png\";s:5:\"width\";s:2:\"31\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:19:\"skybigbg1-7x300.png\";s:5:\"width\";s:1:\"7\";s:6:\"height\";s:3:\"300\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("28", "156", "_wp_attachment_context", "custom-background");
INSERT INTO `wp_postmeta` VALUES("29", "156", "_wp_attachment_is_custom_background", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("30", "325", "_wp_attached_file", "2011/11/bannerinfo21.png");
INSERT INTO `wp_postmeta` VALUES("31", "325", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:24:\"2011/11/bannerinfo21.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"bannerinfo21-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"bannerinfo21-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:24:\"bannerinfo21-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("32", "325", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("33", "325", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("34", "342", "_wp_attached_file", "2011/11/dataAy5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7AgrgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg.gif");
INSERT INTO `wp_postmeta` VALUES("35", "342", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"424\";s:6:\"height\";s:3:\"306\";s:14:\"hwstring_small\";s:23:\"height=\'92\' width=\'128\'\";s:4:\"file\";s:188:\"2011/11/dataAy5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7AgrgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg.gif\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:188:\"dataAy5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7AgrgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg-150x150.gif\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:188:\"dataAy5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7AgrgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg-300x216.gif\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"216\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:188:\"dataAy5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7AgrgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg-424x288.gif\";s:5:\"width\";s:3:\"424\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:188:\"dataAy5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7AgrgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg-424x288.gif\";s:5:\"width\";s:3:\"424\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:188:\"dataAy5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7AgrgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg-415x300.gif\";s:5:\"width\";s:3:\"415\";s:6:\"height\";s:3:\"300\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("36", "355", "_wp_attached_file", "2011/11/bannerdirections1.png");
INSERT INTO `wp_postmeta` VALUES("37", "355", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:29:\"2011/11/bannerdirections1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:29:\"bannerdirections1-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:28:\"bannerdirections1-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:29:\"bannerdirections1-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("38", "355", "_wp_attachment_image_alt", "Directions to Scotsdale Seville");
INSERT INTO `wp_postmeta` VALUES("39", "357", "_wp_attached_file", "2011/11/bannerdirections2.png");
INSERT INTO `wp_postmeta` VALUES("40", "357", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:29:\"2011/11/bannerdirections2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:29:\"bannerdirections2-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:28:\"bannerdirections2-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:29:\"bannerdirections2-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("41", "357", "_wp_attachment_image_alt", "directions to Scottsdale Seville");
INSERT INTO `wp_postmeta` VALUES("42", "358", "_wp_attached_file", "2011/11/bannerabout1.png");
INSERT INTO `wp_postmeta` VALUES("43", "358", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:24:\"2011/11/bannerabout1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"bannerabout1-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"bannerabout1-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:24:\"bannerabout1-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("44", "360", "_wp_attached_file", "2011/11/bannerabout2.png");
INSERT INTO `wp_postmeta` VALUES("45", "360", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:24:\"2011/11/bannerabout2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"bannerabout2-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"bannerabout2-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:24:\"bannerabout2-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("46", "362", "_wp_attached_file", "2011/11/bannerwoodwork1.png");
INSERT INTO `wp_postmeta` VALUES("47", "362", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:27:\"2011/11/bannerwoodwork1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:27:\"bannerwoodwork1-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:26:\"bannerwoodwork1-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:27:\"bannerwoodwork1-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("48", "363", "_wp_attached_file", "2011/11/bannerwildflower1.png");
INSERT INTO `wp_postmeta` VALUES("49", "363", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:29:\"2011/11/bannerwildflower1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:29:\"bannerwildflower1-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:28:\"bannerwildflower1-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:29:\"bannerwildflower1-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("50", "365", "_wp_attached_file", "2011/11/bannerdirectory1.png");
INSERT INTO `wp_postmeta` VALUES("51", "365", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:28:\"2011/11/bannerdirectory1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:28:\"bannerdirectory1-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:27:\"bannerdirectory1-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:28:\"bannerdirectory1-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("52", "367", "_wp_attached_file", "2011/11/bannerroys1.png");
INSERT INTO `wp_postmeta` VALUES("53", "367", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:23:\"2011/11/bannerroys1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"bannerroys1-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"bannerroys1-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:23:\"bannerroys1-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("54", "368", "_wp_attached_file", "2011/11/bannerroys2.png");
INSERT INTO `wp_postmeta` VALUES("55", "368", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:23:\"2011/11/bannerroys2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"bannerroys2-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"bannerroys2-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:23:\"bannerroys2-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("56", "370", "_wp_attached_file", "2011/11/bannerhome1.png");
INSERT INTO `wp_postmeta` VALUES("57", "370", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:23:\"2011/11/bannerhome1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"bannerhome1-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"bannerhome1-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:23:\"bannerhome1-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("58", "370", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("59", "370", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("60", "370", "_oembed_08cf696d54f188acc8bafb182022e9af", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("61", "374", "_wp_attached_file", "2011/11/MasterSitePlan1.jpg");
INSERT INTO `wp_postmeta` VALUES("62", "374", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:4:\"1205\";s:6:\"height\";s:3:\"771\";s:14:\"hwstring_small\";s:23:\"height=\'81\' width=\'128\'\";s:4:\"file\";s:27:\"2011/11/MasterSitePlan1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:27:\"MasterSitePlan1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:27:\"MasterSitePlan1-300x191.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"191\";}s:5:\"large\";a:3:{s:4:\"file\";s:28:\"MasterSitePlan1-1024x655.jpg\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"655\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:28:\"MasterSitePlan1-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:28:\"MasterSitePlan1-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:27:\"MasterSitePlan1-468x300.jpg\";s:5:\"width\";s:3:\"468\";s:6:\"height\";s:3:\"300\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Kevin Nelson\";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:61:\"M:Tenant Improvement832.00-Scotts SevilleMaster Site Plan Ret\";}}");
INSERT INTO `wp_postmeta` VALUES("63", "374", "_wp_attachment_image_alt", "Site Map or Directory of Scottsdale Seville Shops");
INSERT INTO `wp_postmeta` VALUES("64", "381", "_wp_attached_file", "2011/11/directory1.jpg");
INSERT INTO `wp_postmeta` VALUES("65", "381", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:4:\"2100\";s:6:\"height\";s:4:\"4800\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'42\'\";s:4:\"file\";s:22:\"2011/11/directory1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"directory1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"directory1-131x300.jpg\";s:5:\"width\";s:3:\"131\";s:6:\"height\";s:3:\"300\";}s:5:\"large\";a:3:{s:4:\"file\";s:23:\"directory1-448x1024.jpg\";s:5:\"width\";s:3:\"448\";s:6:\"height\";s:4:\"1024\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:23:\"directory1-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:23:\"directory1-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:22:\"directory1-131x300.jpg\";s:5:\"width\";s:3:\"131\";s:6:\"height\";s:3:\"300\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("66", "381", "_wp_attachment_image_alt", "directory of shops at Scottsdale Seville");
INSERT INTO `wp_postmeta` VALUES("67", "383", "_wp_attached_file", "2011/11/directory2.jpg");
INSERT INTO `wp_postmeta` VALUES("68", "383", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:4:\"2100\";s:6:\"height\";s:4:\"3288\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'61\'\";s:4:\"file\";s:22:\"2011/11/directory2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"directory2-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"directory2-191x300.jpg\";s:5:\"width\";s:3:\"191\";s:6:\"height\";s:3:\"300\";}s:5:\"large\";a:3:{s:4:\"file\";s:23:\"directory2-654x1024.jpg\";s:5:\"width\";s:3:\"654\";s:6:\"height\";s:4:\"1024\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:23:\"directory2-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:23:\"directory2-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:22:\"directory2-191x300.jpg\";s:5:\"width\";s:3:\"191\";s:6:\"height\";s:3:\"300\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("69", "384", "_wp_attached_file", "2011/11/directory3.jpg");
INSERT INTO `wp_postmeta` VALUES("70", "384", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:4:\"2100\";s:6:\"height\";s:4:\"3288\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'61\'\";s:4:\"file\";s:22:\"2011/11/directory3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"directory3-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"directory3-191x300.jpg\";s:5:\"width\";s:3:\"191\";s:6:\"height\";s:3:\"300\";}s:5:\"large\";a:3:{s:4:\"file\";s:23:\"directory3-654x1024.jpg\";s:5:\"width\";s:3:\"654\";s:6:\"height\";s:4:\"1024\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:23:\"directory3-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:23:\"directory3-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:22:\"directory3-191x300.jpg\";s:5:\"width\";s:3:\"191\";s:6:\"height\";s:3:\"300\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("71", "384", "_wp_attachment_image_alt", "direcotry of shops at Scottsdale Seville");
INSERT INTO `wp_postmeta` VALUES("72", "387", "_wp_attached_file", "2011/11/directory4.jpg");
INSERT INTO `wp_postmeta` VALUES("73", "387", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:4:\"1984\";s:6:\"height\";s:4:\"2384\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'79\'\";s:4:\"file\";s:22:\"2011/11/directory4.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"directory4-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"directory4-249x300.jpg\";s:5:\"width\";s:3:\"249\";s:6:\"height\";s:3:\"300\";}s:5:\"large\";a:3:{s:4:\"file\";s:23:\"directory4-852x1024.jpg\";s:5:\"width\";s:3:\"852\";s:6:\"height\";s:4:\"1024\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:23:\"directory4-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:23:\"directory4-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:22:\"directory4-249x300.jpg\";s:5:\"width\";s:3:\"249\";s:6:\"height\";s:3:\"300\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("74", "387", "_wp_attachment_image_alt", "directory of shops at Scottsdale Seville");
INSERT INTO `wp_postmeta` VALUES("75", "389", "_wp_attached_file", "2011/11/directory5.jpg");
INSERT INTO `wp_postmeta` VALUES("76", "389", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:4:\"1984\";s:6:\"height\";s:4:\"2384\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'79\'\";s:4:\"file\";s:22:\"2011/11/directory5.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"directory5-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"directory5-249x300.jpg\";s:5:\"width\";s:3:\"249\";s:6:\"height\";s:3:\"300\";}s:5:\"large\";a:3:{s:4:\"file\";s:23:\"directory5-852x1024.jpg\";s:5:\"width\";s:3:\"852\";s:6:\"height\";s:4:\"1024\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:23:\"directory5-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:23:\"directory5-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:22:\"directory5-249x300.jpg\";s:5:\"width\";s:3:\"249\";s:6:\"height\";s:3:\"300\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("77", "389", "_wp_attachment_image_alt", "directory of shops at the Scottsdale Seville");
INSERT INTO `wp_postmeta` VALUES("78", "414", "_wp_attached_file", "2011/11/bannerhome2.png");
INSERT INTO `wp_postmeta` VALUES("79", "414", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:23:\"2011/11/bannerhome2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"bannerhome2-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"bannerhome2-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:23:\"bannerhome2-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("80", "414", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("81", "414", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("82", "415", "_wp_attached_file", "2011/11/bannerhome3.png");
INSERT INTO `wp_postmeta` VALUES("83", "415", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:23:\"2011/11/bannerhome3.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"bannerhome3-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"bannerhome3-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:23:\"bannerhome3-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("84", "415", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("85", "415", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("86", "426", "_wp_attached_file", "2011/11/banner21cakes1.png");
INSERT INTO `wp_postmeta` VALUES("87", "426", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:26:\"2011/11/banner21cakes1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:26:\"banner21cakes1-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:25:\"banner21cakes1-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:26:\"banner21cakes1-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("88", "427", "_wp_attached_file", "2011/11/disk.png");
INSERT INTO `wp_postmeta` VALUES("89", "427", "_wp_attachment_metadata", "a:5:{s:5:\"width\";s:2:\"50\";s:6:\"height\";s:2:\"49\";s:14:\"hwstring_small\";s:22:\"height=\'49\' width=\'50\'\";s:4:\"file\";s:16:\"2011/11/disk.png\";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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("90", "432", "_wp_attached_file", "2011/11/cupcakes.jpg");
INSERT INTO `wp_postmeta` VALUES("91", "432", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"613\";s:6:\"height\";s:3:\"227\";s:14:\"hwstring_small\";s:23:\"height=\'47\' width=\'128\'\";s:4:\"file\";s:20:\"2011/11/cupcakes.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"cupcakes-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"cupcakes-300x111.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"111\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:20:\"cupcakes-500x185.jpg\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"185\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("92", "432", "_wp_attachment_image_alt", "21 cupcakes events photos");
INSERT INTO `wp_postmeta` VALUES("93", "442", "_wp_attached_file", "2011/11/skybigbg2.png");
INSERT INTO `wp_postmeta` VALUES("94", "442", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:2:\"31\";s:6:\"height\";s:4:\"1200\";s:14:\"hwstring_small\";s:21:\"height=\'96\' width=\'2\'\";s:4:\"file\";s:21:\"2011/11/skybigbg2.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"skybigbg2-31x150.png\";s:5:\"width\";s:2:\"31\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:19:\"skybigbg2-7x300.png\";s:5:\"width\";s:1:\"7\";s:6:\"height\";s:3:\"300\";}s:5:\"large\";a:3:{s:4:\"file\";s:21:\"skybigbg2-26x1024.png\";s:5:\"width\";s:2:\"26\";s:6:\"height\";s:4:\"1024\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:20:\"skybigbg2-31x288.png\";s:5:\"width\";s:2:\"31\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:20:\"skybigbg2-31x288.png\";s:5:\"width\";s:2:\"31\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:19:\"skybigbg2-7x300.png\";s:5:\"width\";s:1:\"7\";s:6:\"height\";s:3:\"300\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("95", "442", "_wp_attachment_context", "custom-background");
INSERT INTO `wp_postmeta` VALUES("96", "442", "_wp_attachment_is_custom_background", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("97", "443", "_wp_attached_file", "2011/11/skybg2.png");
INSERT INTO `wp_postmeta` VALUES("98", "443", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:2:\"31\";s:6:\"height\";s:3:\"445\";s:14:\"hwstring_small\";s:21:\"height=\'96\' width=\'6\'\";s:4:\"file\";s:18:\"2011/11/skybg2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:17:\"skybg2-31x150.png\";s:5:\"width\";s:2:\"31\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:17:\"skybg2-20x300.png\";s:5:\"width\";s:2:\"20\";s:6:\"height\";s:3:\"300\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:17:\"skybg2-31x288.png\";s:5:\"width\";s:2:\"31\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:17:\"skybg2-31x288.png\";s:5:\"width\";s:2:\"31\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:17:\"skybg2-20x300.png\";s:5:\"width\";s:2:\"20\";s:6:\"height\";s:3:\"300\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("99", "443", "_wp_attachment_context", "custom-background");
INSERT INTO `wp_postmeta` VALUES("100", "443", "_wp_attachment_is_custom_background", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("101", "452", "_wp_attached_file", "2011/11/312906_305087216187261_116187768410541_1166339_343287708_n.jpg");
INSERT INTO `wp_postmeta` VALUES("102", "452", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"742\";s:6:\"height\";s:3:\"960\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'74\'\";s:4:\"file\";s:70:\"2011/11/312906_305087216187261_116187768410541_1166339_343287708_n.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:70:\"312906_305087216187261_116187768410541_1166339_343287708_n-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:70:\"312906_305087216187261_116187768410541_1166339_343287708_n-231x300.jpg\";s:5:\"width\";s:3:\"231\";s:6:\"height\";s:3:\"300\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:70:\"312906_305087216187261_116187768410541_1166339_343287708_n-742x288.jpg\";s:5:\"width\";s:3:\"742\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:70:\"312906_305087216187261_116187768410541_1166339_343287708_n-742x288.jpg\";s:5:\"width\";s:3:\"742\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:70:\"312906_305087216187261_116187768410541_1166339_343287708_n-231x300.jpg\";s:5:\"width\";s:3:\"231\";s:6:\"height\";s:3:\"300\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("103", "452", "_wp_attachment_image_alt", "Cupcakes for K-9\'s Fundraiser");
INSERT INTO `wp_postmeta` VALUES("104", "507", "_wp_attached_file", "2011/11/directory51.jpg");
INSERT INTO `wp_postmeta` VALUES("105", "507", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:4:\"1984\";s:6:\"height\";s:4:\"2384\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'79\'\";s:4:\"file\";s:23:\"2011/11/directory51.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"directory51-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"directory51-249x300.jpg\";s:5:\"width\";s:3:\"249\";s:6:\"height\";s:3:\"300\";}s:5:\"large\";a:3:{s:4:\"file\";s:24:\"directory51-852x1024.jpg\";s:5:\"width\";s:3:\"852\";s:6:\"height\";s:4:\"1024\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:24:\"directory51-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:24:\"directory51-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:23:\"directory51-249x300.jpg\";s:5:\"width\";s:3:\"249\";s:6:\"height\";s:3:\"300\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("106", "520", "_wp_attached_file", "2011/11/21cakeslogo1.png");
INSERT INTO `wp_postmeta` VALUES("107", "520", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"345\";s:6:\"height\";s:3:\"139\";s:14:\"hwstring_small\";s:23:\"height=\'51\' width=\'128\'\";s:4:\"file\";s:24:\"2011/11/21cakeslogo1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"21cakeslogo1-150x139.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"139\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"21cakeslogo1-300x120.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"120\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("108", "520", "_wp_attachment_image_alt", "21 cakes logo");
INSERT INTO `wp_postmeta` VALUES("109", "528", "_wp_attached_file", "2011/11/20-lounge-logo.jpg");
INSERT INTO `wp_postmeta` VALUES("110", "528", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"275\";s:6:\"height\";s:3:\"232\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'113\'\";s:4:\"file\";s:26:\"2011/11/20-lounge-logo.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:26:\"20-lounge-logo-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("111", "531", "_wp_attached_file", "2011/11/20-lounge-logo1.jpg");
INSERT INTO `wp_postmeta` VALUES("112", "531", "_wp_attachment_metadata", "a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"127\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'113\'\";s:4:\"file\";s:27:\"2011/11/20-lounge-logo1.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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("113", "534", "_wp_attached_file", "2011/11/BellaBridesmaidlogo.jpg");
INSERT INTO `wp_postmeta` VALUES("114", "534", "_wp_attachment_metadata", "a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'96\'\";s:4:\"file\";s:31:\"2011/11/BellaBridesmaidlogo.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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("115", "534", "_wp_attachment_image_alt", "bella bridesmaid logo");
INSERT INTO `wp_postmeta` VALUES("116", "536", "_wp_attached_file", "2011/11/betteridge_logo2.jpg");
INSERT INTO `wp_postmeta` VALUES("117", "536", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"389\";s:6:\"height\";s:3:\"150\";s:14:\"hwstring_small\";s:23:\"height=\'49\' width=\'128\'\";s:4:\"file\";s:28:\"2011/11/betteridge_logo2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:28:\"betteridge_logo2-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:28:\"betteridge_logo2-300x115.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"115\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("118", "536", "_wp_attachment_image_alt", "betteridge jewlers logo");
INSERT INTO `wp_postmeta` VALUES("119", "550", "_wp_attached_file", "2012/08/directorymap.jpg");
INSERT INTO `wp_postmeta` VALUES("120", "550", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:4:\"1980\";s:6:\"height\";s:3:\"936\";s:14:\"hwstring_small\";s:23:\"height=\'60\' width=\'128\'\";s:4:\"file\";s:24:\"2012/08/directorymap.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"directorymap-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"directorymap-300x141.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"141\";}s:5:\"large\";a:3:{s:4:\"file\";s:25:\"directorymap-1024x484.jpg\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"484\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:25:\"directorymap-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:25:\"directorymap-1000x288.jpg\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:24:\"directorymap-500x236.jpg\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"236\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("121", "550", "_wp_attachment_image_alt", "Map Directory of Scottsdale Seville Shops");
INSERT INTO `wp_postmeta` VALUES("122", "627", "_wp_attached_file", "2013/01/header_logo.png");
INSERT INTO `wp_postmeta` VALUES("123", "627", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"445\";s:6:\"height\";s:2:\"67\";s:14:\"hwstring_small\";s:23:\"height=\'19\' width=\'128\'\";s:4:\"file\";s:23:\"2013/01/header_logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"header_logo-150x67.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"67\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"header_logo-300x45.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"45\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("124", "627", "_wp_attachment_image_alt", "merle norman logo");
INSERT INTO `wp_postmeta` VALUES("125", "658", "_wp_attached_file", "2011/11/crystalwhitecakejpg-2349427_p9-1.jpg");
INSERT INTO `wp_postmeta` VALUES("126", "658", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"759\";s:6:\"height\";s:3:\"504\";s:14:\"hwstring_small\";s:23:\"height=\'84\' width=\'128\'\";s:4:\"file\";s:44:\"2011/11/crystalwhitecakejpg-2349427_p9-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:44:\"crystalwhitecakejpg-2349427_p9-1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:44:\"crystalwhitecakejpg-2349427_p9-1-300x199.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"199\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:44:\"crystalwhitecakejpg-2349427_p9-1-759x288.jpg\";s:5:\"width\";s:3:\"759\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:44:\"crystalwhitecakejpg-2349427_p9-1-759x288.jpg\";s:5:\"width\";s:3:\"759\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:44:\"crystalwhitecakejpg-2349427_p9-1-451x300.jpg\";s:5:\"width\";s:3:\"451\";s:6:\"height\";s:3:\"300\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("127", "658", "_wp_attachment_image_alt", "21 cakes cnn top places to eat");
INSERT INTO `wp_postmeta` VALUES("128", "736", "_wp_attached_file", "2013/11/image001.png");
INSERT INTO `wp_postmeta` VALUES("129", "736", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"386\";s:6:\"height\";s:3:\"137\";s:14:\"hwstring_small\";s:23:\"height=\'45\' width=\'128\'\";s:4:\"file\";s:20:\"2013/11/image001.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"image001-150x137.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"137\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"image001-300x106.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"106\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("130", "755", "_wp_attached_file", "2014/01/Scottsdale-Grand-Opening-Poster.png");
INSERT INTO `wp_postmeta` VALUES("131", "89", "_wp_attachment_context", "custom-background");
INSERT INTO `wp_postmeta` VALUES("132", "89", "_wp_attachment_is_custom_background", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("133", "130", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("134", "130", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("135", "131", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("136", "131", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("137", "134", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("138", "134", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("139", "135", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("140", "135", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("141", "156", "_wp_attachment_context", "custom-background");
INSERT INTO `wp_postmeta` VALUES("142", "156", "_wp_attachment_is_custom_background", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("143", "325", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("144", "325", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("145", "355", "_wp_attachment_image_alt", "Directions to Scotsdale Seville");
INSERT INTO `wp_postmeta` VALUES("146", "357", "_wp_attachment_image_alt", "directions to Scottsdale Seville");
INSERT INTO `wp_postmeta` VALUES("147", "370", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("148", "370", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("149", "370", "_oembed_08cf696d54f188acc8bafb182022e9af", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("150", "374", "_wp_attachment_image_alt", "Site Map or Directory of Scottsdale Seville Shops");
INSERT INTO `wp_postmeta` VALUES("151", "381", "_wp_attachment_image_alt", "directory of shops at Scottsdale Seville");
INSERT INTO `wp_postmeta` VALUES("152", "384", "_wp_attachment_image_alt", "direcotry of shops at Scottsdale Seville");
INSERT INTO `wp_postmeta` VALUES("153", "387", "_wp_attachment_image_alt", "directory of shops at Scottsdale Seville");
INSERT INTO `wp_postmeta` VALUES("154", "389", "_wp_attachment_image_alt", "directory of shops at the Scottsdale Seville");
INSERT INTO `wp_postmeta` VALUES("155", "414", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("156", "414", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("157", "415", "_wp_attachment_context", "custom-header");
INSERT INTO `wp_postmeta` VALUES("158", "415", "_wp_attachment_is_custom_header", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("159", "432", "_wp_attachment_image_alt", "21 cupcakes events photos");
INSERT INTO `wp_postmeta` VALUES("160", "442", "_wp_attachment_context", "custom-background");
INSERT INTO `wp_postmeta` VALUES("161", "442", "_wp_attachment_is_custom_background", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("162", "443", "_wp_attachment_context", "custom-background");
INSERT INTO `wp_postmeta` VALUES("163", "443", "_wp_attachment_is_custom_background", "thirtyten");
INSERT INTO `wp_postmeta` VALUES("164", "452", "_wp_attachment_image_alt", "Cupcakes for K-9\'s Fundraiser");
INSERT INTO `wp_postmeta` VALUES("165", "520", "_wp_attachment_image_alt", "21 cakes logo");
INSERT INTO `wp_postmeta` VALUES("166", "534", "_wp_attachment_image_alt", "bella bridesmaid logo");
INSERT INTO `wp_postmeta` VALUES("167", "536", "_wp_attachment_image_alt", "betteridge jewlers logo");
INSERT INTO `wp_postmeta` VALUES("168", "550", "_wp_attachment_image_alt", "Map Directory of Scottsdale Seville Shops");
INSERT INTO `wp_postmeta` VALUES("169", "627", "_wp_attachment_image_alt", "merle norman logo");
INSERT INTO `wp_postmeta` VALUES("170", "658", "_wp_attachment_image_alt", "21 cakes cnn top places to eat");
INSERT INTO `wp_postmeta` VALUES("171", "759", "_wp_attached_file", "2014/01/image001.jpg");
INSERT INTO `wp_postmeta` VALUES("172", "759", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"344\";s:6:\"height\";s:3:\"240\";s:14:\"hwstring_small\";s:23:\"height=\'89\' width=\'128\'\";s:4:\"file\";s:20:\"2014/01/image001.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"image001-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"image001-300x209.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"209\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("173", "760", "_wp_attached_file", "2014/01/image002.png");
INSERT INTO `wp_postmeta` VALUES("174", "760", "_wp_attachment_metadata", "a:5:{s:5:\"width\";s:2:\"28\";s:6:\"height\";s:2:\"28\";s:14:\"hwstring_small\";s:22:\"height=\'28\' width=\'28\'\";s:4:\"file\";s:20:\"2014/01/image002.png\";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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("175", "761", "_wp_attached_file", "2014/01/image003.gif");
INSERT INTO `wp_postmeta` VALUES("176", "761", "_wp_attachment_metadata", "a:5:{s:5:\"width\";s:3:\"144\";s:6:\"height\";s:3:\"128\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'108\'\";s:4:\"file\";s:20:\"2014/01/image003.gif\";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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("177", "762", "_wp_attached_file", "2014/01/image004.jpg");
INSERT INTO `wp_postmeta` VALUES("178", "762", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"384\";s:6:\"height\";s:3:\"118\";s:14:\"hwstring_small\";s:23:\"height=\'39\' width=\'128\'\";s:4:\"file\";s:20:\"2014/01/image004.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"image004-150x118.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"118\";}s:6:\"medium\";a:3:{s:4:\"file\";s:19:\"image004-300x92.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"92\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("179", "763", "_wp_attached_file", "2014/01/image005.gif");
INSERT INTO `wp_postmeta` VALUES("180", "763", "_wp_attachment_metadata", "a:5:{s:5:\"width\";s:2:\"28\";s:6:\"height\";s:2:\"28\";s:14:\"hwstring_small\";s:22:\"height=\'28\' width=\'28\'\";s:4:\"file\";s:20:\"2014/01/image005.gif\";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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("181", "770", "_wp_attached_file", "2014/03/Burger21.png");
INSERT INTO `wp_postmeta` VALUES("182", "770", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"505\";s:6:\"height\";s:3:\"191\";s:14:\"hwstring_small\";s:23:\"height=\'48\' width=\'128\'\";s:4:\"file\";s:20:\"2014/03/Burger21.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"Burger21-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"Burger21-300x113.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"113\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:20:\"Burger21-500x189.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"189\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("183", "792", "_wp_attached_file", "2011/11/GHB_Mothers_Day_Event.jpg");
INSERT INTO `wp_postmeta` VALUES("184", "792", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"825\";s:6:\"height\";s:4:\"1275\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'62\'\";s:4:\"file\";s:33:\"2011/11/GHB_Mothers_Day_Event.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:33:\"GHB_Mothers_Day_Event-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:33:\"GHB_Mothers_Day_Event-194x300.jpg\";s:5:\"width\";s:3:\"194\";s:6:\"height\";s:3:\"300\";}s:5:\"large\";a:3:{s:4:\"file\";s:34:\"GHB_Mothers_Day_Event-662x1024.jpg\";s:5:\"width\";s:3:\"662\";s:6:\"height\";s:4:\"1024\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:33:\"GHB_Mothers_Day_Event-825x288.jpg\";s:5:\"width\";s:3:\"825\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:33:\"GHB_Mothers_Day_Event-825x288.jpg\";s:5:\"width\";s:3:\"825\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:33:\"GHB_Mothers_Day_Event-194x300.jpg\";s:5:\"width\";s:3:\"194\";s:6:\"height\";s:3:\"300\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("185", "806", "_wp_attached_file", "2014/04/Poster_Seville-1a.pdf");
INSERT INTO `wp_postmeta` VALUES("186", "806", "_wp_attachment_metadata", "a:0:{}");
INSERT INTO `wp_postmeta` VALUES("187", "807", "_wp_attached_file", "2014/04/wildhorsesofarizona.jpg");
INSERT INTO `wp_postmeta` VALUES("188", "807", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"880\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'76\'\";s:4:\"file\";s:31:\"2014/04/wildhorsesofarizona.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:31:\"wildhorsesofarizona-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:31:\"wildhorsesofarizona-238x300.jpg\";s:5:\"width\";s:3:\"238\";s:6:\"height\";s:3:\"300\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:31:\"wildhorsesofarizona-700x288.jpg\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:31:\"wildhorsesofarizona-700x288.jpg\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:31:\"wildhorsesofarizona-238x300.jpg\";s:5:\"width\";s:3:\"238\";s:6:\"height\";s:3:\"300\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:6:\"Kristi\";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:17:\"Poster_Seville.ai\";}}");
INSERT INTO `wp_postmeta` VALUES("189", "813", "_wp_attached_file", "2011/11/MomDay14GHB.png");
INSERT INTO `wp_postmeta` VALUES("190", "813", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"700\";s:6:\"height\";s:4:\"1082\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'62\'\";s:4:\"file\";s:23:\"2011/11/MomDay14GHB.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:23:\"MomDay14GHB-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:23:\"MomDay14GHB-194x300.png\";s:5:\"width\";s:3:\"194\";s:6:\"height\";s:3:\"300\";}s:5:\"large\";a:3:{s:4:\"file\";s:24:\"MomDay14GHB-662x1024.png\";s:5:\"width\";s:3:\"662\";s:6:\"height\";s:4:\"1024\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:23:\"MomDay14GHB-700x288.png\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"288\";}s:13:\"large-feature\";a:3:{s:4:\"file\";s:23:\"MomDay14GHB-700x288.png\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"288\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:23:\"MomDay14GHB-194x300.png\";s:5:\"width\";s:3:\"194\";s:6:\"height\";s:3:\"300\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("191", "823", "_wp_attached_file", "2014/05/logo_mail.jpg");
INSERT INTO `wp_postmeta` VALUES("192", "823", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"550\";s:6:\"height\";s:3:\"124\";s:14:\"hwstring_small\";s:23:\"height=\'28\' width=\'128\'\";s:4:\"file\";s:21:\"2014/05/logo_mail.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"logo_mail-150x124.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"124\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"logo_mail-300x67.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"67\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:21:\"logo_mail-500x112.jpg\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"112\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("193", "824", "_wp_attached_file", "2014/05/New-ScottsdaleGOEB.jpg");
INSERT INTO `wp_postmeta` VALUES("194", "824", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"231\";s:14:\"hwstring_small\";s:23:\"height=\'73\' width=\'128\'\";s:4:\"file\";s:30:\"2014/05/New-ScottsdaleGOEB.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:30:\"New-ScottsdaleGOEB-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:30:\"New-ScottsdaleGOEB-300x173.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"173\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("195", "837", "_wp_attached_file", "2011/11/betteridgejewelers.png");
INSERT INTO `wp_postmeta` VALUES("196", "837", "_wp_attachment_metadata", "a:6:{s:5:\"width\";s:3:\"940\";s:6:\"height\";s:3:\"198\";s:14:\"hwstring_small\";s:23:\"height=\'26\' width=\'128\'\";s:4:\"file\";s:30:\"2011/11/betteridgejewelers.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:30:\"betteridgejewelers-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:29:\"betteridgejewelers-300x63.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"63\";}s:13:\"small-feature\";a:3:{s:4:\"file\";s:30:\"betteridgejewelers-500x105.png\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"105\";}}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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("197", "838", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("198", "838", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("199", "16", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("200", "16", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("201", "61", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("202", "61", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("203", "61", "_thumbnail_id", "426");
INSERT INTO `wp_postmeta` VALUES("204", "76", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("205", "76", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("206", "76", "_thumbnail_id", "362");
INSERT INTO `wp_postmeta` VALUES("207", "160", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("208", "160", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("209", "162", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("210", "162", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("211", "164", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("212", "164", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("213", "164", "slide_template", "");
INSERT INTO `wp_postmeta` VALUES("214", "164", "_thumbnail_id", "837");
INSERT INTO `wp_postmeta` VALUES("215", "166", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("216", "166", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("217", "168", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("218", "168", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("219", "170", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("220", "170", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("221", "173", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("222", "173", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("223", "175", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("224", "175", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("225", "177", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("226", "177", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("227", "179", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("228", "179", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("229", "181", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("230", "181", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("231", "183", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("232", "183", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("233", "185", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("234", "185", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("235", "187", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("236", "187", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("237", "189", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("238", "189", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("239", "191", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("240", "191", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("241", "193", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("242", "193", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("243", "195", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("244", "195", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("245", "198", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("246", "198", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("247", "201", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("248", "201", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("249", "203", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("250", "203", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("251", "205", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("252", "205", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("253", "207", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("254", "207", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("255", "209", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("256", "209", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("257", "211", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("258", "211", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("259", "309", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("260", "309", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("261", "309", "_thumbnail_id", "363");
INSERT INTO `wp_postmeta` VALUES("262", "326", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("263", "326", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("264", "326", "_thumbnail_id", "368");
INSERT INTO `wp_postmeta` VALUES("265", "328", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("266", "328", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("267", "328", "_thumbnail_id", "357");
INSERT INTO `wp_postmeta` VALUES("268", "330", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("269", "330", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("270", "330", "_thumbnail_id", "360");
INSERT INTO `wp_postmeta` VALUES("271", "336", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("272", "336", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("273", "396", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("274", "396", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("275", "396", "_thumbnail_id", "368");
INSERT INTO `wp_postmeta` VALUES("276", "399", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("277", "399", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("278", "516", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("279", "516", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("280", "542", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("281", "542", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("282", "569", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("283", "569", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("284", "612", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("285", "612", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("286", "615", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("287", "615", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("288", "617", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("289", "617", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("290", "623", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("291", "623", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("292", "624", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("293", "624", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("294", "650", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("295", "650", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("296", "672", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("297", "672", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("298", "675", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("299", "675", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("300", "679", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("301", "679", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("302", "719", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("303", "719", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("304", "734", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("305", "734", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("306", "746", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("307", "746", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("308", "769", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("309", "769", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("310", "776", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("311", "776", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("312", "445", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("313", "460", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("314", "754", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("315", "758", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("316", "802", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("317", "805", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("318", "822", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("319", "839", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("320", "839", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("321", "839", "_menu_item_object_id", "61");
INSERT INTO `wp_postmeta` VALUES("322", "839", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("323", "839", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("324", "839", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("325", "839", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("326", "839", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("327", "840", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("328", "840", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("329", "840", "_menu_item_object_id", "16");
INSERT INTO `wp_postmeta` VALUES("330", "840", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("331", "840", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("332", "840", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("333", "840", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("334", "840", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("335", "841", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("336", "841", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("337", "841", "_menu_item_object_id", "76");
INSERT INTO `wp_postmeta` VALUES("338", "841", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("339", "841", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("340", "841", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("341", "841", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("342", "841", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("343", "842", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("344", "842", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("345", "842", "_menu_item_object_id", "160");
INSERT INTO `wp_postmeta` VALUES("346", "842", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("347", "842", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("348", "842", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("349", "842", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("350", "842", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("351", "843", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("352", "843", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("353", "843", "_menu_item_object_id", "173");
INSERT INTO `wp_postmeta` VALUES("354", "843", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("355", "843", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("356", "843", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("357", "843", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("358", "843", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("359", "844", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("360", "844", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("361", "844", "_menu_item_object_id", "211");
INSERT INTO `wp_postmeta` VALUES("362", "844", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("363", "844", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("364", "844", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("365", "844", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("366", "844", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("367", "845", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("368", "845", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("369", "845", "_menu_item_object_id", "179");
INSERT INTO `wp_postmeta` VALUES("370", "845", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("371", "845", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("372", "845", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("373", "845", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("374", "845", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("375", "846", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("376", "846", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("377", "846", "_menu_item_object_id", "162");
INSERT INTO `wp_postmeta` VALUES("378", "846", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("379", "846", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("380", "846", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("381", "846", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("382", "846", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("383", "847", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("384", "847", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("385", "847", "_menu_item_object_id", "181");
INSERT INTO `wp_postmeta` VALUES("386", "847", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("387", "847", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("388", "847", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("389", "847", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("390", "847", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("391", "848", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("392", "848", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("393", "848", "_menu_item_object_id", "203");
INSERT INTO `wp_postmeta` VALUES("394", "848", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("395", "848", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("396", "848", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("397", "848", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("398", "848", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("399", "849", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("400", "849", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("401", "849", "_menu_item_object_id", "164");
INSERT INTO `wp_postmeta` VALUES("402", "849", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("403", "849", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("404", "849", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("405", "849", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("406", "849", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("407", "850", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("408", "850", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("409", "850", "_menu_item_object_id", "195");
INSERT INTO `wp_postmeta` VALUES("410", "850", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("411", "850", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("412", "850", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("413", "850", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("414", "850", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("415", "851", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("416", "851", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("417", "851", "_menu_item_object_id", "207");
INSERT INTO `wp_postmeta` VALUES("418", "851", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("419", "851", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("420", "851", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("421", "851", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("422", "851", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("423", "852", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("424", "852", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("425", "852", "_menu_item_object_id", "166");
INSERT INTO `wp_postmeta` VALUES("426", "852", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("427", "852", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("428", "852", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("429", "852", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("430", "852", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("431", "853", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("432", "853", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("433", "853", "_menu_item_object_id", "185");
INSERT INTO `wp_postmeta` VALUES("434", "853", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("435", "853", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("436", "853", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("437", "853", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("438", "853", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("439", "854", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("440", "854", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("441", "854", "_menu_item_object_id", "189");
INSERT INTO `wp_postmeta` VALUES("442", "854", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("443", "854", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("444", "854", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("445", "854", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("446", "854", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("447", "855", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("448", "855", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("449", "855", "_menu_item_object_id", "183");
INSERT INTO `wp_postmeta` VALUES("450", "855", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("451", "855", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("452", "855", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("453", "855", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("454", "855", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("455", "856", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("456", "856", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("457", "856", "_menu_item_object_id", "168");
INSERT INTO `wp_postmeta` VALUES("458", "856", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("459", "856", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("460", "856", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("461", "856", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("462", "856", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("463", "857", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("464", "857", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("465", "857", "_menu_item_object_id", "309");
INSERT INTO `wp_postmeta` VALUES("466", "857", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("467", "857", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("468", "857", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("469", "857", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("470", "857", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("471", "858", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("472", "858", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("473", "858", "_menu_item_object_id", "209");
INSERT INTO `wp_postmeta` VALUES("474", "858", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("475", "858", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("476", "858", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("477", "858", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("478", "858", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("479", "859", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("480", "859", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("481", "859", "_menu_item_object_id", "205");
INSERT INTO `wp_postmeta` VALUES("482", "859", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("483", "859", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("484", "859", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("485", "859", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("486", "859", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("487", "860", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("488", "860", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("489", "860", "_menu_item_object_id", "201");
INSERT INTO `wp_postmeta` VALUES("490", "860", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("491", "860", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("492", "860", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("493", "860", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("494", "860", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("495", "861", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("496", "861", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("497", "861", "_menu_item_object_id", "170");
INSERT INTO `wp_postmeta` VALUES("498", "861", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("499", "861", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("500", "861", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("501", "861", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("502", "861", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("503", "862", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("504", "862", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("505", "862", "_menu_item_object_id", "330");
INSERT INTO `wp_postmeta` VALUES("506", "862", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("507", "862", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("508", "862", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("509", "862", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("510", "862", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("511", "863", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("512", "863", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("513", "863", "_menu_item_object_id", "328");
INSERT INTO `wp_postmeta` VALUES("514", "863", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("515", "863", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("516", "863", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("517", "863", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("518", "863", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("519", "864", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("520", "864", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("521", "864", "_menu_item_object_id", "336");
INSERT INTO `wp_postmeta` VALUES("522", "864", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("523", "864", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("524", "864", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("525", "864", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("526", "864", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("527", "865", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("528", "865", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("529", "865", "_menu_item_object_id", "396");
INSERT INTO `wp_postmeta` VALUES("530", "865", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("531", "865", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("532", "865", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("533", "865", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("534", "865", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("535", "866", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("536", "866", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("537", "866", "_menu_item_object_id", "399");
INSERT INTO `wp_postmeta` VALUES("538", "866", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("539", "866", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("540", "866", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("541", "866", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("542", "866", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("543", "867", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("544", "867", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("545", "867", "_menu_item_object_id", "198");
INSERT INTO `wp_postmeta` VALUES("546", "867", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("547", "867", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("548", "867", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("549", "867", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("550", "867", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("551", "868", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("552", "868", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("553", "868", "_menu_item_object_id", "516");
INSERT INTO `wp_postmeta` VALUES("554", "868", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("555", "868", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("556", "868", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("557", "868", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("558", "868", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("559", "869", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("560", "869", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("561", "869", "_menu_item_object_id", "623");
INSERT INTO `wp_postmeta` VALUES("562", "869", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("563", "869", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("564", "869", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("565", "869", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("566", "869", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("567", "870", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("568", "870", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("569", "870", "_menu_item_object_id", "672");
INSERT INTO `wp_postmeta` VALUES("570", "870", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("571", "870", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("572", "870", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("573", "870", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("574", "870", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("575", "871", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("576", "871", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("577", "871", "_menu_item_object_id", "675");
INSERT INTO `wp_postmeta` VALUES("578", "871", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("579", "871", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("580", "871", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("581", "871", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("582", "871", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("583", "872", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("584", "872", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("585", "872", "_menu_item_object_id", "719");
INSERT INTO `wp_postmeta` VALUES("586", "872", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("587", "872", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("588", "872", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("589", "872", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("590", "872", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("591", "873", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("592", "873", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("593", "873", "_menu_item_object_id", "734");
INSERT INTO `wp_postmeta` VALUES("594", "873", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("595", "873", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("596", "873", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("597", "873", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("598", "873", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("599", "874", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("600", "874", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("601", "874", "_menu_item_object_id", "746");
INSERT INTO `wp_postmeta` VALUES("602", "874", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("603", "874", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("604", "874", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("605", "874", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("606", "874", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("607", "875", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("608", "875", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("609", "875", "_menu_item_object_id", "769");
INSERT INTO `wp_postmeta` VALUES("610", "875", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("611", "875", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("612", "875", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("613", "875", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("614", "875", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("615", "876", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("616", "876", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("617", "876", "_menu_item_object_id", "776");
INSERT INTO `wp_postmeta` VALUES("618", "876", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("619", "876", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("620", "876", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("621", "876", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("622", "876", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("627", "18", "_wp_attached_file", "2014/02/full-slide-01.jpg");
INSERT INTO `wp_postmeta` VALUES("628", "18", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:632;s:6:\"height\";i:350;s:4:\"file\";s:25:\"2014/02/full-slide-01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"full-slide-01-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:\"full-slide-01-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:27:\"full-slide-01-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("629", "18", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("630", "19", "_wp_attached_file", "2014/02/full-slide-02.jpg");
INSERT INTO `wp_postmeta` VALUES("631", "19", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:793;s:6:\"height\";i:350;s:4:\"file\";s:25:\"2014/02/full-slide-02.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"full-slide-02-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:\"full-slide-02-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:27:\"full-slide-02-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("632", "19", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("633", "20", "_wp_attached_file", "2014/02/full-slide-03.jpg");
INSERT INTO `wp_postmeta` VALUES("634", "20", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:911;s:6:\"height\";i:350;s:4:\"file\";s:25:\"2014/02/full-slide-03.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"full-slide-03-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:\"full-slide-03-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:27:\"full-slide-03-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("635", "20", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("636", "24", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("637", "24", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("638", "24", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("639", "24", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("640", "24", "_edge_type", "image");
INSERT INTO `wp_postmeta` VALUES("641", "24", "_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("642", "24", "_video_color_overlay", "_banner_video_overlay_color");
INSERT INTO `wp_postmeta` VALUES("643", "24", "_slide_image", "http://artbees.net/themes/jupiter-one-page/wp-content/uploads/2014/02/slide031.jpg");
INSERT INTO `wp_postmeta` VALUES("644", "24", "_caption_align", "left_bottom");
INSERT INTO `wp_postmeta` VALUES("645", "24", "_caption_skin", "light");
INSERT INTO `wp_postmeta` VALUES("646", "24", "_btn_1_style", "outline");
INSERT INTO `wp_postmeta` VALUES("647", "24", "_btn_2_style", "outline");
INSERT INTO `wp_postmeta` VALUES("648", "24", "_btn_1_skin", "light");
INSERT INTO `wp_postmeta` VALUES("649", "24", "_btn_2_skin", "light");
INSERT INTO `wp_postmeta` VALUES("650", "31", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("651", "31", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("652", "31", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("653", "31", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("654", "31", "_edge_type", "image");
INSERT INTO `wp_postmeta` VALUES("655", "31", "_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("656", "31", "_video_color_overlay", "_banner_video_overlay_color");
INSERT INTO `wp_postmeta` VALUES("657", "31", "_slide_image", "http://artbees.net/themes/jupiter-one-page/wp-content/uploads/2014/02/slide021.jpg");
INSERT INTO `wp_postmeta` VALUES("658", "31", "_caption_align", "center_top");
INSERT INTO `wp_postmeta` VALUES("659", "31", "_caption_skin", "light");
INSERT INTO `wp_postmeta` VALUES("660", "31", "_btn_1_style", "outline");
INSERT INTO `wp_postmeta` VALUES("661", "31", "_btn_2_style", "outline");
INSERT INTO `wp_postmeta` VALUES("662", "31", "_btn_1_skin", "light");
INSERT INTO `wp_postmeta` VALUES("663", "31", "_btn_2_skin", "light");
INSERT INTO `wp_postmeta` VALUES("664", "32", "_wp_attached_file", "2014/02/slide021.jpg");
INSERT INTO `wp_postmeta` VALUES("665", "32", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:20:\"2014/02/slide021.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"slide021-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:\"slide021-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:22:\"slide021-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("666", "34", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("667", "34", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("668", "34", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("669", "34", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("670", "34", "_edge_type", "image");
INSERT INTO `wp_postmeta` VALUES("671", "34", "_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("672", "34", "_video_color_overlay", "_banner_video_overlay_color");
INSERT INTO `wp_postmeta` VALUES("673", "34", "_slide_image", "http://artbees.net/themes/jupiter-one-page/wp-content/uploads/2014/02/slide01.jpg");
INSERT INTO `wp_postmeta` VALUES("674", "34", "_caption_align", "right_center");
INSERT INTO `wp_postmeta` VALUES("675", "34", "_caption_skin", "light");
INSERT INTO `wp_postmeta` VALUES("676", "34", "_btn_1_style", "outline");
INSERT INTO `wp_postmeta` VALUES("677", "34", "_btn_2_style", "outline");
INSERT INTO `wp_postmeta` VALUES("678", "34", "_btn_1_skin", "light");
INSERT INTO `wp_postmeta` VALUES("679", "34", "_btn_2_skin", "light");
INSERT INTO `wp_postmeta` VALUES("680", "35", "_wp_attached_file", "2014/02/slide01.jpg");
INSERT INTO `wp_postmeta` VALUES("681", "35", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:19:\"2014/02/slide01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"slide01-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:\"slide01-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:21:\"slide01-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("682", "36", "_wp_attached_file", "2014/02/slide031.jpg");
INSERT INTO `wp_postmeta` VALUES("683", "36", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:20:\"2014/02/slide031.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"slide031-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:\"slide031-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:22:\"slide031-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("684", "40", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("685", "40", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("686", "40", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("687", "40", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("688", "40", "_edge_type", "image");
INSERT INTO `wp_postmeta` VALUES("689", "40", "_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("690", "40", "_video_color_overlay", "_banner_video_overlay_color");
INSERT INTO `wp_postmeta` VALUES("691", "40", "_bg_color", "#ef662f");
INSERT INTO `wp_postmeta` VALUES("692", "40", "_caption_align", "center_center");
INSERT INTO `wp_postmeta` VALUES("693", "40", "_caption_skin", "light");
INSERT INTO `wp_postmeta` VALUES("694", "40", "_btn_1_style", "outline");
INSERT INTO `wp_postmeta` VALUES("695", "40", "_btn_2_style", "outline");
INSERT INTO `wp_postmeta` VALUES("696", "40", "_btn_1_skin", "light");
INSERT INTO `wp_postmeta` VALUES("697", "40", "_btn_2_skin", "light");
INSERT INTO `wp_postmeta` VALUES("698", "40", "_content_width", "100");
INSERT INTO `wp_postmeta` VALUES("699", "60", "_wp_attached_file", "2014/02/divider.png");
INSERT INTO `wp_postmeta` VALUES("700", "60", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:89;s:6:\"height\";i:2;s:4:\"file\";s:19:\"2014/02/divider.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"divider-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:19:\"divider-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"divider-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("701", "879", "_wp_attached_file", "2014/02/portfolio-01.png");
INSERT INTO `wp_postmeta` VALUES("702", "879", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:750;s:6:\"height\";i:459;s:4:\"file\";s:24:\"2014/02/portfolio-01.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"portfolio-01-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:\"portfolio-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"portfolio-01-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("703", "879", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("704", "64", "_wp_attached_file", "2014/02/portfolio-02.png");
INSERT INTO `wp_postmeta` VALUES("705", "64", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:451;s:4:\"file\";s:24:\"2014/02/portfolio-02.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"portfolio-02-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:\"portfolio-02-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"portfolio-02-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("706", "64", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("707", "69", "_wp_attached_file", "2014/02/portfolio-03.png");
INSERT INTO `wp_postmeta` VALUES("708", "69", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:548;s:6:\"height\";i:407;s:4:\"file\";s:24:\"2014/02/portfolio-03.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"portfolio-03-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:\"portfolio-03-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"portfolio-03-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("709", "69", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("710", "74", "_wp_attached_file", "2014/02/07.jpg");
INSERT INTO `wp_postmeta` VALUES("711", "74", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:258;s:6:\"height\";i:258;s:4:\"file\";s:14:\"2014/02/07.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"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:14:\"07-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:16:\"07-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("712", "75", "_wp_attached_file", "2014/02/02.jpg");
INSERT INTO `wp_postmeta` VALUES("713", "75", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:258;s:6:\"height\";i:258;s:4:\"file\";s:14:\"2014/02/02.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"02-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:14:\"02-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:16:\"02-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("714", "880", "_wp_attached_file", "2014/02/13.jpg");
INSERT INTO `wp_postmeta` VALUES("715", "880", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:258;s:6:\"height\";i:258;s:4:\"file\";s:14:\"2014/02/13.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"13-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:14:\"13-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:16:\"13-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("716", "84", "_wp_attached_file", "2014/02/quote-bg-01.jpg");
INSERT INTO `wp_postmeta` VALUES("717", "84", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:830;s:4:\"file\";s:23:\"2014/02/quote-bg-01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"quote-bg-01-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:\"quote-bg-01-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:25:\"quote-bg-01-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("718", "84", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("719", "95", "_wp_attached_file", "2014/02/quote-bg-02.jpg");
INSERT INTO `wp_postmeta` VALUES("720", "95", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:830;s:4:\"file\";s:23:\"2014/02/quote-bg-02.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"quote-bg-02-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:\"quote-bg-02-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:25:\"quote-bg-02-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("721", "97", "_wp_attached_file", "2014/02/cartographer.png");
INSERT INTO `wp_postmeta` VALUES("722", "97", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:499;s:4:\"file\";s:24:\"2014/02/cartographer.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"cartographer-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:\"cartographer-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"cartographer-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("723", "881", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("1674", "961", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1675", "961", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1676", "961", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("727", "5", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("728", "5", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("729", "5", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("730", "5", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("731", "5", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("732", "5", "_layout", "full");
INSERT INTO `wp_postmeta` VALUES("733", "5", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("734", "5", "_page_disable_title", "true");
INSERT INTO `wp_postmeta` VALUES("735", "5", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("736", "5", "_header", "true");
INSERT INTO `wp_postmeta` VALUES("737", "5", "_footer", "true");
INSERT INTO `wp_postmeta` VALUES("738", "5", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("739", "5", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("740", "5", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("741", "5", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("742", "5", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("743", "5", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("744", "5", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("745", "5", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("746", "5", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("747", "5", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("748", "5", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("749", "5", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("750", "5", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("751", "5", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("752", "5", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("753", "5", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("754", "5", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("755", "5", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("756", "5", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("757", "5", "_enable_slidehsow", "true");
INSERT INTO `wp_postmeta` VALUES("758", "5", "_slideshow_source", "edge");
INSERT INTO `wp_postmeta` VALUES("759", "5", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("760", "5", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("761", "5", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("762", "5", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("763", "5", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("764", "5", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("765", "5", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("766", "5", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("767", "5", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("768", "5", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("769", "5", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("770", "5", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("771", "5", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("772", "5", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("773", "5", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("774", "5", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("775", "5", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("776", "5", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("777", "5", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("778", "5", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("779", "5", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("780", "5", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("781", "5", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("782", "5", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("783", "5", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("784", "5", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("785", "5", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("786", "5", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("787", "5", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("788", "5", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("789", "5", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("790", "5", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("791", "5", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("792", "5", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("793", "5", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("794", "5", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("795", "5", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("796", "5", "_enable_banner_video", "false");
INSERT INTO `wp_postmeta` VALUES("797", "5", "_banner_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("798", "5", "_banner_video_color_overlay", "_banner_video_overlay_color");
INSERT INTO `wp_postmeta` VALUES("799", "5", "_enable_page_gmap", "false");
INSERT INTO `wp_postmeta` VALUES("800", "5", "_gmap_height", "400");
INSERT INTO `wp_postmeta` VALUES("801", "5", "_page_gmap_zoom", "14");
INSERT INTO `wp_postmeta` VALUES("802", "5", "_enable_panControl", "true");
INSERT INTO `wp_postmeta` VALUES("803", "5", "_enable_draggable", "true");
INSERT INTO `wp_postmeta` VALUES("804", "5", "_enable_scrollwheel", "true");
INSERT INTO `wp_postmeta` VALUES("805", "5", "_enable_zoomControl", "true");
INSERT INTO `wp_postmeta` VALUES("806", "5", "_enable_mapTypeControl", "true");
INSERT INTO `wp_postmeta` VALUES("807", "5", "_enable_scaleControl", "true");
INSERT INTO `wp_postmeta` VALUES("808", "5", "_gmap_marker", "true");
INSERT INTO `wp_postmeta` VALUES("809", "5", "_disable_coloring", "false");
INSERT INTO `wp_postmeta` VALUES("810", "5", "_gmap_hue", "#ccc");
INSERT INTO `wp_postmeta` VALUES("811", "5", "_gmap_saturation", "1");
INSERT INTO `wp_postmeta` VALUES("812", "5", "_gmap_lightness", "1");
INSERT INTO `wp_postmeta` VALUES("813", "5", "_gmap_gamma", "1");
INSERT INTO `wp_postmeta` VALUES("814", "5", "enable_noti_bar", "false");
INSERT INTO `wp_postmeta` VALUES("815", "5", "noti_message", "This is advertising bar and it contains company\'s most important messages, gifts & promotions!");
INSERT INTO `wp_postmeta` VALUES("816", "5", "noti_more_text", "FIND OUR MORE");
INSERT INTO `wp_postmeta` VALUES("817", "5", "noti_more_url", "#");
INSERT INTO `wp_postmeta` VALUES("818", "5", "noti_bg_color", "#33a76a");
INSERT INTO `wp_postmeta` VALUES("819", "5", "noti_bg_image_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("820", "5", "noti_message_color", "#fff");
INSERT INTO `wp_postmeta` VALUES("821", "5", "noti_more_color", "#dcdcdc");
INSERT INTO `wp_postmeta` VALUES("822", "5", "_enable_footer_twitter", "false");
INSERT INTO `wp_postmeta` VALUES("823", "5", "_tweet_count", "3");
INSERT INTO `wp_postmeta` VALUES("824", "5", "_footer_twitter_txt_color", "light");
INSERT INTO `wp_postmeta` VALUES("825", "5", "_disable_post_lightbox", "-1");
INSERT INTO `wp_postmeta` VALUES("826", "5", "_disable_featured_image", "-1");
INSERT INTO `wp_postmeta` VALUES("827", "5", "_disable_meta", "-1");
INSERT INTO `wp_postmeta` VALUES("828", "5", "_disable_tags", "-1");
INSERT INTO `wp_postmeta` VALUES("829", "5", "_disable_related_posts", "-1");
INSERT INTO `wp_postmeta` VALUES("830", "5", "_disable_about_author", "-1");
INSERT INTO `wp_postmeta` VALUES("831", "5", "_portfolio_featured_image", "-1");
INSERT INTO `wp_postmeta` VALUES("832", "5", "_portfolio_similar", "-1");
INSERT INTO `wp_postmeta` VALUES("833", "5", "_edge_items", "a:3:{i:0;s:2:\"24\";i:1;s:2:\"31\";i:2;s:2:\"34\";}");
INSERT INTO `wp_postmeta` VALUES("1257", "16", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("1256", "16", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("1255", "16", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("1254", "16", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1253", "16", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("1252", "16", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("1251", "16", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1250", "16", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("1249", "16", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("1248", "16", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("1247", "16", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("1246", "16", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1245", "16", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1244", "16", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("1243", "16", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1242", "16", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("1241", "16", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("1240", "16", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1239", "16", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1238", "16", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("1237", "16", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("1236", "16", "_edge_items", "a:3:{i:0;s:2:\"24\";i:1;s:2:\"31\";i:2;s:2:\"34\";}");
INSERT INTO `wp_postmeta` VALUES("1235", "16", "_slideshow_source", "revslider");
INSERT INTO `wp_postmeta` VALUES("1234", "16", "_enable_slidehsow", "true");
INSERT INTO `wp_postmeta` VALUES("1233", "16", "_banner_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("1232", "16", "_enable_banner_video", "false");
INSERT INTO `wp_postmeta` VALUES("1231", "16", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("1230", "16", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("1229", "16", "_padding", "false");
INSERT INTO `wp_postmeta` VALUES("1228", "16", "_layout", "full");
INSERT INTO `wp_postmeta` VALUES("1227", "16", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1226", "16", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("1225", "16", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("1224", "16", "_edit_lock", "1407333320:1");
INSERT INTO `wp_postmeta` VALUES("1673", "961", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1672", "961", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1671", "961", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("1670", "961", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("1669", "961", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("1668", "961", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1667", "961", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1666", "961", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1665", "961", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("1664", "961", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1663", "961", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1662", "961", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1661", "961", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("1660", "961", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("1659", "961", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("1658", "961", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("1657", "961", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1656", "961", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("1655", "961", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("1654", "961", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1653", "961", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("1652", "961", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("1651", "961", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("1650", "961", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("1649", "961", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1648", "961", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1647", "961", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("1646", "961", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1645", "961", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("1644", "961", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("1643", "961", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1642", "961", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1641", "961", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("1640", "961", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("1639", "961", "_rev_slider_source", "1");
INSERT INTO `wp_postmeta` VALUES("1638", "961", "_slideshow_source", "layerslider");
INSERT INTO `wp_postmeta` VALUES("1637", "961", "_enable_slidehsow", "false");
INSERT INTO `wp_postmeta` VALUES("1636", "961", "_disable_comments", "true");
INSERT INTO `wp_postmeta` VALUES("1635", "961", "_disable_about_author", "true");
INSERT INTO `wp_postmeta` VALUES("1634", "961", "_disable_related_posts", "true");
INSERT INTO `wp_postmeta` VALUES("1633", "961", "_disable_tags", "true");
INSERT INTO `wp_postmeta` VALUES("1632", "961", "_disable_meta", "true");
INSERT INTO `wp_postmeta` VALUES("1631", "961", "_disable_featured_image", "true");
INSERT INTO `wp_postmeta` VALUES("1630", "961", "_single_video_site", "youtube");
INSERT INTO `wp_postmeta` VALUES("1629", "961", "_classic_orientation", "landscape");
INSERT INTO `wp_postmeta` VALUES("1628", "961", "_single_post_type", "image");
INSERT INTO `wp_postmeta` VALUES("1627", "961", "_disable_post_lightbox", "true");
INSERT INTO `wp_postmeta` VALUES("1626", "961", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("1625", "961", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("1624", "961", "_padding", "false");
INSERT INTO `wp_postmeta` VALUES("1622", "961", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1623", "961", "_layout", "right");
INSERT INTO `wp_postmeta` VALUES("1621", "961", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1620", "961", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("1619", "961", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("1696", "961", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("1697", "396", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("1616", "961", "_thumbnail_id", "962");
INSERT INTO `wp_postmeta` VALUES("1615", "962", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:742;s:6:\"height\";i:960;s:4:\"file\";s:70:\"2014/08/312906_305087216187261_116187768410541_1166339_343287708_n.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"312906_305087216187261_116187768410541_1166339_343287708_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:70:\"312906_305087216187261_116187768410541_1166339_343287708_n-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:72:\"312906_305087216187261_116187768410541_1166339_343287708_n-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1614", "962", "_wp_attached_file", "2014/08/312906_305087216187261_116187768410541_1166339_343287708_n.jpg");
INSERT INTO `wp_postmeta` VALUES("1612", "961", "_edit_lock", "1407134623:1");
INSERT INTO `wp_postmeta` VALUES("1613", "961", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1000", "62", "_btn_2_skin", "light");
INSERT INTO `wp_postmeta` VALUES("1001", "62", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1002", "62", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("1003", "62", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("1004", "62", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1005", "62", "_edge_type", "image");
INSERT INTO `wp_postmeta` VALUES("1006", "62", "_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("1007", "62", "_video_color_overlay", "_banner_video_overlay_color");
INSERT INTO `wp_postmeta` VALUES("1008", "62", "_bg_color", "#245f8c");
INSERT INTO `wp_postmeta` VALUES("1009", "62", "_caption_align", "center_center");
INSERT INTO `wp_postmeta` VALUES("1010", "62", "_caption_skin", "light");
INSERT INTO `wp_postmeta` VALUES("1011", "62", "_btn_1_style", "outline");
INSERT INTO `wp_postmeta` VALUES("1012", "62", "_btn_2_style", "outline");
INSERT INTO `wp_postmeta` VALUES("1013", "62", "_btn_1_skin", "light");
INSERT INTO `wp_postmeta` VALUES("1014", "62", "_content_width", "100");
INSERT INTO `wp_postmeta` VALUES("1015", "66", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1016", "66", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("1017", "66", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("1018", "66", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1019", "66", "_edge_type", "image");
INSERT INTO `wp_postmeta` VALUES("1020", "66", "_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("1021", "66", "_video_color_overlay", "_banner_video_overlay_color");
INSERT INTO `wp_postmeta` VALUES("1022", "66", "_bg_color", "#00bac7");
INSERT INTO `wp_postmeta` VALUES("1023", "66", "_caption_align", "center_center");
INSERT INTO `wp_postmeta` VALUES("1024", "66", "_caption_skin", "light");
INSERT INTO `wp_postmeta` VALUES("1025", "66", "_btn_1_style", "outline");
INSERT INTO `wp_postmeta` VALUES("1026", "66", "_btn_2_style", "outline");
INSERT INTO `wp_postmeta` VALUES("1027", "66", "_btn_1_skin", "light");
INSERT INTO `wp_postmeta` VALUES("1028", "66", "_btn_2_skin", "light");
INSERT INTO `wp_postmeta` VALUES("1029", "66", "_dp_original", "62");
INSERT INTO `wp_postmeta` VALUES("1030", "66", "_content_width", "100");
INSERT INTO `wp_postmeta` VALUES("1031", "66", "_oembed_33ffae957028df4c557bc3ef216818be", "<iframe src=\"//player.vimeo.com/video/63528500\" width=\"1140\" height=\"641\" frameborder=\"0\" title=\"Shave it\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>");
INSERT INTO `wp_postmeta` VALUES("1032", "68", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1033", "68", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("1034", "68", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("1035", "68", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1036", "68", "_edge_type", "image");
INSERT INTO `wp_postmeta` VALUES("1037", "68", "_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("1038", "68", "_video_color_overlay", "_banner_video_overlay_color");
INSERT INTO `wp_postmeta` VALUES("1039", "68", "_bg_color", "#bdc226");
INSERT INTO `wp_postmeta` VALUES("1040", "68", "_caption_align", "center_center");
INSERT INTO `wp_postmeta` VALUES("1041", "68", "_caption_skin", "light");
INSERT INTO `wp_postmeta` VALUES("1042", "68", "_btn_1_style", "outline");
INSERT INTO `wp_postmeta` VALUES("1043", "68", "_btn_2_style", "outline");
INSERT INTO `wp_postmeta` VALUES("1044", "68", "_btn_1_skin", "light");
INSERT INTO `wp_postmeta` VALUES("1045", "68", "_btn_2_skin", "light");
INSERT INTO `wp_postmeta` VALUES("1046", "68", "_dp_original", "40");
INSERT INTO `wp_postmeta` VALUES("1047", "68", "_content_width", "100");
INSERT INTO `wp_postmeta` VALUES("1048", "73", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1049", "73", "_thumbnail_id", "74");
INSERT INTO `wp_postmeta` VALUES("1050", "73", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1051", "73", "_position", "Art director");
INSERT INTO `wp_postmeta` VALUES("1052", "73", "_desc", "Ut elementum adipiscing elit quis viverra. Quisque eu ipsum in justo consectetur consequat. Proin malesuada lacus eget arcu dignissim interdum. Quisque est quam, vulputate ac porta eu, imperdiet non nisl. Praesent sapien tortor, blandit sed tempor ut, cursus eleifend nunc. Proin dictum hendrerit mi, vitae tempor tortor dapibus non.");
INSERT INTO `wp_postmeta` VALUES("1053", "73", "_email", "#");
INSERT INTO `wp_postmeta` VALUES("1054", "73", "_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("1055", "73", "_googleplus", "#");
INSERT INTO `wp_postmeta` VALUES("1056", "73", "featured", "-1");
INSERT INTO `wp_postmeta` VALUES("1057", "77", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1058", "77", "_thumbnail_id", "75");
INSERT INTO `wp_postmeta` VALUES("1059", "77", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1060", "77", "_position", "CEO");
INSERT INTO `wp_postmeta` VALUES("1061", "77", "_desc", "Ut elementum adipiscing elit quis viverra. Quisque eu ipsum in justo consectetur consequat. Proin malesuada lacus eget arcu dignissim interdum. Quisque est quam, vulputate ac porta eu, imperdiet non nisl. Praesent sapien tortor, blandit sed tempor ut, cursus eleifend nunc. Proin dictum hendrerit mi, vitae tempor tortor dapibus non.");
INSERT INTO `wp_postmeta` VALUES("1062", "77", "featured", "-1");
INSERT INTO `wp_postmeta` VALUES("1063", "77", "_email", "#");
INSERT INTO `wp_postmeta` VALUES("1064", "77", "_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("1065", "77", "_linkedin", "#");
INSERT INTO `wp_postmeta` VALUES("1066", "78", "_edit_last", "2");
INSERT INTO `wp_postmeta` VALUES("1067", "78", "_thumbnail_id", "880");
INSERT INTO `wp_postmeta` VALUES("1068", "78", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1069", "78", "_position", "Marketing");
INSERT INTO `wp_postmeta` VALUES("1070", "78", "_desc", "Ut elementum adipiscing elit quis viverra. Quisque eu ipsum in justo consectetur consequat. Proin malesuada lacus eget arcu dignissim interdum. Quisque est quam, vulputate ac porta eu, imperdiet non nisl. Praesent sapien tortor, blandit sed tempor ut, cursus eleifend nunc. Proin dictum hendrerit mi, vitae tempor tortor dapibus non.");
INSERT INTO `wp_postmeta` VALUES("1071", "78", "_email", "#");
INSERT INTO `wp_postmeta` VALUES("1072", "78", "_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("1073", "78", "_linkedin", "#");
INSERT INTO `wp_postmeta` VALUES("1074", "78", "featured", "-1");
INSERT INTO `wp_postmeta` VALUES("1078", "1", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("1079", "822", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("1080", "802", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("1081", "805", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("1082", "758", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("1083", "754", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("1084", "445", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("1085", "5", "_edit_lock", "1406964767:1");
INSERT INTO `wp_postmeta` VALUES("1086", "889", "_edit_lock", "1406973350:1");
INSERT INTO `wp_postmeta` VALUES("1087", "889", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1088", "889", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1089", "889", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("1090", "889", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("1091", "889", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1092", "889", "_layout", "right");
INSERT INTO `wp_postmeta` VALUES("1093", "889", "_padding", "false");
INSERT INTO `wp_postmeta` VALUES("1094", "889", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("1095", "889", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("1096", "889", "_enable_banner_video", "false");
INSERT INTO `wp_postmeta` VALUES("1097", "889", "_banner_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("1098", "889", "_enable_slidehsow", "false");
INSERT INTO `wp_postmeta` VALUES("1099", "889", "_slideshow_source", "layerslider");
INSERT INTO `wp_postmeta` VALUES("1100", "889", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("1101", "889", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("1102", "889", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1103", "889", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1104", "889", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("1105", "889", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("1106", "889", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1107", "889", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("1108", "889", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1109", "889", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1110", "889", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("1111", "889", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("1112", "889", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("1113", "889", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("1114", "889", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1115", "889", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("1116", "889", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("1117", "889", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1118", "889", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("1119", "889", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("1120", "889", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("1121", "889", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("1122", "889", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1123", "889", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1124", "889", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1125", "889", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("1126", "889", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1127", "889", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1128", "889", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1129", "889", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("1130", "889", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("1131", "889", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("1132", "889", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1133", "889", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1134", "889", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1135", "889", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1136", "889", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1137", "889", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("1138", "889", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("1139", "889", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("1140", "889", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("1141", "889", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1142", "889", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1143", "889", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1144", "889", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1145", "889", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1146", "889", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1147", "889", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1148", "889", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1149", "889", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1150", "889", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1151", "889", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1152", "889", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1153", "889", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1154", "889", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1155", "889", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1156", "891", "_wp_attached_file", "2014/08/logo-2.png");
INSERT INTO `wp_postmeta` VALUES("1157", "891", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:320;s:6:\"height\";i:143;s:4:\"file\";s:18:\"2014/08/logo-2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logo-2-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:18:\"logo-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"logo-2-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1158", "892", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1159", "892", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("1160", "892", "_menu_item_object_id", "16");
INSERT INTO `wp_postmeta` VALUES("1161", "892", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1162", "892", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1163", "892", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1164", "892", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1165", "892", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1218", "892", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("1167", "892", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("1168", "893", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1169", "893", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("1170", "893", "_menu_item_object_id", "76");
INSERT INTO `wp_postmeta` VALUES("1171", "893", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1172", "893", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1173", "893", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1174", "893", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1175", "893", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1219", "893", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("1177", "893", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2761", "1063", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:16:\"2014/08/test.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"test-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:16:\"test-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"test-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2760", "1063", "_wp_attached_file", "2014/08/test.png");
INSERT INTO `wp_postmeta` VALUES("1188", "895", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1189", "895", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("1190", "895", "_menu_item_object_id", "399");
INSERT INTO `wp_postmeta` VALUES("1191", "895", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1192", "895", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1193", "895", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1194", "895", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1195", "895", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1221", "895", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("1197", "895", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("1198", "896", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1199", "896", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("1200", "896", "_menu_item_object_id", "396");
INSERT INTO `wp_postmeta` VALUES("1201", "896", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1202", "896", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1203", "896", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1204", "896", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1205", "896", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1222", "896", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("1207", "896", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2838", "1114", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:14:\"2014/08/a1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"a1-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:14:\"a1-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:16:\"a1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2837", "1114", "_wp_attached_file", "2014/08/a1.jpg");
INSERT INTO `wp_postmeta` VALUES("2836", "1112", "_edit_lock", "1407325934:1");
INSERT INTO `wp_postmeta` VALUES("1258", "16", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("1259", "16", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1260", "16", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1261", "16", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1262", "16", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("1263", "16", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1264", "16", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1265", "16", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1266", "16", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("1267", "16", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("1268", "16", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("1269", "16", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1270", "16", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1271", "16", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1272", "16", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1273", "16", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1274", "16", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("1275", "16", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("1276", "16", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("1277", "16", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("1278", "16", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1279", "16", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1280", "16", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1281", "16", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1282", "16", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1283", "16", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1284", "16", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1285", "16", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1286", "16", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1287", "16", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1288", "16", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1289", "16", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1290", "16", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1291", "16", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1292", "16", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1296", "900", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:770;s:6:\"height\";i:360;s:4:\"file\";s:16:\"2014/08/blue.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"blue-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:16:\"blue-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:18:\"blue-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1295", "900", "_wp_attached_file", "2014/08/blue.jpg");
INSERT INTO `wp_postmeta` VALUES("1297", "901", "_wp_attached_file", "2014/08/purple1.jpg");
INSERT INTO `wp_postmeta` VALUES("1298", "901", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:770;s:6:\"height\";i:360;s:4:\"file\";s:19:\"2014/08/purple1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"purple1-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:\"purple1-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:21:\"purple1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1299", "902", "_wp_attached_file", "2014/08/red.jpg");
INSERT INTO `wp_postmeta` VALUES("1300", "902", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:770;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2014/08/red.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"red-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:15:\"red-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:17:\"red-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1301", "16", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1302", "16", "_rev_slider_source", "1");
INSERT INTO `wp_postmeta` VALUES("1303", "904", "_wp_attached_file", "2011/11/Sbg.png");
INSERT INTO `wp_postmeta` VALUES("1304", "904", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2011/11/Sbg.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"Sbg-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:\"Sbg-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"Sbg-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1305", "76", "_edit_lock", "1407223079:1");
INSERT INTO `wp_postmeta` VALUES("1306", "76", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("1307", "76", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("1308", "76", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1309", "76", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1310", "76", "_layout", "full");
INSERT INTO `wp_postmeta` VALUES("1311", "76", "_padding", "false");
INSERT INTO `wp_postmeta` VALUES("1312", "76", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("1313", "76", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("1314", "76", "_enable_banner_video", "false");
INSERT INTO `wp_postmeta` VALUES("1315", "76", "_banner_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("1316", "76", "_enable_slidehsow", "false");
INSERT INTO `wp_postmeta` VALUES("1317", "76", "_slideshow_source", "layerslider");
INSERT INTO `wp_postmeta` VALUES("1318", "76", "_rev_slider_source", "1");
INSERT INTO `wp_postmeta` VALUES("1319", "76", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("1320", "76", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("1321", "76", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1322", "76", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1323", "76", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("1324", "76", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("1325", "76", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1326", "76", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("1327", "76", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1328", "76", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1329", "76", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("1330", "76", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("1331", "76", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("1332", "76", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("1333", "76", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1334", "76", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("1335", "76", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("1336", "76", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1337", "76", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("1338", "76", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("1339", "76", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("1340", "76", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("1341", "76", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1342", "76", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1343", "76", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1344", "76", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("1345", "76", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1346", "76", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1347", "76", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1348", "76", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("1349", "76", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("1350", "76", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("1351", "76", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1352", "76", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1353", "76", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1354", "76", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1355", "76", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1356", "76", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("1357", "76", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("1358", "76", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("1359", "76", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("1360", "76", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1361", "76", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1362", "76", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1363", "76", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1364", "76", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1365", "76", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1366", "76", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1367", "76", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1368", "76", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1369", "76", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1370", "76", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1371", "76", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1372", "76", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1373", "76", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1374", "76", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1375", "328", "_edit_lock", "1407242205:1");
INSERT INTO `wp_postmeta` VALUES("1376", "328", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("1377", "328", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("1378", "328", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1379", "328", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1380", "328", "_layout", "full");
INSERT INTO `wp_postmeta` VALUES("1381", "328", "_padding", "false");
INSERT INTO `wp_postmeta` VALUES("1382", "328", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("1383", "328", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("1384", "328", "_enable_banner_video", "false");
INSERT INTO `wp_postmeta` VALUES("1385", "328", "_banner_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("1386", "328", "_enable_slidehsow", "true");
INSERT INTO `wp_postmeta` VALUES("1387", "328", "_slideshow_source", "revslider");
INSERT INTO `wp_postmeta` VALUES("1388", "328", "_rev_slider_source", "1");
INSERT INTO `wp_postmeta` VALUES("1389", "328", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("1390", "328", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("1391", "328", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1392", "328", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1393", "328", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("1394", "328", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("1395", "328", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1396", "328", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("1397", "328", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1398", "328", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1399", "328", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("1400", "328", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("1401", "328", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("1402", "328", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("1403", "328", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1404", "328", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("1405", "328", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("1406", "328", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1407", "328", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("1408", "328", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("1409", "328", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("1410", "328", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("1411", "328", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1412", "328", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1413", "328", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1414", "328", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("1415", "328", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1416", "328", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1417", "328", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1418", "328", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("1419", "328", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("1420", "328", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("1421", "328", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1422", "328", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1423", "328", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1424", "328", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1425", "328", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1426", "328", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("1427", "328", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("1428", "328", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("1429", "328", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("1430", "328", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1431", "328", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1432", "328", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1433", "328", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1434", "328", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1435", "328", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1436", "328", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1437", "328", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1438", "328", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1439", "328", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1440", "328", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1441", "328", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1442", "328", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1443", "328", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1444", "328", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1445", "399", "_edit_lock", "1406973210:1");
INSERT INTO `wp_postmeta` VALUES("1446", "936", "_wp_attached_file", "2011/11/cnniReport.png");
INSERT INTO `wp_postmeta` VALUES("1447", "936", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:205;s:6:\"height\";i:46;s:4:\"file\";s:22:\"2011/11/cnniReport.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cnniReport-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:22:\"cnniReport-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"cnniReport-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1448", "937", "_wp_attached_file", "2011/11/cnniReport1.png");
INSERT INTO `wp_postmeta` VALUES("1449", "937", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:205;s:6:\"height\";i:46;s:4:\"file\";s:23:\"2011/11/cnniReport1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"cnniReport1-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:\"cnniReport1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"cnniReport1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1450", "399", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("1451", "399", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("1452", "399", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1453", "399", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1454", "399", "_layout", "right");
INSERT INTO `wp_postmeta` VALUES("1455", "399", "_padding", "false");
INSERT INTO `wp_postmeta` VALUES("1456", "399", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("1457", "399", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("1458", "399", "_enable_banner_video", "false");
INSERT INTO `wp_postmeta` VALUES("1459", "399", "_banner_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("1460", "399", "_enable_slidehsow", "false");
INSERT INTO `wp_postmeta` VALUES("1461", "399", "_slideshow_source", "layerslider");
INSERT INTO `wp_postmeta` VALUES("1462", "399", "_rev_slider_source", "1");
INSERT INTO `wp_postmeta` VALUES("1463", "399", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("1464", "399", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("1465", "399", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1466", "399", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1467", "399", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("1468", "399", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("1469", "399", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1470", "399", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("1471", "399", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1472", "399", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1473", "399", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("1474", "399", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("1475", "399", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("1476", "399", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("1477", "399", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1478", "399", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("1479", "399", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("1480", "399", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1481", "399", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("1482", "399", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("1483", "399", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("1484", "399", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("1485", "399", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1486", "399", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1487", "399", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1488", "399", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("1489", "399", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1490", "399", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1491", "399", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1492", "399", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("1493", "399", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("1494", "399", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("1495", "399", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1496", "399", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1497", "399", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1498", "399", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1499", "399", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1500", "399", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("1501", "399", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("1502", "399", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("1503", "399", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("1504", "399", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1505", "399", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1506", "399", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1507", "399", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1508", "399", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1509", "399", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1510", "399", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1511", "399", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1512", "399", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1513", "399", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1514", "399", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1515", "399", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1516", "399", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1517", "399", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1518", "399", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1519", "940", "_wp_attached_file", "2011/11/crystalwhitecakejpg-2349427_p9-11.jpg");
INSERT INTO `wp_postmeta` VALUES("1520", "940", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:759;s:6:\"height\";i:504;s:4:\"file\";s:45:\"2011/11/crystalwhitecakejpg-2349427_p9-11.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"crystalwhitecakejpg-2349427_p9-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:45:\"crystalwhitecakejpg-2349427_p9-11-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:\"crystalwhitecakejpg-2349427_p9-11-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1521", "943", "_wp_attached_file", "2011/11/ireport_travelleisure.gray_.png");
INSERT INTO `wp_postmeta` VALUES("1522", "943", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:176;s:6:\"height\";i:28;s:4:\"file\";s:39:\"2011/11/ireport_travelleisure.gray_.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"ireport_travelleisure.gray_-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:39:\"ireport_travelleisure.gray_-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"ireport_travelleisure.gray_-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1523", "396", "_edit_lock", "1407134870:1");
INSERT INTO `wp_postmeta` VALUES("1524", "330", "_edit_lock", "1407242201:1");
INSERT INTO `wp_postmeta` VALUES("1525", "948", "_form", "<p>Your Name (required)<br />\n    [text* your-name] </p>\n\n<p>Your Email (required)<br />\n    [email* your-email] </p>\n\n<p>Subject<br />\n    [text your-subject] </p>\n\n<p>Your Message<br />\n    [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>");
INSERT INTO `wp_postmeta` VALUES("1526", "948", "_mail", "a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:26:\"[your-name] <[your-email]>\";s:4:\"body\";s:184:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on techno-sites.com (http://techno-sites.com/scotts)\";s:9:\"recipient\";s:20:\"technosites@live.com\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wp_postmeta` VALUES("1527", "948", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:26:\"[your-name] <[your-email]>\";s:4:\"body\";s:126:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on techno-sites.com (http://techno-sites.com/scotts)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}");
INSERT INTO `wp_postmeta` VALUES("1528", "948", "_messages", "a:6:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:31:\"Please fill the required field.\";}");
INSERT INTO `wp_postmeta` VALUES("1529", "948", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("1530", "948", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("1531", "330", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("1532", "330", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("1533", "330", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1534", "330", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1535", "330", "_layout", "full");
INSERT INTO `wp_postmeta` VALUES("1536", "330", "_padding", "false");
INSERT INTO `wp_postmeta` VALUES("1537", "330", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("1538", "330", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("1539", "330", "_enable_banner_video", "false");
INSERT INTO `wp_postmeta` VALUES("1540", "330", "_banner_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("1541", "330", "_enable_slidehsow", "false");
INSERT INTO `wp_postmeta` VALUES("1542", "330", "_slideshow_source", "layerslider");
INSERT INTO `wp_postmeta` VALUES("1543", "330", "_rev_slider_source", "1");
INSERT INTO `wp_postmeta` VALUES("1544", "330", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("1545", "330", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("1546", "330", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1547", "330", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1548", "330", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("1549", "330", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("1550", "330", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1551", "330", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("1552", "330", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1553", "330", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1554", "330", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("1555", "330", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("1556", "330", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("1557", "330", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("1558", "330", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1559", "330", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("1560", "330", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("1561", "330", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1562", "330", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("1563", "330", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("1564", "330", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("1565", "330", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("1566", "330", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1567", "330", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1568", "330", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1569", "330", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("1570", "330", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1571", "330", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1572", "330", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1573", "330", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("1574", "330", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("1575", "330", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("1576", "330", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1577", "330", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1578", "330", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1579", "330", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1580", "330", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1581", "330", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("1582", "330", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("1583", "330", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("1584", "330", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("1585", "330", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1586", "330", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1587", "330", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1588", "330", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1589", "330", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1590", "330", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1591", "330", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1592", "330", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1593", "330", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1594", "330", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1595", "330", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1596", "330", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1597", "330", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1598", "330", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1599", "330", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1600", "955", "_wp_attached_file", "2014/08/palmumbrellagreen3.png");
INSERT INTO `wp_postmeta` VALUES("1601", "955", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1224;s:6:\"height\";i:866;s:4:\"file\";s:30:\"2014/08/palmumbrellagreen3.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"palmumbrellagreen3-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:30:\"palmumbrellagreen3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"palmumbrellagreen3-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1602", "956", "_wp_attached_file", "2014/08/bg2.png");
INSERT INTO `wp_postmeta` VALUES("1603", "956", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1224;s:6:\"height\";i:246;s:4:\"file\";s:15:\"2014/08/bg2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg2-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:\"bg2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"bg2-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1604", "957", "_wp_attached_file", "2014/08/bg3.png");
INSERT INTO `wp_postmeta` VALUES("1605", "957", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1224;s:6:\"height\";i:220;s:4:\"file\";s:15:\"2014/08/bg3.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg3-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:\"bg3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"bg3-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1606", "958", "_wp_attached_file", "2014/08/bg4.png");
INSERT INTO `wp_postmeta` VALUES("1607", "958", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1224;s:6:\"height\";i:218;s:4:\"file\";s:15:\"2014/08/bg4.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg4-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:\"bg4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"bg4-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1608", "959", "_wp_attached_file", "2014/08/logo.png");
INSERT INTO `wp_postmeta` VALUES("1609", "959", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:320;s:6:\"height\";i:143;s:4:\"file\";s:16:\"2014/08/logo.png\";s:5:\"sizes\";a:3:{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:16:\"logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"logo-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1610", "960", "_wp_attached_file", "2014/08/logo1.png");
INSERT INTO `wp_postmeta` VALUES("1611", "960", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:320;s:6:\"height\";i:143;s:4:\"file\";s:17:\"2014/08/logo1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"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:17:\"logo1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"logo1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("1677", "961", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("1678", "961", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("1679", "961", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("1680", "961", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("1681", "961", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1682", "961", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1683", "961", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1684", "961", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1685", "961", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1686", "961", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1687", "961", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1688", "961", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1689", "961", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1690", "961", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1691", "961", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1692", "961", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1693", "961", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1694", "961", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1695", "961", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1698", "396", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("1699", "396", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1700", "396", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1701", "396", "_layout", "right");
INSERT INTO `wp_postmeta` VALUES("1702", "396", "_padding", "false");
INSERT INTO `wp_postmeta` VALUES("1703", "396", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("1704", "396", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("1705", "396", "_enable_banner_video", "false");
INSERT INTO `wp_postmeta` VALUES("1706", "396", "_banner_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("1707", "396", "_enable_slidehsow", "false");
INSERT INTO `wp_postmeta` VALUES("1708", "396", "_slideshow_source", "layerslider");
INSERT INTO `wp_postmeta` VALUES("1709", "396", "_rev_slider_source", "1");
INSERT INTO `wp_postmeta` VALUES("1710", "396", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("1711", "396", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("1712", "396", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1713", "396", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1714", "396", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("1715", "396", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("1716", "396", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1717", "396", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("1718", "396", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1719", "396", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1720", "396", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("1721", "396", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("1722", "396", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("1723", "396", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("1724", "396", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1725", "396", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("1726", "396", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("1727", "396", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1728", "396", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("1729", "396", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("1730", "396", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("1731", "396", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("1732", "396", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1733", "396", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1734", "396", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1735", "396", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("1736", "396", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1737", "396", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1738", "396", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1739", "396", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("1740", "396", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("1741", "396", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("1742", "396", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1743", "396", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1744", "396", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1745", "396", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1746", "396", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1747", "396", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("1748", "396", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("1749", "396", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("1750", "396", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("1751", "396", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1752", "396", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1753", "396", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1754", "396", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1755", "396", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1756", "396", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1757", "396", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1758", "396", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1759", "396", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1760", "396", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1761", "396", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1762", "396", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1763", "396", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1764", "396", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1765", "396", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1769", "965", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1768", "965", "_edit_lock", "1407134875:1");
INSERT INTO `wp_postmeta` VALUES("1770", "965", "_thumbnail_id", "755");
INSERT INTO `wp_postmeta` VALUES("1850", "967", "_edit_lock", "1407134998:1");
INSERT INTO `wp_postmeta` VALUES("1773", "965", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("1774", "965", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("1775", "965", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1776", "965", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1777", "965", "_layout", "right");
INSERT INTO `wp_postmeta` VALUES("1778", "965", "_padding", "false");
INSERT INTO `wp_postmeta` VALUES("1779", "965", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("1780", "965", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("1781", "965", "_disable_post_lightbox", "true");
INSERT INTO `wp_postmeta` VALUES("1782", "965", "_single_post_type", "image");
INSERT INTO `wp_postmeta` VALUES("1783", "965", "_classic_orientation", "landscape");
INSERT INTO `wp_postmeta` VALUES("1784", "965", "_single_video_site", "youtube");
INSERT INTO `wp_postmeta` VALUES("1785", "965", "_disable_featured_image", "true");
INSERT INTO `wp_postmeta` VALUES("1786", "965", "_disable_meta", "true");
INSERT INTO `wp_postmeta` VALUES("1787", "965", "_disable_tags", "true");
INSERT INTO `wp_postmeta` VALUES("1788", "965", "_disable_related_posts", "true");
INSERT INTO `wp_postmeta` VALUES("1789", "965", "_disable_about_author", "true");
INSERT INTO `wp_postmeta` VALUES("1790", "965", "_disable_comments", "true");
INSERT INTO `wp_postmeta` VALUES("1791", "965", "_enable_slidehsow", "false");
INSERT INTO `wp_postmeta` VALUES("1792", "965", "_slideshow_source", "layerslider");
INSERT INTO `wp_postmeta` VALUES("1793", "965", "_rev_slider_source", "1");
INSERT INTO `wp_postmeta` VALUES("1794", "965", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("1795", "965", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("1796", "965", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1797", "965", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1798", "965", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("1799", "965", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("1800", "965", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1801", "965", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("1802", "965", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1803", "965", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1804", "965", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("1805", "965", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("1806", "965", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("1807", "965", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("1808", "965", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1809", "965", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("1810", "965", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("1811", "965", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1812", "965", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("1813", "965", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("1814", "965", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("1815", "965", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("1816", "965", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1817", "965", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1818", "965", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1819", "965", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("1820", "965", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1821", "965", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1822", "965", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1823", "965", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("1824", "965", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("1825", "965", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("1826", "965", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1827", "965", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1828", "965", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1829", "965", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1830", "965", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1831", "965", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("1832", "965", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("1833", "965", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("1834", "965", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("1835", "965", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1836", "965", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1837", "965", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1838", "965", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1839", "965", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1840", "965", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1841", "965", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1842", "965", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1843", "965", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1844", "965", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1845", "965", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1846", "965", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1847", "965", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1848", "965", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1849", "965", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1851", "967", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1938", "969", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1931", "967", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("1854", "967", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("1855", "967", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("1856", "967", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1857", "967", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1858", "967", "_layout", "right");
INSERT INTO `wp_postmeta` VALUES("1859", "967", "_padding", "false");
INSERT INTO `wp_postmeta` VALUES("1860", "967", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("1861", "967", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("1862", "967", "_disable_post_lightbox", "true");
INSERT INTO `wp_postmeta` VALUES("1863", "967", "_single_post_type", "image");
INSERT INTO `wp_postmeta` VALUES("1864", "967", "_classic_orientation", "landscape");
INSERT INTO `wp_postmeta` VALUES("1865", "967", "_single_video_site", "youtube");
INSERT INTO `wp_postmeta` VALUES("1866", "967", "_disable_featured_image", "true");
INSERT INTO `wp_postmeta` VALUES("1867", "967", "_disable_meta", "true");
INSERT INTO `wp_postmeta` VALUES("1868", "967", "_disable_tags", "true");
INSERT INTO `wp_postmeta` VALUES("1869", "967", "_disable_related_posts", "true");
INSERT INTO `wp_postmeta` VALUES("1870", "967", "_disable_about_author", "true");
INSERT INTO `wp_postmeta` VALUES("1871", "967", "_disable_comments", "true");
INSERT INTO `wp_postmeta` VALUES("1872", "967", "_enable_slidehsow", "false");
INSERT INTO `wp_postmeta` VALUES("1873", "967", "_slideshow_source", "layerslider");
INSERT INTO `wp_postmeta` VALUES("1874", "967", "_rev_slider_source", "1");
INSERT INTO `wp_postmeta` VALUES("1875", "967", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("1876", "967", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("1877", "967", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1878", "967", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1879", "967", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("1880", "967", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("1881", "967", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1882", "967", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("1883", "967", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1884", "967", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1885", "967", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("1886", "967", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("1887", "967", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("1888", "967", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("1889", "967", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1890", "967", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("1891", "967", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("1892", "967", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1893", "967", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("1894", "967", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("1895", "967", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("1896", "967", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("1897", "967", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1898", "967", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1899", "967", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1900", "967", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("1901", "967", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1902", "967", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1903", "967", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1904", "967", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("1905", "967", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("1906", "967", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("1907", "967", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1908", "967", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1909", "967", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1910", "967", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1911", "967", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1912", "967", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("1913", "967", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("1914", "967", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("1915", "967", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("1916", "967", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1917", "967", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1918", "967", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1919", "967", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1920", "967", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1921", "967", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1922", "967", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1923", "967", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1924", "967", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1925", "967", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1926", "967", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1927", "967", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1928", "967", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("1929", "967", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("1930", "967", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("1934", "965", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("1937", "969", "_edit_lock", "1407134999:1");
INSERT INTO `wp_postmeta` VALUES("1939", "970", "_wp_attached_file", "2014/08/wildhorsesofarizona.jpg");
INSERT INTO `wp_postmeta` VALUES("1940", "970", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:880;s:4:\"file\";s:31:\"2014/08/wildhorsesofarizona.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"wildhorsesofarizona-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:\"wildhorsesofarizona-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:33:\"wildhorsesofarizona-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:6:\"Kristi\";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:17:\"Poster_Seville.ai\";}}");
INSERT INTO `wp_postmeta` VALUES("1941", "969", "_thumbnail_id", "970");
INSERT INTO `wp_postmeta` VALUES("2021", "972", "_edit_lock", "1407135056:1");
INSERT INTO `wp_postmeta` VALUES("1944", "969", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("1945", "969", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("1946", "969", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1947", "969", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("1948", "969", "_layout", "right");
INSERT INTO `wp_postmeta` VALUES("1949", "969", "_padding", "false");
INSERT INTO `wp_postmeta` VALUES("1950", "969", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("1951", "969", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("1952", "969", "_disable_post_lightbox", "true");
INSERT INTO `wp_postmeta` VALUES("1953", "969", "_single_post_type", "image");
INSERT INTO `wp_postmeta` VALUES("1954", "969", "_classic_orientation", "landscape");
INSERT INTO `wp_postmeta` VALUES("1955", "969", "_single_video_site", "youtube");
INSERT INTO `wp_postmeta` VALUES("1956", "969", "_disable_featured_image", "true");
INSERT INTO `wp_postmeta` VALUES("1957", "969", "_disable_meta", "true");
INSERT INTO `wp_postmeta` VALUES("1958", "969", "_disable_tags", "true");
INSERT INTO `wp_postmeta` VALUES("1959", "969", "_disable_related_posts", "true");
INSERT INTO `wp_postmeta` VALUES("1960", "969", "_disable_about_author", "true");
INSERT INTO `wp_postmeta` VALUES("1961", "969", "_disable_comments", "true");
INSERT INTO `wp_postmeta` VALUES("1962", "969", "_enable_slidehsow", "false");
INSERT INTO `wp_postmeta` VALUES("1963", "969", "_slideshow_source", "layerslider");
INSERT INTO `wp_postmeta` VALUES("1964", "969", "_rev_slider_source", "1");
INSERT INTO `wp_postmeta` VALUES("1965", "969", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("1966", "969", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("1967", "969", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1968", "969", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1969", "969", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("1970", "969", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("1971", "969", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1972", "969", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("1973", "969", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1974", "969", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1975", "969", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("1976", "969", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("1977", "969", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("1978", "969", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("1979", "969", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1980", "969", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("1981", "969", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("1982", "969", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("1983", "969", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("1984", "969", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("1985", "969", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("1986", "969", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("1987", "969", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1988", "969", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1989", "969", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("1990", "969", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("1991", "969", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("1992", "969", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("1993", "969", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("1994", "969", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("1995", "969", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("1996", "969", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("1997", "969", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("1998", "969", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("1999", "969", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("2000", "969", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("2001", "969", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("2002", "969", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("2003", "969", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("2004", "969", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("2005", "969", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("2006", "969", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2007", "969", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2008", "969", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2009", "969", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2010", "969", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2011", "969", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2012", "969", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2013", "969", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2014", "969", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2015", "969", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2016", "969", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2017", "969", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2018", "969", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2019", "969", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2020", "969", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2022", "972", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2023", "972", "_thumbnail_id", "792");
INSERT INTO `wp_postmeta` VALUES("2103", "974", "_edit_lock", "1407140351:1");
INSERT INTO `wp_postmeta` VALUES("2026", "972", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("2027", "972", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("2028", "972", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("2029", "972", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("2030", "972", "_layout", "right");
INSERT INTO `wp_postmeta` VALUES("2031", "972", "_padding", "false");
INSERT INTO `wp_postmeta` VALUES("2032", "972", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("2033", "972", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("2034", "972", "_disable_post_lightbox", "true");
INSERT INTO `wp_postmeta` VALUES("2035", "972", "_single_post_type", "image");
INSERT INTO `wp_postmeta` VALUES("2036", "972", "_classic_orientation", "landscape");
INSERT INTO `wp_postmeta` VALUES("2037", "972", "_single_video_site", "youtube");
INSERT INTO `wp_postmeta` VALUES("2038", "972", "_disable_featured_image", "true");
INSERT INTO `wp_postmeta` VALUES("2039", "972", "_disable_meta", "true");
INSERT INTO `wp_postmeta` VALUES("2040", "972", "_disable_tags", "true");
INSERT INTO `wp_postmeta` VALUES("2041", "972", "_disable_related_posts", "true");
INSERT INTO `wp_postmeta` VALUES("2042", "972", "_disable_about_author", "true");
INSERT INTO `wp_postmeta` VALUES("2043", "972", "_disable_comments", "true");
INSERT INTO `wp_postmeta` VALUES("2044", "972", "_enable_slidehsow", "false");
INSERT INTO `wp_postmeta` VALUES("2045", "972", "_slideshow_source", "layerslider");
INSERT INTO `wp_postmeta` VALUES("2046", "972", "_rev_slider_source", "1");
INSERT INTO `wp_postmeta` VALUES("2047", "972", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("2048", "972", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("2049", "972", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2050", "972", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2051", "972", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("2052", "972", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("2053", "972", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("2054", "972", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("2055", "972", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2056", "972", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2057", "972", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("2058", "972", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("2059", "972", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("2060", "972", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("2061", "972", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("2062", "972", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("2063", "972", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("2064", "972", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("2065", "972", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("2066", "972", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("2067", "972", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("2068", "972", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("2069", "972", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2070", "972", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2071", "972", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("2072", "972", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("2073", "972", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("2074", "972", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("2075", "972", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("2076", "972", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("2077", "972", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("2078", "972", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("2079", "972", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2080", "972", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2081", "972", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("2082", "972", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("2083", "972", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("2084", "972", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("2085", "972", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("2086", "972", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("2087", "972", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("2088", "972", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2089", "972", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2090", "972", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2091", "972", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2092", "972", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2093", "972", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2094", "972", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2095", "972", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2096", "972", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2097", "972", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2098", "972", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2099", "972", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2100", "972", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2101", "972", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2102", "972", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2104", "974", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2185", "972", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("2184", "974", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("2107", "974", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("2108", "974", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("2109", "974", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("2110", "974", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("2111", "974", "_layout", "right");
INSERT INTO `wp_postmeta` VALUES("2112", "974", "_padding", "false");
INSERT INTO `wp_postmeta` VALUES("2113", "974", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("2114", "974", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("2115", "974", "_disable_post_lightbox", "true");
INSERT INTO `wp_postmeta` VALUES("2116", "974", "_single_post_type", "image");
INSERT INTO `wp_postmeta` VALUES("2117", "974", "_classic_orientation", "landscape");
INSERT INTO `wp_postmeta` VALUES("2118", "974", "_single_video_site", "youtube");
INSERT INTO `wp_postmeta` VALUES("2119", "974", "_disable_featured_image", "true");
INSERT INTO `wp_postmeta` VALUES("2120", "974", "_disable_meta", "true");
INSERT INTO `wp_postmeta` VALUES("2121", "974", "_disable_tags", "true");
INSERT INTO `wp_postmeta` VALUES("2122", "974", "_disable_related_posts", "true");
INSERT INTO `wp_postmeta` VALUES("2123", "974", "_disable_about_author", "true");
INSERT INTO `wp_postmeta` VALUES("2124", "974", "_disable_comments", "true");
INSERT INTO `wp_postmeta` VALUES("2125", "974", "_enable_slidehsow", "false");
INSERT INTO `wp_postmeta` VALUES("2126", "974", "_slideshow_source", "layerslider");
INSERT INTO `wp_postmeta` VALUES("2127", "974", "_rev_slider_source", "1");
INSERT INTO `wp_postmeta` VALUES("2128", "974", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("2129", "974", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("2130", "974", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2131", "974", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2132", "974", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("2133", "974", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("2134", "974", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("2135", "974", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("2136", "974", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2137", "974", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2138", "974", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("2139", "974", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("2140", "974", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("2141", "974", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("2142", "974", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("2143", "974", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("2144", "974", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("2145", "974", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("2146", "974", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("2147", "974", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("2148", "974", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("2149", "974", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("2150", "974", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2151", "974", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2152", "974", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("2153", "974", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("2154", "974", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("2155", "974", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("2156", "974", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("2157", "974", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("2158", "974", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("2159", "974", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("2160", "974", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2161", "974", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2162", "974", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("2163", "974", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("2164", "974", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("2165", "974", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("2166", "974", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("2167", "974", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("2168", "974", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("2169", "974", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2170", "974", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2171", "974", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2172", "974", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2173", "974", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2174", "974", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2175", "974", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2176", "974", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2177", "974", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2178", "974", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2179", "974", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2180", "974", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2181", "974", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2182", "974", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2183", "974", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2186", "969", "_mk_post_love", "0");
INSERT INTO `wp_postmeta` VALUES("2187", "976", "_wp_attached_file", "2014/08/arc.png");
INSERT INTO `wp_postmeta` VALUES("2188", "976", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:385;s:4:\"file\";s:15:\"2014/08/arc.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"arc-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:\"arc-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"arc-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2189", "977", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("2190", "977", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("2191", "977", "_menu_item_object_id", "977");
INSERT INTO `wp_postmeta` VALUES("2192", "977", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("2193", "977", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2194", "977", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2195", "977", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2196", "977", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2319", "977", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2198", "977", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2199", "978", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2200", "978", "_menu_item_menu_item_parent", "977");
INSERT INTO `wp_postmeta` VALUES("2201", "978", "_menu_item_object_id", "170");
INSERT INTO `wp_postmeta` VALUES("2202", "978", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2203", "978", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2204", "978", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2205", "978", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2206", "978", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2320", "978", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2208", "978", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2209", "979", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2210", "979", "_menu_item_menu_item_parent", "977");
INSERT INTO `wp_postmeta` VALUES("2211", "979", "_menu_item_object_id", "164");
INSERT INTO `wp_postmeta` VALUES("2212", "979", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2213", "979", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2214", "979", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2215", "979", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2216", "979", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2321", "979", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2218", "979", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2219", "980", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2220", "980", "_menu_item_menu_item_parent", "977");
INSERT INTO `wp_postmeta` VALUES("2221", "980", "_menu_item_object_id", "198");
INSERT INTO `wp_postmeta` VALUES("2222", "980", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2223", "980", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2224", "980", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2225", "980", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2226", "980", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2322", "980", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2228", "980", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2229", "981", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2230", "981", "_menu_item_menu_item_parent", "977");
INSERT INTO `wp_postmeta` VALUES("2231", "981", "_menu_item_object_id", "195");
INSERT INTO `wp_postmeta` VALUES("2232", "981", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2233", "981", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2234", "981", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2235", "981", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2236", "981", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2323", "981", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2238", "981", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2239", "982", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2240", "982", "_menu_item_menu_item_parent", "977");
INSERT INTO `wp_postmeta` VALUES("2241", "982", "_menu_item_object_id", "207");
INSERT INTO `wp_postmeta` VALUES("2242", "982", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2243", "982", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2244", "982", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2245", "982", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2246", "982", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2324", "982", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2248", "982", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2249", "983", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2250", "983", "_menu_item_menu_item_parent", "977");
INSERT INTO `wp_postmeta` VALUES("2251", "983", "_menu_item_object_id", "166");
INSERT INTO `wp_postmeta` VALUES("2252", "983", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2253", "983", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2254", "983", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2255", "983", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2256", "983", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2325", "983", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2258", "983", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2259", "984", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2260", "984", "_menu_item_menu_item_parent", "977");
INSERT INTO `wp_postmeta` VALUES("2261", "984", "_menu_item_object_id", "185");
INSERT INTO `wp_postmeta` VALUES("2262", "984", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2263", "984", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2264", "984", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2265", "984", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2266", "984", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2326", "984", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2268", "984", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2269", "985", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2270", "985", "_menu_item_menu_item_parent", "977");
INSERT INTO `wp_postmeta` VALUES("2271", "985", "_menu_item_object_id", "336");
INSERT INTO `wp_postmeta` VALUES("2272", "985", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2273", "985", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2274", "985", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2275", "985", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2276", "985", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2327", "985", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2278", "985", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2279", "986", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2280", "986", "_menu_item_menu_item_parent", "977");
INSERT INTO `wp_postmeta` VALUES("2281", "986", "_menu_item_object_id", "623");
INSERT INTO `wp_postmeta` VALUES("2282", "986", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2283", "986", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2284", "986", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2285", "986", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2286", "986", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2328", "986", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2288", "986", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2289", "987", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2290", "987", "_menu_item_menu_item_parent", "977");
INSERT INTO `wp_postmeta` VALUES("2291", "987", "_menu_item_object_id", "719");
INSERT INTO `wp_postmeta` VALUES("2292", "987", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2293", "987", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2294", "987", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2295", "987", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2296", "987", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2329", "987", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2298", "987", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2299", "988", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2300", "988", "_menu_item_menu_item_parent", "977");
INSERT INTO `wp_postmeta` VALUES("2301", "988", "_menu_item_object_id", "734");
INSERT INTO `wp_postmeta` VALUES("2302", "988", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2303", "988", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2304", "988", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2305", "988", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2306", "988", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2330", "988", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2308", "988", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2309", "989", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2310", "989", "_menu_item_menu_item_parent", "977");
INSERT INTO `wp_postmeta` VALUES("2311", "989", "_menu_item_object_id", "776");
INSERT INTO `wp_postmeta` VALUES("2312", "989", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2313", "989", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2314", "989", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2315", "989", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2316", "989", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2331", "989", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2318", "989", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2332", "990", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("2333", "990", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("2334", "990", "_menu_item_object_id", "990");
INSERT INTO `wp_postmeta` VALUES("2335", "990", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("2336", "990", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2337", "990", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2338", "990", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2339", "990", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2514", "990", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2341", "990", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2342", "991", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2343", "991", "_menu_item_menu_item_parent", "990");
INSERT INTO `wp_postmeta` VALUES("2344", "991", "_menu_item_object_id", "61");
INSERT INTO `wp_postmeta` VALUES("2345", "991", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2346", "991", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2347", "991", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2348", "991", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2349", "991", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2515", "991", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2351", "991", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2352", "992", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2353", "992", "_menu_item_menu_item_parent", "990");
INSERT INTO `wp_postmeta` VALUES("2354", "992", "_menu_item_object_id", "160");
INSERT INTO `wp_postmeta` VALUES("2355", "992", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2356", "992", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2357", "992", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2358", "992", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2359", "992", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2516", "992", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2361", "992", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2362", "993", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2363", "993", "_menu_item_menu_item_parent", "990");
INSERT INTO `wp_postmeta` VALUES("2364", "993", "_menu_item_object_id", "173");
INSERT INTO `wp_postmeta` VALUES("2365", "993", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2366", "993", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2367", "993", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2368", "993", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2369", "993", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2517", "993", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2371", "993", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2372", "994", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2373", "994", "_menu_item_menu_item_parent", "990");
INSERT INTO `wp_postmeta` VALUES("2374", "994", "_menu_item_object_id", "179");
INSERT INTO `wp_postmeta` VALUES("2375", "994", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2376", "994", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2377", "994", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2378", "994", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2379", "994", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2518", "994", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2381", "994", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2382", "995", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2383", "995", "_menu_item_menu_item_parent", "990");
INSERT INTO `wp_postmeta` VALUES("2384", "995", "_menu_item_object_id", "162");
INSERT INTO `wp_postmeta` VALUES("2385", "995", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2386", "995", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2387", "995", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2388", "995", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2389", "995", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2519", "995", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2391", "995", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2392", "996", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2393", "996", "_menu_item_menu_item_parent", "990");
INSERT INTO `wp_postmeta` VALUES("2394", "996", "_menu_item_object_id", "203");
INSERT INTO `wp_postmeta` VALUES("2395", "996", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2396", "996", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2397", "996", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2398", "996", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2399", "996", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2520", "996", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2401", "996", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2402", "997", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2403", "997", "_menu_item_menu_item_parent", "990");
INSERT INTO `wp_postmeta` VALUES("2404", "997", "_menu_item_object_id", "181");
INSERT INTO `wp_postmeta` VALUES("2405", "997", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2406", "997", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2407", "997", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2408", "997", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2409", "997", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2521", "997", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2411", "997", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2412", "998", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2413", "998", "_menu_item_menu_item_parent", "990");
INSERT INTO `wp_postmeta` VALUES("2414", "998", "_menu_item_object_id", "309");
INSERT INTO `wp_postmeta` VALUES("2415", "998", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2416", "998", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2417", "998", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2418", "998", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2419", "998", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2522", "998", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2421", "998", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2422", "999", "_edit_lock", "1407137541:1");
INSERT INTO `wp_postmeta` VALUES("2423", "999", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2424", "999", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("2425", "999", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("2426", "999", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("2427", "999", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("2428", "999", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("2429", "999", "_layout", "right");
INSERT INTO `wp_postmeta` VALUES("2430", "999", "_padding", "false");
INSERT INTO `wp_postmeta` VALUES("2431", "999", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("2432", "999", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("2433", "999", "_enable_banner_video", "false");
INSERT INTO `wp_postmeta` VALUES("2434", "999", "_banner_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("2435", "999", "_enable_slidehsow", "false");
INSERT INTO `wp_postmeta` VALUES("2436", "999", "_slideshow_source", "layerslider");
INSERT INTO `wp_postmeta` VALUES("2437", "999", "_rev_slider_source", "1");
INSERT INTO `wp_postmeta` VALUES("2438", "999", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("2439", "999", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("2440", "999", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2441", "999", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2442", "999", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("2443", "999", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("2444", "999", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("2445", "999", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("2446", "999", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2447", "999", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2448", "999", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("2449", "999", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("2450", "999", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("2451", "999", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("2452", "999", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("2453", "999", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("2454", "999", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("2455", "999", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("2456", "999", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("2457", "999", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("2458", "999", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("2459", "999", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("2460", "999", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2461", "999", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2462", "999", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("2463", "999", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("2464", "999", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("2465", "999", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("2466", "999", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("2467", "999", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("2468", "999", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("2469", "999", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("2470", "999", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2471", "999", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2472", "999", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("2473", "999", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("2474", "999", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("2475", "999", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("2476", "999", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("2477", "999", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("2478", "999", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("2479", "999", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2480", "999", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2481", "999", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2482", "999", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2483", "999", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2484", "999", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2485", "999", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2486", "999", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2487", "999", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2488", "999", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2489", "999", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2490", "999", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2491", "999", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2492", "999", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2493", "999", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2494", "1001", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2495", "1001", "_menu_item_menu_item_parent", "990");
INSERT INTO `wp_postmeta` VALUES("2496", "1001", "_menu_item_object_id", "746");
INSERT INTO `wp_postmeta` VALUES("2497", "1001", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2498", "1001", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2499", "1001", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2500", "1001", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2501", "1001", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2523", "1001", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2503", "1001", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2504", "1002", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2505", "1002", "_menu_item_menu_item_parent", "990");
INSERT INTO `wp_postmeta` VALUES("2506", "1002", "_menu_item_object_id", "769");
INSERT INTO `wp_postmeta` VALUES("2507", "1002", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2508", "1002", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2509", "1002", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2510", "1002", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2511", "1002", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2524", "1002", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2513", "1002", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2525", "1003", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2526", "1003", "_menu_item_menu_item_parent", "990");
INSERT INTO `wp_postmeta` VALUES("2527", "1003", "_menu_item_object_id", "999");
INSERT INTO `wp_postmeta` VALUES("2528", "1003", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2529", "1003", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2530", "1003", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2531", "1003", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2532", "1003", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2535", "1003", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2534", "1003", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2536", "1004", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("2537", "1004", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("2538", "1004", "_menu_item_object_id", "1004");
INSERT INTO `wp_postmeta` VALUES("2539", "1004", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("2540", "1004", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2541", "1004", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2542", "1004", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2543", "1004", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2636", "1004", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2545", "1004", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2546", "1005", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2547", "1005", "_menu_item_menu_item_parent", "1004");
INSERT INTO `wp_postmeta` VALUES("2548", "1005", "_menu_item_object_id", "189");
INSERT INTO `wp_postmeta` VALUES("2549", "1005", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2550", "1005", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2551", "1005", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2552", "1005", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2553", "1005", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2637", "1005", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2555", "1005", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2556", "1006", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2557", "1006", "_menu_item_menu_item_parent", "1004");
INSERT INTO `wp_postmeta` VALUES("2558", "1006", "_menu_item_object_id", "183");
INSERT INTO `wp_postmeta` VALUES("2559", "1006", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2560", "1006", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2561", "1006", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2562", "1006", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2563", "1006", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2638", "1006", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2565", "1006", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2566", "1007", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2567", "1007", "_menu_item_menu_item_parent", "1004");
INSERT INTO `wp_postmeta` VALUES("2568", "1007", "_menu_item_object_id", "168");
INSERT INTO `wp_postmeta` VALUES("2569", "1007", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2570", "1007", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2571", "1007", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2572", "1007", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2573", "1007", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2639", "1007", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2575", "1007", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2576", "1008", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2577", "1008", "_menu_item_menu_item_parent", "1004");
INSERT INTO `wp_postmeta` VALUES("2578", "1008", "_menu_item_object_id", "675");
INSERT INTO `wp_postmeta` VALUES("2579", "1008", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2580", "1008", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2581", "1008", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2582", "1008", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2583", "1008", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2640", "1008", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2585", "1008", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2586", "1009", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("2587", "1009", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("2588", "1009", "_menu_item_object_id", "1009");
INSERT INTO `wp_postmeta` VALUES("2589", "1009", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("2590", "1009", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2591", "1009", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2592", "1009", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2593", "1009", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2641", "1009", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2595", "1009", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2596", "1010", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2597", "1010", "_menu_item_menu_item_parent", "1009");
INSERT INTO `wp_postmeta` VALUES("2598", "1010", "_menu_item_object_id", "209");
INSERT INTO `wp_postmeta` VALUES("2599", "1010", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2600", "1010", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2601", "1010", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2602", "1010", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2603", "1010", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2642", "1010", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2605", "1010", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2606", "1011", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2607", "1011", "_menu_item_menu_item_parent", "1009");
INSERT INTO `wp_postmeta` VALUES("2608", "1011", "_menu_item_object_id", "201");
INSERT INTO `wp_postmeta` VALUES("2609", "1011", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2610", "1011", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2611", "1011", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2612", "1011", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2613", "1011", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2644", "1011", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2615", "1011", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2616", "1012", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2617", "1012", "_menu_item_menu_item_parent", "1009");
INSERT INTO `wp_postmeta` VALUES("2618", "1012", "_menu_item_object_id", "672");
INSERT INTO `wp_postmeta` VALUES("2619", "1012", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2620", "1012", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2621", "1012", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2622", "1012", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2623", "1012", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2645", "1012", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2625", "1012", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2626", "1013", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2627", "1013", "_menu_item_menu_item_parent", "1009");
INSERT INTO `wp_postmeta` VALUES("2628", "1013", "_menu_item_object_id", "205");
INSERT INTO `wp_postmeta` VALUES("2629", "1013", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2630", "1013", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2631", "1013", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2632", "1013", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2633", "1013", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2643", "1013", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2635", "1013", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2648", "1014", "_wp_attached_file", "2011/11/cream.png");
INSERT INTO `wp_postmeta` VALUES("2649", "1014", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:370;s:6:\"height\";i:230;s:4:\"file\";s:17:\"2011/11/cream.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cream-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:17:\"cream-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"cream-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2650", "1015", "_wp_attached_file", "2011/11/darkpeach.png");
INSERT INTO `wp_postmeta` VALUES("2651", "1015", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:370;s:6:\"height\";i:230;s:4:\"file\";s:21:\"2011/11/darkpeach.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"darkpeach-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:21:\"darkpeach-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"darkpeach-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2652", "1016", "_wp_attached_file", "2011/11/peach.png");
INSERT INTO `wp_postmeta` VALUES("2653", "1016", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:370;s:6:\"height\";i:230;s:4:\"file\";s:17:\"2011/11/peach.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"peach-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:17:\"peach-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"peach-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2654", "1017", "_wp_attached_file", "2011/11/purple.jpg");
INSERT INTO `wp_postmeta` VALUES("2655", "1017", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:340;s:6:\"height\";i:230;s:4:\"file\";s:18:\"2011/11/purple.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"purple-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:\"purple-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:20:\"purple-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2656", "1024", "_wp_attached_file", "2014/08/arc1.png");
INSERT INTO `wp_postmeta` VALUES("2657", "1024", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:400;s:4:\"file\";s:16:\"2014/08/arc1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"arc1-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:16:\"arc1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"arc1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2658", "1025", "_wp_attached_file", "2014/08/arch1.jpg");
INSERT INTO `wp_postmeta` VALUES("2659", "1025", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2014/08/arch1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"arch1-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:17:\"arch1-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:19:\"arch1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2660", "1026", "_wp_attached_file", "2014/08/arch2.jpg");
INSERT INTO `wp_postmeta` VALUES("2661", "1026", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2014/08/arch2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"arch2-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:17:\"arch2-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:19:\"arch2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2662", "1027", "_wp_attached_file", "2014/08/arch3.jpg");
INSERT INTO `wp_postmeta` VALUES("2663", "1027", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2014/08/arch3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"arch3-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:17:\"arch3-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:19:\"arch3-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2664", "1028", "_wp_attached_file", "2014/08/arch4.jpg");
INSERT INTO `wp_postmeta` VALUES("2665", "1028", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2014/08/arch4.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"arch4-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:17:\"arch4-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:19:\"arch4-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2666", "1029", "_wp_attached_file", "2014/08/arch5.jpg");
INSERT INTO `wp_postmeta` VALUES("2667", "1029", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2014/08/arch5.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"arch5-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:17:\"arch5-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:19:\"arch5-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2668", "1030", "_wp_attached_file", "2014/08/arch6.jpg");
INSERT INTO `wp_postmeta` VALUES("2669", "1030", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2014/08/arch6.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"arch6-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:17:\"arch6-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:19:\"arch6-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2670", "1031", "_wp_attached_file", "2014/08/arch7.jpg");
INSERT INTO `wp_postmeta` VALUES("2671", "1031", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2014/08/arch7.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"arch7-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:17:\"arch7-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:19:\"arch7-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2672", "1032", "_wp_attached_file", "2014/08/title.jpg");
INSERT INTO `wp_postmeta` VALUES("2673", "1032", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1897;s:6:\"height\";i:240;s:4:\"file\";s:17:\"2014/08/title.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"title-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:17:\"title-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:19:\"title-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2674", "1033", "_wp_attached_file", "2014/08/title1.jpg");
INSERT INTO `wp_postmeta` VALUES("2675", "1033", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:789;s:4:\"file\";s:18:\"2014/08/title1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"title1-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:\"title1-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:20:\"title1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2676", "1034", "_wp_attached_file", "2014/08/seville.jpg");
INSERT INTO `wp_postmeta` VALUES("2677", "1034", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:18;s:6:\"height\";i:4;s:4:\"file\";s:19:\"2014/08/seville.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"seville-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:\"seville-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:21:\"seville-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2678", "1034", "_edit_lock", "1407222930:1");
INSERT INTO `wp_postmeta` VALUES("2679", "1051", "_edit_lock", "1407223631:1");
INSERT INTO `wp_postmeta` VALUES("2680", "1051", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2681", "1051", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("2682", "1051", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("2683", "1051", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("2684", "1051", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("2685", "1051", "textfalse", "");
INSERT INTO `wp_postmeta` VALUES("2686", "1051", "_layout", "full");
INSERT INTO `wp_postmeta` VALUES("2687", "1051", "_padding", "false");
INSERT INTO `wp_postmeta` VALUES("2688", "1051", "_introduce_align", "left");
INSERT INTO `wp_postmeta` VALUES("2689", "1051", "_disable_breadcrumb", "true");
INSERT INTO `wp_postmeta` VALUES("2690", "1051", "_enable_banner_video", "false");
INSERT INTO `wp_postmeta` VALUES("2691", "1051", "_banner_video_pattern", "false");
INSERT INTO `wp_postmeta` VALUES("2692", "1051", "_enable_slidehsow", "false");
INSERT INTO `wp_postmeta` VALUES("2693", "1051", "_slideshow_source", "layerslider");
INSERT INTO `wp_postmeta` VALUES("2694", "1051", "_rev_slider_source", "1");
INSERT INTO `wp_postmeta` VALUES("2695", "1051", "_edge_full_height", "true");
INSERT INTO `wp_postmeta` VALUES("2696", "1051", "_edge_height", "700");
INSERT INTO `wp_postmeta` VALUES("2697", "1051", "_edge_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2698", "1051", "_edge_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2699", "1051", "_edge_animation_speed", "600");
INSERT INTO `wp_postmeta` VALUES("2700", "1051", "_edge_pause_time", "15000");
INSERT INTO `wp_postmeta` VALUES("2701", "1051", "_edge_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("2702", "1051", "_icarousel_count", "3");
INSERT INTO `wp_postmeta` VALUES("2703", "1051", "_icarousel_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2704", "1051", "_icarousel_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2705", "1051", "_icarousel_autoplay", "true");
INSERT INTO `wp_postmeta` VALUES("2706", "1051", "_icarousel_3d", "true");
INSERT INTO `wp_postmeta` VALUES("2707", "1051", "_icarousel_perspective", "35");
INSERT INTO `wp_postmeta` VALUES("2708", "1051", "_icarousel_pause_on_hover", "true");
INSERT INTO `wp_postmeta` VALUES("2709", "1051", "_icarousel_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("2710", "1051", "_icarousel_animation_speed", "500");
INSERT INTO `wp_postmeta` VALUES("2711", "1051", "_icarousel_pause_time", "5000");
INSERT INTO `wp_postmeta` VALUES("2712", "1051", "_icarousel_direction_nav", "true");
INSERT INTO `wp_postmeta` VALUES("2713", "1051", "_flexslider_height", "400");
INSERT INTO `wp_postmeta` VALUES("2714", "1051", "_flexslider_pagination", "circle");
INSERT INTO `wp_postmeta` VALUES("2715", "1051", "_flexslider_count", "10");
INSERT INTO `wp_postmeta` VALUES("2716", "1051", "_flexslider_disableCaption", "true");
INSERT INTO `wp_postmeta` VALUES("2717", "1051", "_flexslider_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2718", "1051", "_flexslider_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2719", "1051", "_flexslider_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("2720", "1051", "_flexslider_pauseOnHover", "true");
INSERT INTO `wp_postmeta` VALUES("2721", "1051", "_flexslider_easing", "easeOutCubic");
INSERT INTO `wp_postmeta` VALUES("2722", "1051", "_flexslider_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("2723", "1051", "_flexslider_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("2724", "1051", "_banner_minHeight", "200");
INSERT INTO `wp_postmeta` VALUES("2725", "1051", "_banner_padding", "30");
INSERT INTO `wp_postmeta` VALUES("2726", "1051", "_banner_animation", "fade");
INSERT INTO `wp_postmeta` VALUES("2727", "1051", "_banner_orderby", "menu_order");
INSERT INTO `wp_postmeta` VALUES("2728", "1051", "_banner_order", "ASC");
INSERT INTO `wp_postmeta` VALUES("2729", "1051", "_banner_slideshow", "true");
INSERT INTO `wp_postmeta` VALUES("2730", "1051", "_banner_slideshowSpeed", "5000");
INSERT INTO `wp_postmeta` VALUES("2731", "1051", "_banner_animationDuration", "600");
INSERT INTO `wp_postmeta` VALUES("2732", "1051", "_enable_local_backgrounds", "false");
INSERT INTO `wp_postmeta` VALUES("2733", "1051", "background_selector_orientation", "full_width_layout");
INSERT INTO `wp_postmeta` VALUES("2734", "1051", "boxed_layout_shadow_size", "0");
INSERT INTO `wp_postmeta` VALUES("2735", "1051", "boxed_layout_shadow_intensity", "0");
INSERT INTO `wp_postmeta` VALUES("2736", "1051", "body_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2737", "1051", "body_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2738", "1051", "body_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2739", "1051", "page_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2740", "1051", "page_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2741", "1051", "page_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2742", "1051", "header_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2743", "1051", "header_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2744", "1051", "header_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2745", "1051", "banner_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2746", "1051", "banner_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2747", "1051", "banner_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2748", "1051", "footer_color_rgba", "1");
INSERT INTO `wp_postmeta` VALUES("2749", "1051", "footer_source", "no-image");
INSERT INTO `wp_postmeta` VALUES("2750", "1051", "footer_parallax", "false");
INSERT INTO `wp_postmeta` VALUES("2751", "1033", "_edit_lock", "1407224089:1");
INSERT INTO `wp_postmeta` VALUES("2752", "1053", "_wp_attached_file", "2011/11/shop.jpg");
INSERT INTO `wp_postmeta` VALUES("2753", "1053", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:350;s:6:\"height\";i:209;s:4:\"file\";s:16:\"2011/11/shop.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"shop-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:16:\"shop-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:18:\"shop-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2754", "1054", "_wp_attached_file", "2011/11/dine.jpg");
INSERT INTO `wp_postmeta` VALUES("2755", "1054", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:350;s:6:\"height\";i:209;s:4:\"file\";s:16:\"2011/11/dine.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dine-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:16:\"dine-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:18:\"dine-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2756", "1055", "_wp_attached_file", "2011/11/relax.jpg");
INSERT INTO `wp_postmeta` VALUES("2757", "1055", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:350;s:6:\"height\";i:209;s:4:\"file\";s:17:\"2011/11/relax.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"relax-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:17:\"relax-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:19:\"relax-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2758", "1056", "_wp_attached_file", "2011/11/services.jpg");
INSERT INTO `wp_postmeta` VALUES("2759", "1056", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:350;s:6:\"height\";i:209;s:4:\"file\";s:20:\"2011/11/services.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"services-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:\"services-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:22:\"services-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2762", "1065", "_wp_attached_file", "2014/08/test1.png");
INSERT INTO `wp_postmeta` VALUES("2763", "1065", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:17:\"2014/08/test1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"test1-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:17:\"test1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"test1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2764", "1066", "_wp_attached_file", "2014/08/test2.png");
INSERT INTO `wp_postmeta` VALUES("2765", "1066", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:17:\"2014/08/test2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"test2-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:17:\"test2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"test2-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2766", "1067", "_wp_attached_file", "2014/08/ar1.jpg");
INSERT INTO `wp_postmeta` VALUES("2767", "1067", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:15:\"2014/08/ar1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ar1-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:15:\"ar1-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:17:\"ar1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2768", "1068", "_wp_attached_file", "2014/08/ar2.jpg");
INSERT INTO `wp_postmeta` VALUES("2769", "1068", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:15:\"2014/08/ar2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ar2-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:15:\"ar2-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:17:\"ar2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2770", "1069", "_wp_attached_file", "2014/08/ar3.jpg");
INSERT INTO `wp_postmeta` VALUES("2771", "1069", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:15:\"2014/08/ar3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ar3-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:15:\"ar3-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:17:\"ar3-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2772", "1070", "_wp_attached_file", "2014/08/ar4.jpg");
INSERT INTO `wp_postmeta` VALUES("2773", "1070", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:15:\"2014/08/ar4.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ar4-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:15:\"ar4-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:17:\"ar4-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2774", "1071", "_wp_attached_file", "2014/08/ar5.jpg");
INSERT INTO `wp_postmeta` VALUES("2775", "1071", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:15:\"2014/08/ar5.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ar5-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:15:\"ar5-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:17:\"ar5-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2776", "1072", "_wp_attached_file", "2014/08/ar6.jpg");
INSERT INTO `wp_postmeta` VALUES("2777", "1072", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:15:\"2014/08/ar6.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ar6-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:15:\"ar6-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:17:\"ar6-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2778", "1073", "_wp_attached_file", "2014/08/ar7.jpg");
INSERT INTO `wp_postmeta` VALUES("2779", "1073", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:15:\"2014/08/ar7.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ar7-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:15:\"ar7-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:17:\"ar7-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2780", "1085", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2781", "1085", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("2782", "1085", "_menu_item_object_id", "328");
INSERT INTO `wp_postmeta` VALUES("2783", "1085", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2784", "1085", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2785", "1085", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2786", "1085", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2787", "1085", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2790", "1085", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("2789", "1085", "_menu_item_megamenu", "");
INSERT INTO `wp_postmeta` VALUES("2791", "1091", "_wp_attached_file", "2014/08/title2.jpg");
INSERT INTO `wp_postmeta` VALUES("2792", "1091", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2014/08/title2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"title2-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:\"title2-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:20:\"title2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2793", "1091", "_edit_lock", "1407307220:1");
INSERT INTO `wp_postmeta` VALUES("2794", "1092", "_wp_attached_file", "2011/11/p1.jpg");
INSERT INTO `wp_postmeta` VALUES("2795", "1092", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:204;s:6:\"height\";i:131;s:4:\"file\";s:14:\"2011/11/p1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"p1-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:14:\"p1-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:16:\"p1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2796", "1093", "_wp_attached_file", "2011/11/p3.jpg");
INSERT INTO `wp_postmeta` VALUES("2797", "1093", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:204;s:6:\"height\";i:131;s:4:\"file\";s:14:\"2011/11/p3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"p3-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:14:\"p3-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:16:\"p3-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2798", "1094", "_wp_attached_file", "2011/11/p2.jpg");
INSERT INTO `wp_postmeta` VALUES("2799", "1094", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:204;s:6:\"height\";i:131;s:4:\"file\";s:14:\"2011/11/p2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"p2-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:14:\"p2-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:16:\"p2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2800", "1095", "_wp_attached_file", "2011/11/p4.jpg");
INSERT INTO `wp_postmeta` VALUES("2801", "1095", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:204;s:6:\"height\";i:131;s:4:\"file\";s:14:\"2011/11/p4.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"p4-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:14:\"p4-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:16:\"p4-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2802", "1097", "_wp_attached_file", "2014/08/bottom2.jpg");
INSERT INTO `wp_postmeta` VALUES("2803", "1097", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:313;s:6:\"height\";i:116;s:4:\"file\";s:19:\"2014/08/bottom2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"bottom2-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:\"bottom2-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:21:\"bottom2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2804", "1098", "_wp_attached_file", "2014/08/estyle.jpg");
INSERT INTO `wp_postmeta` VALUES("2805", "1098", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:313;s:6:\"height\";i:116;s:4:\"file\";s:18:\"2014/08/estyle.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"estyle-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:\"estyle-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:20:\"estyle-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2806", "1098", "_edit_lock", "1407308551:1");
INSERT INTO `wp_postmeta` VALUES("2807", "1097", "_edit_lock", "1407309018:1");
INSERT INTO `wp_postmeta` VALUES("2812", "1103", "_edit_lock", "1407310252:1");
INSERT INTO `wp_postmeta` VALUES("2813", "1103", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2814", "1106", "_wp_attached_file", "2014/08/im1.jpg");
INSERT INTO `wp_postmeta` VALUES("2815", "1106", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:15:\"2014/08/im1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"im1-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:15:\"im1-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:17:\"im1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2816", "1107", "_wp_attached_file", "2014/08/im2.jpg");
INSERT INTO `wp_postmeta` VALUES("2817", "1107", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:15:\"2014/08/im2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"im2-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:15:\"im2-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:17:\"im2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2818", "1108", "_wp_attached_file", "2014/08/im3.jpg");
INSERT INTO `wp_postmeta` VALUES("2819", "1108", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:15:\"2014/08/im3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"im3-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:15:\"im3-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:17:\"im3-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2820", "1109", "_wp_attached_file", "2014/08/im4.jpg");
INSERT INTO `wp_postmeta` VALUES("2821", "1109", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:15:\"2014/08/im4.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"im4-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:15:\"im4-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:17:\"im4-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2822", "1110", "_wp_attached_file", "2014/08/im5.jpg");
INSERT INTO `wp_postmeta` VALUES("2823", "1110", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:15:\"2014/08/im5.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"im5-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:15:\"im5-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:17:\"im5-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2824", "1111", "_wp_attached_file", "2014/08/im6.jpg");
INSERT INTO `wp_postmeta` VALUES("2825", "1111", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:15:\"2014/08/im6.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"im6-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:15:\"im6-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:17:\"im6-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2826", "1112", "_wp_attached_file", "2014/08/im7.jpg");
INSERT INTO `wp_postmeta` VALUES("2827", "1112", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:15:\"2014/08/im7.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"im7-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:15:\"im7-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:17:\"im7-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2828", "1113", "_form", "<p>Your Name (required)<br />\n    [text* your-name] </p>\n\n<p>Your Email (required)<br />\n    [email* your-email] </p>\n\n<p>[submit \"Sign Up\"]</p>");
INSERT INTO `wp_postmeta` VALUES("2829", "1113", "_mail", "a:8:{s:7:\"subject\";s:11:\"New Enquiry\";s:6:\"sender\";s:26:\"[your-name] <[your-email]>\";s:4:\"body\";s:201:\"From: [your-name] <[your-email]>\nSubject: New Enquiry\n\nMessage Body:\n[your-name] has generated Enquiry.\n\n--\nThis e-mail was sent from a contact form on techno-sites.com (http://techno-sites.com/scotts)\";s:9:\"recipient\";s:20:\"technosites@live.com\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("2830", "1113", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:26:\"[your-name] <[your-email]>\";s:4:\"body\";s:126:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on techno-sites.com (http://techno-sites.com/scotts)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("2831", "1113", "_messages", "a:21:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:31:\"Please fill the required field.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}");
INSERT INTO `wp_postmeta` VALUES("2832", "1113", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("2833", "1113", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("2834", "330", "_wp_trash_meta_status", "publish");
INSERT INTO `wp_postmeta` VALUES("2835", "330", "_wp_trash_meta_time", "1407310824");
INSERT INTO `wp_postmeta` VALUES("2839", "1115", "_wp_attached_file", "2014/08/a2.jpg");
INSERT INTO `wp_postmeta` VALUES("2840", "1115", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:14:\"2014/08/a2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"a2-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:14:\"a2-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:16:\"a2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2841", "1116", "_wp_attached_file", "2014/08/a3.jpg");
INSERT INTO `wp_postmeta` VALUES("2842", "1116", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:14:\"2014/08/a3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"a3-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:14:\"a3-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:16:\"a3-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2843", "1117", "_wp_attached_file", "2014/08/a4.jpg");
INSERT INTO `wp_postmeta` VALUES("2844", "1117", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:14:\"2014/08/a4.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"a4-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:14:\"a4-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:16:\"a4-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2845", "1118", "_wp_attached_file", "2014/08/a5.jpg");
INSERT INTO `wp_postmeta` VALUES("2846", "1118", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:14:\"2014/08/a5.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"a5-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:14:\"a5-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:16:\"a5-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2847", "1119", "_wp_attached_file", "2014/08/a6.jpg");
INSERT INTO `wp_postmeta` VALUES("2848", "1119", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:14:\"2014/08/a6.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"a6-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:14:\"a6-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:16:\"a6-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");
INSERT INTO `wp_postmeta` VALUES("2849", "1120", "_wp_attached_file", "2014/08/a7.jpg");
INSERT INTO `wp_postmeta` VALUES("2850", "1120", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:387;s:4:\"file\";s:14:\"2014/08/a7.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"a7-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:14:\"a7-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:16:\"a7-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;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:\"\";}}");

/* INSERT TABLE DATA: wp_posts */
INSERT INTO `wp_posts` VALUES("1", "1", "2014-08-01 23:59:49", "2014-08-01 23:59:49", "Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!", "Hello world!", "", "publish", "open", "open", "", "hello-world", "", "", "2014-08-01 23:59:49", "2014-08-01 23:59:49", "", "0", "http://techno-sites.com/scotts/?p=1", "0", "post", "", "1");
INSERT INTO `wp_posts` VALUES("2", "1", "2014-08-01 23:59:49", "2014-08-01 23:59:49", "This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickies to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://techno-sites.com/scotts/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!", "Sample Page", "", "publish", "open", "open", "", "sample-page", "", "", "2014-08-01 23:59:49", "2014-08-01 23:59:49", "", "0", "http://techno-sites.com/scotts/?page_id=2", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1121", "1", "2014-08-12 16:02:44", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2014-08-12 16:02:44", "0000-00-00 00:00:00", "", "0", "http://techno-sites.com/scotts/?p=1121", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("889", "1", "2014-08-02 06:04:54", "2014-08-02 06:04:54", "[mk_page_section attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"100\" padding_top=\"10\" padding_bottom=\"10\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\" section_id=\"introduction\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#252525\" size=\"48\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"25\" font_family=\"none\" align=\"center\" el_class=\"mk-letter-spacing\"]Make beautiful websites[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"14\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"40\" font_family=\"none\" align=\"center\" el_class=\"mk-letter-spacing mk-padding-sub-heading \"]<span style=\"color: #ef662f;\">100% MOBILE FRIENDLY</span>[/mk_fancy_title][/vc_column][/mk_page_section][vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"0\" el_class=\"mk-line-height\"]<span style=\"color: #61656a;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem eget, mollis nisi. Nullam mollis sapien viverra, malesuada orci eget, mollis mauris. Nunc commodo leo nec egestas hendrerit. Proin tincidunt mauris sed blandit imperdiet. </span><span style=\"color: #ef662f;\">View our work.</span>[/vc_column_text][/vc_column][/vc_row][mk_page_section bg_color=\"#ffffff\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"100\" padding_top=\"20\" padding_bottom=\"0\" margin_bottom=\"0\" first_page=\"false\" last_page=\"true\"][vc_column width=\"1/1\"][mk_fullwidth_slideshow attachment=\"scroll\" bg_position=\"left top\" enable_3d=\"false\" speed_factor=\"4\" images=\"18,19,20\" effect=\"fade\" animation_speed=\"700\" slideshow_speed=\"4000\" pause_on_hover=\"false\" smooth_height=\"false\" direction_nav=\"false\" border_color=\"#ffffff\" el_class=\"mk-no-padding \"][/vc_column][/mk_page_section][mk_page_section bg_color=\"#f5f5f5\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"350\" padding_top=\"80\" padding_bottom=\"10\" margin_bottom=\"0\" first_page=\"false\" last_page=\"true\"][vc_column width=\"1/3\"][mk_icon_box title=\"Online shopping\" text_size=\"16\" font_weight=\"inherit\" read_more_txt=\"Read more\" read_more_url=\"#\" icon=\"moon-bag-2\" style=\"simple_ultimate\" icon_size=\"medium\" icon_location=\"top\" circled=\"true\" icon_color=\"#00c8d7\" icon_circle_color=\"#ededed\" box_blur=\"false\" txt_color=\"#777777\" margin=\"30\" width=\"1/1\" el_position=\"first\" rounded_circle=\"true\" icon_circle_border_color=\"#e0e0e0\" animation=\"bottom-to-top\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla eget porta mi, sit amet volutpat ipsum. Sed in nisi non metus fringilla pulvinar eget sit amet enim.[/mk_icon_box][/vc_column][vc_column width=\"1/3\"][mk_icon_box title=\"Amazing slideshows\" text_size=\"16\" read_more_txt=\"Read more\" read_more_url=\"#\" icon=\"moon-stack\" style=\"simple_ultimate\" icon_size=\"medium\" icon_location=\"top\" circled=\"false\" icon_color=\"#00c8d7\" icon_circle_color=\"#0bb697\" box_blur=\"false\" margin=\"30\" width=\"1/1\" rounded_circle=\"true\" txt_color=\"#777777\" font_weight=\"inherit\" animation=\"bottom-to-top\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla eget porta mi, sit amet volutpat ipsum. Sed in nisi non metus fringilla pulvinar eget sit amet enim.[/mk_icon_box][/vc_column][vc_column width=\"1/3\"][mk_icon_box title=\"Innovative features\" text_size=\"16\" read_more_txt=\"Read more\" read_more_url=\"#\" icon=\"moon-lamp-2\" style=\"simple_ultimate\" icon_size=\"medium\" icon_location=\"top\" circled=\"false\" icon_color=\"#00c8d7\" icon_circle_color=\"#0bb697\" box_blur=\"false\" margin=\"30\" width=\"1/1\" el_position=\"last\" rounded_circle=\"true\" txt_color=\"#777777\" font_weight=\"inherit\" animation=\"bottom-to-top\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla eget porta mi, sit amet volutpat ipsum. Sed in nisi non metus fringilla pulvinar eget sit amet enim.[/mk_icon_box][/vc_column][/mk_page_section][mk_page_section bg_image=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/quote-bg-01.jpg\" attachment=\"fixed\" bg_position=\"center bottom\" bg_repeat=\"repeat\" bg_stretch=\"true\" enable_3d=\"true\" speed_factor=\"0.2\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"500\" padding_top=\"250\" padding_bottom=\"10\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\" section_id=\"about\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"32\" font_weight=\"inhert\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"Crete+Round\" font_type=\"google\" align=\"center\" el_class=\"mk-italic-text\"]Success finally came when we were able to convince some creative men that good appearance was a salable commodity, that it often cut costs, enhanced a product’s prestige, raised corporate profits, benefited the customer and increased employment.[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"16\" font_weight=\"normal\" margin_top=\"50\" margin_bottom=\"18\" font_family=\"Open+Sans:400,600,700,800\" font_type=\"google\" align=\"center\" el_class=\"mk-letter-spacing\"]- RAYMOND LOEWY[/mk_fancy_title][/vc_column][/mk_page_section][vc_row][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#252525\" size=\"38\" font_weight=\"300\" margin_top=\"20\" margin_bottom=\"25\" font_family=\"none\" align=\"center\" el_class=\"mk-line-height-50\"]We are a team of dedicated designer\r\nand committed strategists.[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"14\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"40\" font_family=\"none\" align=\"center\" el_class=\"mk-letter-spacing mk-padding-sub-heading \"]<span style=\"color: #ef662f;\">WHO WE ARE</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"0\" el_class=\"mk-line-height\"]<span style=\"color: #61656a;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem eget, mollis nisi. Nullam mollis sapien viverra, malesuada orci eget, mollis mauris.</span> <span style=\"color: #ef662f;\">Read Bios.</span>[/vc_column_text][mk_padding_divider size=\"110\"][mk_employees style=\"simple\" column=\"3\" rounded_image=\"true\" box_blur=\"false\" count=\"3\" employees=\"77,78,73\" offset=\"0\" description=\"true\" order=\"ASC\" orderby=\"menu_order\" animation=\"fade-in\"][/vc_column][/vc_row][mk_page_section bg_image=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/cartographer.png\" attachment=\"fixed\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"0.2\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"300\" padding_top=\"80\" padding_bottom=\"130\" margin_bottom=\"0\" first_page=\"false\" last_page=\"true\" section_id=\"process\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"38\" font_weight=\"300\" margin_top=\"20\" margin_bottom=\"90\" font_family=\"none\" align=\"center\" el_class=\"mk-line-height-50\"]Our Process[/mk_fancy_title][vc_row_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://artbees.net/themes/jupiter-demo/wp-content/uploads/2014/02/proc-01.png\" image_width=\"800\" image_height=\"350\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"left-to-right\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"20\" font_weight=\"bolder\" margin_top=\"40\" margin_bottom=\"10\" font_family=\"none\" align=\"left\" el_class=\"mk-ultra-bold\"]<span style=\"color: #ef662f;\">01 /</span> <span style=\"color: #ffffff;\">CONCEPTS AND BRAINSTORMING</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\" el_class=\"mk-font-size-process\"]<span style=\"color: #cccccc;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem.</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://artbees.net/themes/jupiter-demo/wp-content/uploads/2014/02/proc-04.png\" image_width=\"800\" image_height=\"350\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"left-to-right\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"20\" font_weight=\"bolder\" margin_top=\"40\" margin_bottom=\"10\" font_family=\"none\" align=\"left\" el_class=\"mk-ultra-bold\"]<span style=\"color: #ef662f;\">02 /</span> <span style=\"color: #ffffff;\">RESEARCH &amp; DEVELOPMENT</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\" el_class=\"mk-font-size-process\"]<span style=\"color: #cccccc;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem.</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://artbees.net/themes/jupiter-demo/wp-content/uploads/2014/02/proc-02.png\" image_width=\"800\" image_height=\"350\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"right-to-left\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"20\" font_weight=\"bolder\" margin_top=\"40\" margin_bottom=\"10\" font_family=\"none\" align=\"left\" el_class=\"mk-ultra-bold\"]<span style=\"color: #ef662f;\">03 /</span> <span style=\"color: #ffffff;\">SKETCHING &amp; DRAFTING</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\" el_class=\"mk-font-size-process\"]<span style=\"color: #cccccc;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem.</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://artbees.net/themes/jupiter-demo/wp-content/uploads/2014/02/proc-03.png\" image_width=\"800\" image_height=\"350\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"right-to-left\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"20\" font_weight=\"bolder\" margin_top=\"40\" margin_bottom=\"10\" font_family=\"none\" align=\"left\" el_class=\"mk-ultra-bold\"]<span style=\"color: #ef662f;\">04 /</span> <span style=\"color: #ffffff;\">EXECUTION &amp; DIGITALISATION</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\" el_class=\"mk-font-size-process\"]<span style=\"color: #cccccc;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/mk_page_section][vc_row fullwidth=\"true\" id=\"portfolio\"][vc_column width=\"1/1\"][mk_edge_slider slides=\"40,62,66,68\" order=\"ASC\" orderby=\"menu_order\" full_height=\"true\" height=\"700\" animation_speed=\"700\" slideshow_speed=\"5000\" direction_nav=\"true\"][/vc_column][/vc_row][mk_page_section bg_image=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/quote-bg-02.jpg\" attachment=\"fixed\" bg_position=\"center bottom\" bg_repeat=\"repeat\" bg_stretch=\"true\" enable_3d=\"true\" speed_factor=\"0.2\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"500\" padding_top=\"250\" padding_bottom=\"10\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\" section_id=\"features\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"32\" font_weight=\"inhert\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"Crete+Round\" font_type=\"google\" align=\"center\" el_class=\"mk-italic-text\"]The goal is not to make your user interface as realistic as possible. The goal is to add those details which help users identify what an element is, and how to interact with it, and to add no more than those details.[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"16\" font_weight=\"normal\" margin_top=\"50\" margin_bottom=\"18\" font_family=\"Open+Sans:400,600,700,800\" font_type=\"google\" align=\"center\" el_class=\"mk-letter-spacing\"]-  LUKAS MATHIS[/mk_fancy_title][/vc_column][/mk_page_section][vc_row][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#252525\" size=\"38\" font_weight=\"300\" margin_top=\"20\" margin_bottom=\"25\" font_family=\"none\" align=\"center\" el_class=\"mk-line-height-50\"]Providing value to businesses by aligning smart design strategies with inspired marketing.[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"14\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"40\" font_family=\"none\" align=\"center\" el_class=\"mk-letter-spacing mk-padding-sub-heading \"]<span style=\"color: #ef662f;\">FEATURES &amp; CAPABILITIES</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"0\" el_class=\"mk-line-height\"]<span style=\"color: #61656a;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem eget, mollis nisi. Nullam mollis sapien viverra, malesuada orci eget, mollis mauris.</span> <span style=\"color: #ef662f;\">Review features.</span>[/vc_column_text][mk_padding_divider size=\"110\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"icon-facetime-video\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]NARRATIVE VIDEO TUTORIALS[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"15\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem eget, mollis nisi. Nullam mollis sapien viverra, malesuada orci eget, mollis mauris. Nunc commodo leo nec egestas hendrerit. Proin tincidunt mauris sed blandit imperdiet. Etiam nulla nisi, malesuada eu justo laoreet, lobortis congue libero. Duis sit amet urna vitae sem facilisis cursus.[/vc_column_text][mk_custom_list style=\"f03d\" icon_color=\"#ef662f\" margin_bottom=\"0\" align=\"none\"]\r\n<ul>\r\n	<li><strong><a href=\"http://www.youtube.com/user/artbeesthemes?feature=watch\">Check out videos</a></strong></li>\r\n</ul>\r\n[/mk_custom_list][mk_padding_divider size=\"50\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"moon-mobile\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]RESPONSIVE &amp; RETINA DISPLAY READY[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"15\"]Integer ac cursus neque, at tristique mauris. Suspendisse sed velit ante. In metus nunc, varius sollicitudin rutrum eu, varius ac nisi. Vivamus id diam est.[/vc_column_text][mk_custom_list style=\"e26a\" icon_color=\"#ef662f\" margin_bottom=\"0\" align=\"none\"]\r\n<ul>\r\n	<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</li>\r\n	<li>Proin non blandit</li>\r\n	<li>Sed eget tortor</li>\r\n	<li>Integer ac cursus neque</li>\r\n	<li>Pellentesque pretium</li>\r\n</ul>\r\n[/mk_custom_list][mk_padding_divider size=\"50\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"icon-copy\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]DEMO CONTENTS AVAILABLE[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"15\"]Pellentesque pretium arcu molestie fermentum suscipit. Curabitur et laoreet eros. Proin tincidunt, neque ac laoreet facilisis, nibh turpis consequat ipsum, cursus auctor metus sapien a arcu. Phasellus condimentum felis nec sodales hendrerit. Aliquam non gravida quam, eget pharetra mauris. Proin eu viverra tortor. Integer bibendum erat orci. Curabitur molestie tempus tortor, et imperdiet risus placerat sed. Integer pulvinar elit erat, vitae sagittis tortor accumsan facilisis. Curabitur vel cursus eros. Integer convallis sodales dolor, at feugiat dolor laoreet vel. Mauris porttitor diam ut pulvinar ultrices. Maecenas in enim non nisl fermentum lobortis.[/vc_column_text][mk_custom_list style=\"e02c\" icon_color=\"#ef662f\" margin_bottom=\"0\" align=\"none\"]\r\n<ul>\r\n	<li><strong><a href=\"http://artbees.net/themes/jupiter/docs/#ImportingDemoContent\">Download contents now</a></strong></li>\r\n</ul>\r\n[/mk_custom_list][mk_padding_divider size=\"50\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"moon-cube-3\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]POWERFUL PAGE COMPOSER[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"15\"]Integer ac cursus neque, at tristique mauris. Suspendisse sed velit ante. In metus nunc, varius sollicitudin rutrum eu, varius ac nisi. Vivamus id diam est.[/vc_column_text][mk_custom_list style=\"e1d5\" icon_color=\"#ef662f\" margin_bottom=\"0\" align=\"none\"]\r\n<ul>\r\n	<li><strong><a href=\"http://artbees.net/themes/jupiter-demo/key-features/\">Check out features</a></strong></li>\r\n</ul>\r\n[/mk_custom_list][mk_padding_divider size=\"50\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"icon-bolt\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]OUTSTANDING ADMIN PANEL[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"50\"]Pellentesque pretium arcu molestie fermentum suscipit. Curabitur et laoreet eros. Proin tincidunt, neque ac laoreet facilisis, nibh turpis consequat ipsum, cursus auctor metus sapien a arcu. Phasellus condimentum felis nec sodales hendrerit. Aliquam non gravida quam, eget pharetra mauris. Proin eu viverra tortor. Integer bibendum erat orci. Curabitur molestie tempus <span style=\"color: #ef662f;\">risus placerat sed.</span>\r\n\r\nInteger pulvinar elit erat, vitae sagittis tortor accumsan facilisis. Curabitur vel cursus eros. Integer convallis sodales dolor, at feugiat dolor laoreet vel. Mauris porttitor diam ut pulvinar ultrices.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"moon-umbrella\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]DEDICATED &amp; RELIABLE SUPPORT[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"15\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem eget, mollis nisi. Nullam mollis sapien viverra, malesuada orci eget, mollis mauris. Nunc commodo leo nec egestas hendrerit. Proin tincidunt mauris sed blandit imperdiet. Etiam nulla nisi, malesuada eu justo laoreet, lobortis congue libero. Duis sit amet urna vitae sem facilisis cursus.[/vc_column_text][mk_custom_list style=\"e47d\" icon_color=\"#ef662f\" margin_bottom=\"0\" align=\"none\"]\r\n<ul>\r\n	<li><strong><a href=\"http://artbees.net/support/\">Go to Support forum</a></strong></li>\r\n</ul>\r\n[/mk_custom_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][mk_page_section bg_color=\"#00c8d7\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" padding_top=\"75\" padding_bottom=\"0\" margin_bottom=\"0\" first_page=\"false\" last_page=\"true\" min_height=\"125\"][vc_column width=\"2/3\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"32\" font_weight=\"normal\" margin_top=\"0\" margin_bottom=\"0\" font_family=\"none\" align=\"left\" el_class=\"mk-ultra-bold\"]Start making jaw dropping websites. Easy.[/mk_fancy_title][/vc_column][vc_column width=\"1/3\"][mk_button dimension=\"three\" size=\"large\" outline_skin=\"dark\" outline_active_color=\"#fff\" outline_hover_color=\"#333333\" bg_color=\"#ef662f\" text_color=\"light\" target=\"_self\" align=\"left\" margin_top=\"0\" margin_bottom=\"0\"]CREATE WEBSITE NOW[/mk_button][/vc_column][/mk_page_section][mk_page_section bg_color=\"#363636\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"130\" padding_top=\"90\" padding_bottom=\"40\" margin_bottom=\"0\" first_page=\"false\" last_page=\"true\" section_id=\"contact\"][vc_column width=\"1/1\"][mk_font_icons icon=\"moon-phone-3\" color=\"#636363\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"center\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#00c8d7\" size=\"48\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"40\" font_family=\"none\" align=\"center\" el_class=\"mk-ultra-bold\"]30.4737.3795[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#959595\" size=\"16\" font_weight=\"bold\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"][mk_font_icons icon=\"moon-envelop\" color=\"#00c8d7\" size=\"small\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\"] INQUIRIES@ARTBEES.NET [mk_font_icons icon=\"icon-map-marker\" color=\"#00c8d7\" size=\"small\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\"] DIESACHBEARBEITER SCHÖNHAUSER ALLEE 167C 10435\r\n\r\n&nbsp;\r\n\r\n[/mk_fancy_title][mk_padding_divider size=\"60\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"32\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Say hello![/mk_fancy_title][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][mk_contact_form style=\"modern\" skin=\"light\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/mk_page_section][vc_row][vc_column width=\"1/1\"][mk_advanced_gmaps height=\"430\" latitude=\"48.8528\" longitude=\"2.372139\" zoom=\"16\" pan_control=\"true\" draggable=\"true\" scroll_wheel=\"false\" zoom_control=\"true\" map_type_control=\"true\" scale_control=\"true\" marker=\"true\" modify_coloring=\"true\" hue=\"#c35022\" saturation=\"-100\" lightness=\"-10\" pin_icon=\"http://artbees.net/themes/jupiter-demo/wp-content/uploads/2014/02/locator.png\"][/vc_column][/vc_row]", "Home", "", "publish", "open", "open", "", "home-2", "", "", "2014-08-02 06:04:54", "2014-08-02 06:04:54", "", "0", "http://techno-sites.com/scotts/?page_id=889", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("80", "1", "2011-11-09 05:17:35", "2011-11-09 05:17:35", "", "contentbottombg", "", "inherit", "open", "open", "", "contentbottombg", "", "", "2011-11-09 05:17:35", "2011-11-09 05:17:35", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/contentbottombg1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("89", "1", "2011-11-09 05:49:19", "2011-11-09 05:49:19", "http://www.scottsdaleseville.com/wp-content/uploads/2011/11/skybg1.png", "skybg1.png", "", "inherit", "open", "open", "", "skybg1-png", "", "", "2011-11-09 05:49:19", "2011-11-09 05:49:19", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/skybg1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("130", "1", "2011-11-11 05:12:32", "2011-11-11 05:12:32", "http://www.scottsdaleseville.com/wp-content/uploads/2011/11/bannerinfo1.png", "bannerinfo1.png", "", "inherit", "open", "open", "", "bannerinfo1-png", "", "", "2011-11-11 05:12:32", "2011-11-11 05:12:32", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerinfo1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("131", "1", "2011-11-11 05:15:56", "2011-11-11 05:15:56", "http://www.scottsdaleseville.com/wp-content/uploads/2011/11/bannerinfo2.png", "bannerinfo2.png", "", "inherit", "open", "open", "", "bannerinfo2-png", "", "", "2011-11-11 05:15:56", "2011-11-11 05:15:56", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerinfo2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("134", "1", "2011-11-11 06:23:35", "2011-11-11 06:23:35", "http://www.scottsdaleseville.com/wp-content/uploads/2011/11/bannerinfo4.png", "bannerinfo4.png", "", "inherit", "open", "open", "", "bannerinfo4-png", "", "", "2011-11-11 06:23:35", "2011-11-11 06:23:35", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerinfo4.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("135", "1", "2011-11-11 06:33:39", "2011-11-11 06:33:39", "http://www.scottsdaleseville.com/wp-content/uploads/2011/11/bannerinfo1.png", "bannerinfo1.png", "", "inherit", "open", "open", "", "bannerinfo1-png-2", "", "", "2011-11-11 06:33:39", "2011-11-11 06:33:39", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerinfo11.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("156", "1", "2011-11-12 04:05:07", "2011-11-12 04:05:07", "http://www.scottsdaleseville.com/wp-content/uploads/2011/11/skybigbg1.png", "skybigbg1.png", "", "inherit", "open", "open", "", "skybigbg1-png", "", "", "2011-11-12 04:05:07", "2011-11-12 04:05:07", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/skybigbg1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("325", "1", "2011-11-13 06:03:01", "2011-11-13 06:03:01", "http://www.scottsdaleseville.com/wp-content/uploads/2011/11/bannerinfo2.png", "bannerinfo2.png", "", "inherit", "open", "open", "", "bannerinfo2-png-2", "", "", "2011-11-13 06:03:01", "2011-11-13 06:03:01", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerinfo21.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("342", "1", "2011-11-13 19:02:18", "2011-11-13 19:02:18", "", "data=Ay5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7Ag,rgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg", "", "inherit", "open", "open", "", "dataay5gwbeob_wipldyoiwcfvxxvzu9xwj55ox7agrgoqplvyfvarpwhauqfsye59jdcc1owxgcwsydnatd_q_k4gxheuf2itfo33b-ee5ts4ygrelqcxwu6js2_2txer9eo83se4f_d5uf86n5aepr4f7zmtnayz3eijtpxrujhfhg", "", "", "2011-11-13 19:02:18", "2011-11-13 19:02:18", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/dataAy5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7AgrgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg.gif", "0", "attachment", "image/gif", "0");
INSERT INTO `wp_posts` VALUES("355", "1", "2011-11-13 20:07:58", "2011-11-13 20:07:58", "Picture of Scottsdale Rd and Indian Bend Corner", "bannerdirections", "", "inherit", "open", "open", "", "bannerdirections", "", "", "2011-11-13 20:07:58", "2011-11-13 20:07:58", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerdirections1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("357", "1", "2011-11-14 02:57:16", "2011-11-14 02:57:16", "", "bannerdirections", "", "inherit", "open", "open", "", "bannerdirections-2", "", "", "2011-11-14 02:57:16", "2011-11-14 02:57:16", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerdirections2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("358", "1", "2011-11-14 03:21:43", "2011-11-14 03:21:43", "", "bannerabout", "", "inherit", "open", "open", "", "bannerabout", "", "", "2011-11-14 03:21:43", "2011-11-14 03:21:43", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerabout1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("360", "1", "2011-11-14 03:26:48", "2011-11-14 03:26:48", "", "bannerabout", "", "inherit", "open", "open", "", "bannerabout-2", "", "", "2011-11-14 03:26:48", "2011-11-14 03:26:48", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerabout2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("362", "1", "2011-11-14 03:58:53", "2011-11-14 03:58:53", "", "bannerwoodwork", "", "inherit", "open", "open", "", "bannerwoodwork", "", "", "2011-11-14 03:58:53", "2011-11-14 03:58:53", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerwoodwork1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("363", "1", "2011-11-14 04:02:53", "2011-11-14 04:02:53", "", "bannerwildflower", "", "inherit", "open", "open", "", "bannerwildflower", "", "", "2011-11-14 04:02:53", "2011-11-14 04:02:53", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerwildflower1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("365", "1", "2011-11-14 04:19:54", "2011-11-14 04:19:54", "", "bannerdirectory", "", "inherit", "open", "open", "", "bannerdirectory", "", "", "2011-11-14 04:19:54", "2011-11-14 04:19:54", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerdirectory1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("367", "1", "2011-11-14 04:39:26", "2011-11-14 04:39:26", "", "bannerroys", "", "inherit", "open", "open", "", "bannerroys", "", "", "2011-11-14 04:39:26", "2011-11-14 04:39:26", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerroys1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("368", "1", "2011-11-14 04:48:09", "2011-11-14 04:48:09", "", "bannerroys", "", "inherit", "open", "open", "", "bannerroys-2", "", "", "2011-11-14 04:48:09", "2011-11-14 04:48:09", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerroys2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("370", "1", "2011-11-14 05:39:13", "2011-11-14 05:39:13", "http://www.scottsdaleseville.com/wp-content/uploads/2011/11/bannerhome1.png", "bannerhome1.png", "", "inherit", "open", "open", "", "bannerhome1-png", "", "", "2011-11-14 05:39:13", "2011-11-14 05:39:13", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerhome1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("374", "1", "2011-11-14 07:20:06", "2011-11-14 07:20:06", "", "M:Tenant Improvement832.00-Scotts SevilleMaster Site Plan Ret", "", "inherit", "open", "open", "", "mtenant-improvement832-00-scotts-sevillemaster-site-plan-ret", "", "", "2011-11-14 07:20:06", "2011-11-14 07:20:06", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/MasterSitePlan1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("381", "1", "2011-11-15 04:33:27", "2011-11-15 04:33:27", "", "directory of shops at Scottsdale Seville", "", "inherit", "open", "open", "", "directory-2", "", "", "2011-11-15 04:33:27", "2011-11-15 04:33:27", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/directory1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("383", "1", "2011-11-15 04:38:28", "2011-11-15 04:38:28", "", "directory", "", "inherit", "open", "open", "", "directory-3", "", "", "2011-11-15 04:38:28", "2011-11-15 04:38:28", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/directory2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("384", "1", "2011-11-15 04:39:39", "2011-11-15 04:39:39", "", "directory", "", "inherit", "open", "open", "", "directory-4", "", "", "2011-11-15 04:39:39", "2011-11-15 04:39:39", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/directory3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("387", "1", "2011-11-15 04:57:08", "2011-11-15 04:57:08", "", "directory", "", "inherit", "open", "open", "", "directory-5", "", "", "2011-11-15 04:57:08", "2011-11-15 04:57:08", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/directory4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("389", "1", "2011-11-15 05:16:57", "2011-11-15 05:16:57", "", "directory", "Directory of Shops at Scottsdale Seville", "inherit", "open", "open", "", "directory-6", "", "", "2011-11-15 05:16:57", "2011-11-15 05:16:57", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/directory5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("414", "1", "2011-11-18 04:58:30", "2011-11-18 04:58:30", "http://www.scottsdaleseville.com/wp-content/uploads/2011/11/bannerhome2.png", "bannerhome2.png", "", "inherit", "open", "open", "", "bannerhome2-png", "", "", "2011-11-18 04:58:30", "2011-11-18 04:58:30", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerhome2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("415", "1", "2011-11-18 05:10:55", "2011-11-18 05:10:55", "http://www.scottsdaleseville.com/wp-content/uploads/2011/11/bannerhome3.png", "bannerhome3.png", "", "inherit", "open", "open", "", "bannerhome3-png", "", "", "2011-11-18 05:10:55", "2011-11-18 05:10:55", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/bannerhome3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("426", "1", "2011-11-18 07:03:20", "2011-11-18 07:03:20", "", "banner21cakes", "", "inherit", "open", "open", "", "banner21cakes", "", "", "2011-11-18 07:03:20", "2011-11-18 07:03:20", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/banner21cakes1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("427", "1", "2011-11-18 07:11:35", "2011-11-18 07:11:35", "", "disk", "", "inherit", "open", "open", "", "disk", "", "", "2011-11-18 07:11:35", "2011-11-18 07:11:35", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/disk.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("432", "1", "2011-11-18 07:25:19", "2011-11-18 07:25:19", "", "cupcakes", "", "inherit", "open", "open", "", "cupcakes", "", "", "2011-11-18 07:25:19", "2011-11-18 07:25:19", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/cupcakes.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("442", "1", "2011-11-25 05:10:36", "2011-11-25 05:10:36", "http://www.scottsdaleseville.com/wp-content/uploads/2011/11/skybigbg2.png", "skybigbg2.png", "", "inherit", "open", "open", "", "skybigbg2-png", "", "", "2011-11-25 05:10:36", "2011-11-25 05:10:36", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/skybigbg2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("443", "1", "2011-11-25 05:11:30", "2011-11-25 05:11:30", "http://www.scottsdaleseville.com/wp-content/uploads/2011/11/skybg2.png", "skybg2.png", "", "inherit", "open", "open", "", "skybg2-png", "", "", "2011-11-25 05:11:30", "2011-11-25 05:11:30", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/skybg2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("452", "1", "2011-11-26 06:43:36", "2011-11-26 06:43:36", "", "Cupcakes for K-9s", "", "inherit", "open", "open", "", "312906_305087216187261_116187768410541_1166339_343287708_n", "", "", "2011-11-26 06:43:36", "2011-11-26 06:43:36", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/312906_305087216187261_116187768410541_1166339_343287708_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("507", "1", "2011-11-28 20:43:29", "2011-11-28 20:43:29", "", "directory5", "", "inherit", "open", "open", "", "directory5", "", "", "2011-11-28 20:43:29", "2011-11-28 20:43:29", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/directory51.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("520", "1", "2011-12-05 19:32:51", "2011-12-05 19:32:51", "", "21cakeslogo", "", "inherit", "open", "open", "", "21cakeslogo", "", "", "2011-12-05 19:32:51", "2011-12-05 19:32:51", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/21cakeslogo1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("528", "1", "2011-12-05 19:40:56", "2011-12-05 19:40:56", "", "20 lounge logo", "", "inherit", "open", "open", "", "20-lounge-logo", "", "", "2011-12-05 19:40:56", "2011-12-05 19:40:56", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/20-lounge-logo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("531", "1", "2011-12-05 19:44:30", "2011-12-05 19:44:30", "", "20 lounge logo", "", "inherit", "open", "open", "", "20-lounge-logo-2", "", "", "2011-12-05 19:44:30", "2011-12-05 19:44:30", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/20-lounge-logo1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("534", "1", "2011-12-05 19:50:27", "2011-12-05 19:50:27", "", "BellaBridesmaidlogo", "", "inherit", "open", "open", "", "bellabridesmaidlogo", "", "", "2011-12-05 19:50:27", "2011-12-05 19:50:27", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/BellaBridesmaidlogo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("536", "1", "2011-12-05 19:53:06", "2011-12-05 19:53:06", "", "betteridge_logo2", "", "inherit", "open", "open", "", "betteridge_logo2", "", "", "2011-12-05 19:53:06", "2011-12-05 19:53:06", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/betteridge_logo2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("550", "1", "2012-08-20 05:52:45", "2012-08-20 05:52:45", "", "directorymap", "", "inherit", "open", "open", "", "directorymap", "", "", "2012-08-20 05:52:45", "2012-08-20 05:52:45", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("627", "1", "2013-01-06 20:55:12", "2013-01-06 20:55:12", "merle norman cosmetics scottsdale arizona seville", "header_logo", "", "inherit", "open", "open", "", "header_logo", "", "", "2013-01-06 20:55:12", "2013-01-06 20:55:12", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2013/01/header_logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("658", "1", "2013-02-05 06:29:14", "2013-02-05 06:29:14", "", "crystalwhitecakejpg-2349427_p9-1", "", "inherit", "open", "open", "", "crystalwhitecakejpg-2349427_p9-1", "", "", "2013-02-05 06:29:14", "2013-02-05 06:29:14", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("736", "1", "2013-11-15 05:25:14", "2013-11-15 05:25:14", "", "image001", "", "inherit", "open", "open", "", "image001", "", "", "2013-11-15 05:25:14", "2013-11-15 05:25:14", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2013/11/image001.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("755", "1", "2014-01-28 07:21:25", "2014-01-28 07:21:25", "", "Scottsdale Grand Opening Poster", "", "inherit", "open", "open", "", "scottsdale-grand-opening-poster", "", "", "2014-01-28 07:21:25", "2014-01-28 07:21:25", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/01/Scottsdale-Grand-Opening-Poster.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("759", "1", "2014-01-28 07:25:49", "2014-01-28 07:25:49", "", "image001", "", "inherit", "open", "open", "", "image001-2", "", "", "2014-01-28 07:25:49", "2014-01-28 07:25:49", "", "758", "http://techno-sites.com/scotts/wp-content/uploads/2014/01/image001.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("760", "1", "2014-01-28 07:25:50", "2014-01-28 07:25:50", "", "image002", "", "inherit", "open", "open", "", "image002", "", "", "2014-01-28 07:25:50", "2014-01-28 07:25:50", "", "758", "http://techno-sites.com/scotts/wp-content/uploads/2014/01/image002.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("761", "1", "2014-01-28 07:25:51", "2014-01-28 07:25:51", "", "image003", "", "inherit", "open", "open", "", "image003", "", "", "2014-01-28 07:25:51", "2014-01-28 07:25:51", "", "758", "http://techno-sites.com/scotts/wp-content/uploads/2014/01/image003.gif", "0", "attachment", "image/gif", "0");
INSERT INTO `wp_posts` VALUES("762", "1", "2014-01-28 07:25:51", "2014-01-28 07:25:51", "", "image004", "", "inherit", "open", "open", "", "image004", "", "", "2014-01-28 07:25:51", "2014-01-28 07:25:51", "", "758", "http://techno-sites.com/scotts/wp-content/uploads/2014/01/image004.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("763", "1", "2014-01-28 07:25:51", "2014-01-28 07:25:51", "", "image005", "", "inherit", "open", "open", "", "image005", "", "", "2014-01-28 07:25:51", "2014-01-28 07:25:51", "", "758", "http://techno-sites.com/scotts/wp-content/uploads/2014/01/image005.gif", "0", "attachment", "image/gif", "0");
INSERT INTO `wp_posts` VALUES("770", "1", "2014-03-12 06:33:01", "2014-03-12 06:33:01", "", "Burger21", "", "inherit", "open", "open", "", "burger21", "", "", "2014-03-12 06:33:01", "2014-03-12 06:33:01", "", "769", "http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("792", "1", "2014-04-29 07:18:06", "2014-04-29 07:18:06", "", "GHB_Mother\'s_Day_Event", "", "inherit", "open", "open", "", "ghb_mothers_day_event", "", "", "2014-04-29 07:18:06", "2014-04-29 07:18:06", "", "396", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/GHB_Mothers_Day_Event.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("806", "1", "2014-04-29 07:34:18", "2014-04-29 07:34:18", "", "Poster_Seville-1a", "", "inherit", "open", "open", "", "poster_seville-1a", "", "", "2014-04-29 07:34:18", "2014-04-29 07:34:18", "", "805", "http://techno-sites.com/scotts/wp-content/uploads/2014/04/Poster_Seville-1a.pdf", "0", "attachment", "application/pdf", "0");
INSERT INTO `wp_posts` VALUES("807", "1", "2014-04-29 07:36:53", "2014-04-29 07:36:53", "", "Poster_Seville.ai", "", "inherit", "open", "open", "", "poster_seville-ai", "", "", "2014-04-29 07:36:53", "2014-04-29 07:36:53", "", "805", "http://techno-sites.com/scotts/wp-content/uploads/2014/04/wildhorsesofarizona.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("813", "1", "2014-05-02 15:27:27", "2014-05-02 15:27:27", "", "MomDay14GHB", "", "inherit", "open", "open", "", "momday14ghb", "", "", "2014-05-02 15:27:27", "2014-05-02 15:27:27", "", "16", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("823", "1", "2014-05-07 01:30:56", "2014-05-07 01:30:56", "", "logo_mail", "", "inherit", "open", "open", "", "logo_mail", "", "", "2014-05-07 01:30:56", "2014-05-07 01:30:56", "", "822", "http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("824", "1", "2014-05-07 01:30:58", "2014-05-07 01:30:58", "", "New-ScottsdaleGOEB", "", "inherit", "open", "open", "", "new-scottsdalegoeb", "", "", "2014-05-07 01:30:58", "2014-05-07 01:30:58", "", "822", "http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("837", "1", "2014-08-01 22:15:06", "2014-08-01 22:15:06", "", "betteridgejewelers", "", "inherit", "open", "open", "", "betteridgejewelers", "", "", "2014-08-01 22:15:06", "2014-08-01 22:15:06", "", "164", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/betteridgejewelers.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("838", "1", "2011-11-08 17:51:02", "2011-11-08 17:51:02", "<img class=\"aligncenter size-full wp-image-12\" title=\"Scottsdale Seville Shopping\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/banner6501.png\" alt=\"Shopping at Scottsdale Seville Picture\" width=\"650\" height=\"198\" />This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n<div style=\"width: 600px; margin: 0 auto:;\">\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\n...or something like this:\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickies to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\nAs a new WordPress user, you should go to <a href=\"http://www.scottsdaleseville.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!\n\n</div>", "Sample Page", "", "publish", "open", "open", "", "sample-page-2", "", "", "2011-11-08 17:51:02", "2011-11-08 17:51:02", "", "0", "http://www.scottsdaleseville.com/?page_id=2", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("16", "1", "2011-11-08 19:01:31", "2011-11-08 19:01:31", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p1.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p3.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p2.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p4.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"14\" margin_bottom=\"5\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"31\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"Copse\" align=\"center\" font_type=\"google\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"20\" margin_bottom=\"0\"][/vc_column][/vc_row]", "Home", "", "publish", "open", "open", "", "home", "", "", "2014-08-06 07:26:59", "2014-08-06 07:26:59", "", "0", "http://www.scottsdaleseville.com/?page_id=16", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("906", "1", "2014-08-02 06:53:30", "2014-08-02 06:53:30", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"inhert\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 06:53:30", "2014-08-02 06:53:30", "", "16", "http://techno-sites.com/scotts/?p=906", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("907", "1", "2014-08-02 06:56:14", "2014-08-02 06:56:14", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_padding_divider size=\"20\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 06:56:14", "2014-08-02 06:56:14", "", "16", "http://techno-sites.com/scotts/?p=907", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("61", "1", "2011-11-08 23:58:52", "2011-11-08 23:58:52", "<div style=\"margin-top: -35px;\">\n<h1 style=\"text-align: center;\"><a href=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/21cakeslogo1.png\"><img class=\"aligncenter size-medium wp-image-520\" title=\"21cakeslogo\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/21cakeslogo1-300x120.png\" alt=\"21 cakes logo\" width=\"300\" height=\"120\" /></a>21 Cakes</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.21cakes.com\" target=\"_blank\">www.21cakes.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMonday-Wednesday: 10am-7pm\nThursday-Saturday: 10am-8pm\nSunday: 11pm-4pm</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite D-175</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480.699.6220</p>\n<p style=\"text-align: center;\"><img class=\"aligncenter size-full wp-image-427\" title=\"disk\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/disk.png\" alt=\"\" width=\"50\" height=\"49\" /><em>Pretty little cupcakes for all your special occasions</em></p>\n<p style=\"text-align: center;\">Enticing cupcakes that are delectable and pretty. The best cupcakes to come out of the oven in all of Scottsdale, Arizona. Cupcakes are baked fresh daily by owner Linda Schneider.</p>\n<p style=\"text-align: center;\">Cupcakes and frostings can be mixed and matched to suit your taste...and put a smile on your face! Standard size cupcakes $3.35 each  or  $37 per dozen, mini cupcakes are $22 per dozen, minimum order 2 dozen.</p>\n<p style=\"text-align: center;\"><em>Parisian macarons</em> baked on premises by owner Linda Schneider.</p>\n<p style=\"text-align: center;\"><img class=\"size-full wp-image-432 alignnone aligncenter\" title=\"cupcakes\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/cupcakes.jpg\" alt=\"21 cupcakes events photos\" width=\"613\" height=\"227\" /></p>\n\n</div>", "21 Cakes", "", "publish", "open", "open", "", "21-cakes-cupcakery", "", "", "2011-11-08 23:58:52", "2011-11-08 23:58:52", "", "0", "http://www.scottsdaleseville.com/?page_id=61", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("76", "1", "2011-11-09 05:03:00", "2011-11-09 05:03:00", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" image_width=\"550\" image_height=\"260\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\"][mk_font_icons icon=\"icon-zoom-in\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ed1c24\" align=\"center\" target=\"_blank\" link=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#221e1f\" size=\"18\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]<a href=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" target=\"_blank\">click on directory to enlarge</a>[/mk_fancy_title][vc_row_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>SHOP</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Nove’</td>\r\n<td>120</td>\r\n</tr>\r\n<tr>\r\n<td>Gifted Hands</td>\r\n<td>107</td>\r\n</tr>\r\n<tr>\r\n<td>The Leopard’s Spot Boutique</td>\r\n<td>162</td>\r\n</tr>\r\n<tr>\r\n<td>Davinci Luxe</td>\r\n<td>176</td>\r\n</tr>\r\n<tr>\r\n<td>Crease Liberty</td>\r\n<td>177</td>\r\n</tr>\r\n<tr>\r\n<td>Draper’s &amp; Damon’s</td>\r\n<td>191</td>\r\n</tr>\r\n<tr>\r\n<td>Betteridge Jewelers</td>\r\n<td>102</td>\r\n</tr>\r\n<tr>\r\n<td>Duxiana</td>\r\n<td>103</td>\r\n</tr>\r\n<tr>\r\n<td>Azadi Fine Rugs &amp; Antiques</td>\r\n<td>124</td>\r\n</tr>\r\n<tr>\r\n<td>Sole Sports Running Zone</td>\r\n<td>170</td>\r\n</tr>\r\n<tr>\r\n<td>Wild Birds Unlimited</td>\r\n<td>174</td>\r\n</tr>\r\n<tr>\r\n<td>Home-ology</td>\r\n<td>142</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>DINE</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Jamba Juice</td>\r\n<td>100</td>\r\n</tr>\r\n<tr>\r\n<td>Starbucks</td>\r\n<td>101</td>\r\n</tr>\r\n<tr>\r\n<td>La Petite France Bistro</td>\r\n<td>127</td>\r\n</tr>\r\n<tr>\r\n<td>ShinBay</td>\r\n<td>154</td>\r\n</tr>\r\n<tr>\r\n<td>Terrior Wine Pub</td>\r\n<td>157</td>\r\n</tr>\r\n<tr>\r\n<td>Wildflower Bread Company</td>\r\n<td>171</td>\r\n</tr>\r\n<tr>\r\n<td>21 Cakes</td>\r\n<td>175</td>\r\n</tr>\r\n<tr>\r\n<td>Cove Trattoria</td>\r\n<td>184</td>\r\n</tr>\r\n<tr>\r\n<td>Ruth’s Chris Steak House</td>\r\n<td>290</td>\r\n</tr>\r\n<tr>\r\n<td>Fogo of Scottsdale</td>\r\n<td>147</td>\r\n</tr>\r\n<tr>\r\n<td>Burger 21</td>\r\n<td>172</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>RELAX</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Rumors Hair &amp; Nail Salon</td>\r\n<td>105</td>\r\n</tr>\r\n<tr>\r\n<td>20 Lounge Nail Bar &amp; Boutique</td>\r\n<td>158</td>\r\n</tr>\r\n<tr>\r\n<td>Massage Envy</td>\r\n<td>166</td>\r\n</tr>\r\n<tr>\r\n<td>Beverly Hills Rejuvenation Center</td>\r\n<td>164</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>SERVICES</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Encore Cleaners</td>\r\n<td>182</td>\r\n</tr>\r\n<tr>\r\n<td>Beal Bank</td>\r\n<td>135</td>\r\n</tr>\r\n<tr>\r\n<td>Matteson Realty Services</td>\r\n<td>195</td>\r\n</tr>\r\n<tr>\r\n<td>Scottrade</td>\r\n<td>140</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "Directory", "", "publish", "open", "open", "", "directory", "", "", "2014-08-05 07:15:52", "2014-08-05 07:15:52", "", "0", "http://www.scottsdaleseville.com/?page_id=76", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("160", "1", "2011-11-12 06:27:12", "2011-11-12 06:27:12", "<h1 style=\"text-align: center;\">Jamba Juice</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.jambajuice.com/\" target=\"_blank\">www.jambajuice.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMon-Fri 6:30am-8pm \nSat 8am-8pm           \nSun 8am-6pm</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite A-100</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-609-8250</p>", "Jamba Juice", "", "publish", "open", "open", "", "jamba-juice", "", "", "2011-11-12 06:27:12", "2011-11-12 06:27:12", "", "0", "http://www.scottsdaleseville.com/?page_id=160", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("162", "1", "2011-11-12 06:28:02", "2011-11-12 06:28:02", "<div style=\"background-image: url(\'http://www.scottsdaleseville.com/wp-content/uploads/2011/11/starbuckslogo.png\'); background-repeat: no-repeat; background-position: center top; height: 600px;\">\n<h1 style=\"text-align: center;\">Starbucks Coffee Co.</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.starbucks.com/\" target=\"_blank\">www.starbucks.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\n5am-7:30pm</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite A-101</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-348-0056</p>\n\n</div>", "Starbucks Coffee Co.", "", "publish", "open", "open", "", "starbucks-coffee-co", "", "", "2011-11-12 06:28:02", "2011-11-12 06:28:02", "", "0", "http://www.scottsdaleseville.com/?page_id=162", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("164", "1", "2011-11-12 06:28:35", "2011-11-12 06:28:35", "<a href=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/betteridge_logo2.jpg\"><img class=\"aligncenter size-full wp-image-536\" title=\"betteridge_logo2\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/betteridge_logo2.jpg\" alt=\"betteridge jewelers logo\" width=\"389\" height=\"150\" /></a>\n<div>\n<h1 style=\"text-align: center;\">Betteridge Jewlers</h1>\n<p style=\"text-align: center;\"><a href=\"http://betteridgejewelers.com/\" target=\"_blank\">www.BetteridgeJewelers.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMon-Fri: 10am-5:30pm\nSat: 10am-4pm\nSunday: Closed</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite A-102</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-948-0777</p>\n\n</div>", "Betteridge Jewlers", "", "publish", "open", "open", "", "betteridge-jewlers", "", "", "2011-11-12 06:28:35", "2011-11-12 06:28:35", "", "0", "http://www.scottsdaleseville.com/?page_id=164", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("166", "1", "2011-11-12 06:28:44", "2011-11-12 06:28:44", "<h1 style=\"text-align: center;\">Duxiana</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.duxiana.com/us_en/index.shtml\" target=\"_blank\">www.duxiana.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMon-Sat 10am-6pm</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite A-103</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-991-9800</p>", "Duxiana  ", "", "publish", "open", "open", "", "duxiana", "", "", "2011-11-12 06:28:44", "2011-11-12 06:28:44", "", "0", "http://www.scottsdaleseville.com/?page_id=166", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("168", "1", "2011-11-12 06:29:05", "2011-11-12 06:29:05", "<h1 style=\"text-align: center;\">Rumors Salon </h1>\n<p style=\"text-align: center;\"><a href=\"http://rumorssalonaz.com/\" target=\"_blank\">www.rumorssalonaz.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMon, Fri & Sat: 8am-6pm \nTues-Thurs: 8am-8pm \nSun: Closed</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite A-105</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-998-1888</p>", "Rumors Salon ", "", "publish", "open", "open", "", "rumors-salon", "", "", "2011-11-12 06:29:05", "2011-11-12 06:29:05", "", "0", "http://www.scottsdaleseville.com/?page_id=168", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("170", "1", "2011-11-12 06:32:20", "2011-11-12 06:32:20", "<h1 style=\"text-align: center;\">Azadi</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.azadifinerugs.com/\" target=\"_blank\">www.azadifinerugs.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMon-Sat 10am-6pm</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite B-121 -126</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-483-4600</p>", "Azadi  ", "", "publish", "open", "open", "", "nove", "", "", "2011-11-12 06:32:20", "2011-11-12 06:32:20", "", "0", "http://www.scottsdaleseville.com/?page_id=170", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("173", "1", "2011-11-12 06:32:47", "2011-11-12 06:32:47", "<h1 style=\"text-align: center;\">La Petite France Bistro</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.lapetitefranceaz.com/\" target=\"_blank\">www.lapetitefranceaz.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nTues-Thurs 7:30am-10:00pm\nFri &amp; Sat 7:30am-11:00pm\nSun 9:00am-3:00pm</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nB-127/128</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-922-3727</p>", "La Petite France Bistro   ", "", "publish", "open", "open", "", "la-petite-france", "", "", "2011-11-12 06:32:47", "2011-11-12 06:32:47", "", "0", "http://www.scottsdaleseville.com/?page_id=173", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("175", "1", "2011-11-12 06:33:01", "2011-11-12 06:33:01", "<h1 style=\"text-align: center;\">Ironstone Bank</h1>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMon-Fri 9am-5pm </p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite B-135</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-624-0700</p>", "Ironstone Bank", "", "publish", "open", "open", "", "ironstone-bank", "", "", "2011-11-12 06:33:01", "2011-11-12 06:33:01", "", "0", "http://www.scottsdaleseville.com/?page_id=175", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("177", "1", "2011-11-12 06:33:18", "2011-11-12 06:33:18", "<div style=\"\">\n<h1 style=\"text-align: center;\"><a href=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/BellaBridesmaidlogo.jpg\"><img class=\"aligncenter size-full wp-image-534\" title=\"BellaBridesmaidlogo\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/BellaBridesmaidlogo.jpg\" alt=\"bella bridesmaid logo\" width=\"150\" height=\"150\" /></a>Bella Bridesmaid</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.bellabridesmaid.com/\" target=\"_blank\">www.bellabridesmaid.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nTues-Fri 11am-6pm\nSat 10am-5pm</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite C-143</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-292-7691</p>\n\n</div>", "Bella Bridesmaid ", "", "publish", "open", "open", "", "bella-bridesmaid", "", "", "2011-11-12 06:33:18", "2011-11-12 06:33:18", "", "0", "http://www.scottsdaleseville.com/?page_id=177", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("179", "1", "2011-11-12 06:33:41", "2011-11-12 06:33:41", "<h1 style=\"text-align: center;\">ShinBay</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.shinbay.com/shinbay/HOME.html\" target=\"_blank\">www.shinbay.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nWed-Sun 5:30pm-10pm</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite D-154</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-664-0180</p>", "Shinbay", "", "publish", "open", "open", "", "shinbay", "", "", "2011-11-12 06:33:41", "2011-11-12 06:33:41", "", "0", "http://www.scottsdaleseville.com/?page_id=179", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("181", "1", "2011-11-12 06:34:03", "2011-11-12 06:34:03", "<h1 style=\"text-align: center;\">Terroir Wine Pub </h1>\n<p style=\"text-align: center;\"><a href=\"http://terroirwinepub.com/\" target=\"_blank\">www.terroirwinepub.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMon: 11am - 10pm\nTues: 11am - 10pm\nWed: 11am - 10pm\nThurs: 11am - 10pm\nFri: 11am - 11pm\nSat: 1pm - 11pm\nSun: 1pm - 9pm </p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite D-157</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-922-3470</p>", "Terroir Wine Pub ", "", "publish", "open", "open", "", "terroir-wine-pub", "", "", "2011-11-12 06:34:03", "2011-11-12 06:34:03", "", "0", "http://www.scottsdaleseville.com/?page_id=181", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("183", "1", "2011-11-12 06:34:21", "2011-11-12 06:34:21", "<h1 style=\"text-align: center;\">Massage Envy</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.massageenvy.com/\" target=\"_blank\">www.massageenvy.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMon-Fri \nSat \nSun </p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 158</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n</p>", "Massage Envy", "", "publish", "open", "open", "", "massage-envy", "", "", "2011-11-12 06:34:21", "2011-11-12 06:34:21", "", "0", "http://www.scottsdaleseville.com/?page_id=183", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("185", "1", "2011-11-12 06:34:33", "2011-11-12 06:34:33", "<h1 style=\"text-align: center;\">Leopard\'s Spot Boutique</h1>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMon-Sat 10am-5pm</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 162</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-718-9719</p>", "Leopard\'s Spot Boutique", "", "publish", "open", "open", "", "leopards-spot-boutique", "", "", "2011-11-12 06:34:33", "2011-11-12 06:34:33", "", "0", "http://www.scottsdaleseville.com/?page_id=185", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("187", "1", "2011-11-12 06:34:45", "2011-11-12 06:34:45", "<h1 style=\"text-align: center;\">Naked Beauty Tanning</h1>\n<p style=\"text-align: center;\"><a href=\"http://nbtanning.com/\" target=\"_blank\">www.nbtanning.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMon, Tues & Fri 10am -8pm \nWed & Thur 10am-9pm \nSat 10am-5pm \nSun 12pm-5pm</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite D-164</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-659-3535</p>", "Naked Beauty Tanning", "", "publish", "open", "open", "", "naked-beauty-tanning", "", "", "2011-11-12 06:34:45", "2011-11-12 06:34:45", "", "0", "http://www.scottsdaleseville.com/?page_id=187", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("189", "1", "2011-11-12 06:35:00", "2011-11-12 06:35:00", "<div style=\"background-image: url(\'margin-top: -35px;\">\n<h1 style=\"text-align: center;\"><a href=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/20-lounge-logo1.jpg\"><img class=\"aligncenter size-full wp-image-531\" title=\"20 lounge logo\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/20-lounge-logo1.jpg\" alt=\"\" width=\"150\" height=\"127\" /></a>20 Lounge Spa</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.20lounge.com\" target=\"_blank\">www.20lounge.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMon-Fri 10am-7pm\nSat 10am-6pm\nSun 11am-5pm</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite D-166</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-699-8900</p>\n\n</div>", "20 Lounge Spa", "", "publish", "open", "open", "", "20-lounge-spa", "", "", "2011-11-12 06:35:00", "2011-11-12 06:35:00", "", "0", "http://www.scottsdaleseville.com/?page_id=189", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("191", "1", "2011-11-12 06:35:31", "2011-11-12 06:35:31", "<h1 style=\"text-align: center;\">The Dailey Method Exercise Studio</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.thedaileymethod.com/scottsdale.html\" target=\"_blank\">www.thedaileymethod.com/scottsdale.html</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nSee Website for Schedule of Classes</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite D-170</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-248-6440</p>", "The Dailey Method Exercise Studio", "", "publish", "open", "open", "", "the-dailey-method", "", "", "2011-11-12 06:35:31", "2011-11-12 06:35:31", "", "0", "http://www.scottsdaleseville.com/?page_id=191", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("193", "1", "2011-11-12 06:35:37", "2011-11-12 06:35:37", "<h1 style=\"text-align: center;\">Yogurtopia</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.yogurtopia.com\" target=\"_blank\">www.yogurtopia.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>	\nMon - Thu: 11:00am - 10:00pm\nFri - Sat: 11:00am - 11:00pm\nSun: 11:00am - 10:00pm</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 173</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-686-9790</p>", "Yogurtopia", "", "publish", "open", "open", "", "yogurtopia", "", "", "2011-11-12 06:35:37", "2011-11-12 06:35:37", "", "0", "http://www.scottsdaleseville.com/?page_id=193", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("195", "1", "2011-11-12 06:35:51", "2011-11-12 06:35:51", "<h1 style=\"text-align: center;\">Davinci Luxe</h1>\n\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMonday-Wednesday: \nThursday-Saturday: \nSunday: </p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite D-176</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-474-4973</p>", "Davinci Luxe", "", "publish", "open", "open", "", "davinci-luxe", "", "", "2011-11-12 06:35:51", "2011-11-12 06:35:51", "", "0", "http://www.scottsdaleseville.com/?page_id=195", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("198", "1", "2011-11-12 06:36:05", "2011-11-12 06:36:05", "<h1 style=\"text-align: center;\">Crease Liberty</h1>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\n</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite D-177</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n</p>", "Crease Liberty", "", "publish", "open", "open", "", "crease-liberty", "", "", "2011-11-12 06:36:05", "2011-11-12 06:36:05", "", "0", "http://www.scottsdaleseville.com/?page_id=198", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("201", "1", "2011-11-12 06:36:20", "2011-11-12 06:36:20", "<h1 style=\"text-align: center;\">Encore Cleaners</h1>\n<p style=\"text-align: center;\"><a href=\"http://encorescottsdale.com\" target=\"_blank\">www.encorescottsdale.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMonday - Friday: 7AM to 7 PM \nSaturday: 8AM to 4PM </p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 182</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-991-2267</p>", "Encore Cleaners", "", "publish", "open", "open", "", "encore-cleaners", "", "", "2011-11-12 06:36:20", "2011-11-12 06:36:20", "", "0", "http://www.scottsdaleseville.com/?page_id=201", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("203", "1", "2011-11-12 06:36:35", "2011-11-12 06:36:35", "<h1 style=\"text-align: center;\">The Cove Trattoria</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.thecovescottsdale.com/\" target=\"_blank\">www.thecovescottsdale.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMon-Fri 11am-9pm    \nSat - Sun 4pm-9pm </p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite E-184</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-951-8273</p>", "The Cove Trattoria", "", "publish", "open", "open", "", "the-cove-trattoria", "", "", "2011-11-12 06:36:35", "2011-11-12 06:36:35", "", "0", "http://www.scottsdaleseville.com/?page_id=203", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("205", "1", "2011-11-12 06:36:51", "2011-11-12 06:36:51", "<h1 style=\"text-align: center;\">Beal Bank</h1>\n<p style=\"text-align: center;\"><a href=\"https://www.bealbank.com/\" target=\"_blank\">www.bealbank.com/</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMonday-Friday:  9:00 to 4:00\nSaturday -Sunday: Closed</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 135</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n602-714-3838</p>", "Beal Bank", "", "publish", "open", "open", "", "beal-bank", "", "", "2011-11-12 06:36:51", "2011-11-12 06:36:51", "", "0", "http://www.scottsdaleseville.com/?page_id=205", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("207", "1", "2011-11-12 06:37:03", "2011-11-12 06:37:03", "<h1 style=\"text-align: center;\">Drapers & Damon\'s</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.drapers.com/\" target=\"_blank\">www.drapers.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nPlease contact local store for current store hours</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 191</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-951-1331</p>", "Drapers & Damon\'s", "", "publish", "open", "open", "", "drapers-damons", "", "", "2011-11-12 06:37:03", "2011-11-12 06:37:03", "", "0", "http://www.scottsdaleseville.com/?page_id=207", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("209", "1", "2011-11-12 06:37:18", "2011-11-12 06:37:18", "<h1 style=\"text-align: center;\">Matteson Realty Services, Inc.</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.mattesonrealty.com\" target=\"_blank\">www.mattesonrealty.com</a></p>\n<p style=\"text-align: center;\">Matteson Realty Services, In serves as the on-site Management &amp; Leasing office for Scottsdale Seville.</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 195</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\nLisa Grace  480-998-4774</p>", "Matteson Realty Services, Inc", "", "publish", "open", "open", "", "matteson-realty", "", "", "2011-11-12 06:37:18", "2011-11-12 06:37:18", "", "0", "http://www.scottsdaleseville.com/?page_id=209", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("211", "1", "2011-11-12 06:37:30", "2011-11-12 06:37:30", "<h1 style=\"text-align: center;\">Ruth\'s Chris Steakhouse</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.ruthschris.com/\" target=\"_blank\">www.ruthschris.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMonday - Thursday\n5:00 p.m. to 10:00 p.m.\nFriday - Saturday\n5:00 p.m. to 10:30 p.m.\nSunday\n4:30 p.m. to 9:30 p.m.</p>\n<p style=\"text-align: center;\">** HOLIDAY HOURS **\nThanksgiving Day\n12:00 p.m. - 8:00 p.m.</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 290</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-991-5988</p>", "Ruth\'s Chris Steakhouse", "", "publish", "open", "open", "", "ruths-chris-steakhouse", "", "", "2011-11-12 06:37:30", "2011-11-12 06:37:30", "", "0", "http://www.scottsdaleseville.com/?page_id=211", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("309", "1", "2011-11-13 05:22:52", "2011-11-13 05:22:52", "<h1 style=\"text-align: center;\">Wildflower Bread Company</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.wildflowerbread.com/\" target=\"_blank\">www.wildflowerbread.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMonday - Friday 6:00 AM - 9:00 PM\nSaturday 7:00 AM - 9:00 PM\nSunday 7:00 AM - 8:00 PM </p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 171</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-612-0606</p>", "Wildflower Bread Company", "", "publish", "open", "open", "", "wildflower-bread-co", "", "", "2011-11-13 05:22:52", "2011-11-13 05:22:52", "", "0", "http://www.scottsdaleseville.com/?page_id=309", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("326", "1", "2011-11-13 06:18:02", "2011-11-13 06:18:02", "<h1> About Scottsdale Seville</h1>", "About", "", "publish", "open", "open", "", "about-3", "", "", "2011-11-13 06:18:02", "2011-11-13 06:18:02", "", "0", "http://www.scottsdaleseville.com/?page_id=326", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("328", "1", "2011-11-13 06:18:27", "2011-11-13 06:18:27", "[vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d3325.539795248427!2d-111.92605953332553!3d33.53934888140348!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!1i0!3e6!4m0!4m5!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!3m2!1d33.5393489!2d-111.9239084!5e0!3m2!1sen!2sus!4v1407200074427\" width=\"1200\" height=\"300\" frameborder=\"0\"></iframe>[/vc_column_text][mk_padding_divider size=\"30\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"setpadding\"][vc_column width=\"1/3\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#b90e00\" size=\"22\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]Our Office[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]2125 S Priest , Suite 302\r\nTempe, AZ 85282\r\nEmail : info@SuntracSolar.com\r\nOffice : 1+ (480) 999-6091\r\nFax : 1+ (480) 999-6064[/vc_column_text][mk_font_icons icon=\"moon-twitter-3\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-facebook-4\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-google-plus-4\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"icon-instagram\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-stumbleupon-2\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-pinterest\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][/vc_column][vc_column width=\"2/3\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#b90e00\" size=\"22\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]Contact Us[/mk_fancy_title][mk_contact_form style=\"classic\" skin=\"dark\" phone=\"false\"][/vc_column][/vc_row]", "Directions", "", "publish", "open", "open", "", "directions-2", "", "", "2014-08-05 12:33:34", "2014-08-05 12:33:34", "", "0", "http://www.scottsdaleseville.com/?page_id=328", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("935", "1", "2014-08-02 09:42:31", "2014-08-02 09:42:31", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cnniReport1.png\" image_width=\"205\" image_height=\"46\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"22\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour – 21 Cakes[/mk_title_box][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-11.jpg\" image_width=\"759\" image_height=\"504\" crop=\"true\" lightbox=\"false\" frame_style=\"rounded\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][/vc_column][vc_column width=\"1/2\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]A bakery that adheres to an overriding philosophy: if it’s edible, it must be made completely from scratch. Everyday.\n\n21 Cakes specializes in one-of-a-kind, made-fresh-daily cupcakes, cakes, Parisian macarons, and on-site fresh roasted coffee. Conveniently located in The Scottsdale Seville shopping center in Scottsdale, Ariz., 21 Cakes’ elegant desserts are perfect for special occasions, a mid-week luncheon or a little indulgence, anytime.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"10\"]Their newest creation: The Skini Cupcake – It is vanilla cake with chocolate filling and marshmallow cream frosting. It is about half the fat and calories of a regular cupcake. It will be offered in additonal flavors as well. And FYI…it does not conatin any artificial sweeteners! Perfect in time for your new years resolution of eating healthier! Have your cake and eat it too![/vc_column_text][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"18\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]More about 21 Cakes:[/mk_title_box][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]Initially starting as a wholesale business, owner and baker Linda Schneider wanted to share her love of baking with a wider audience. 21 Cakes opened in August 2011 offering fresh desserts and pastries made daily. A perfectionist in her kitchen, Linda insists on using the highest quality ingredients from the United States and Europe, ensuring delectable, one-of-a-kind desserts, unmatched in the Scottsdale area.\n\nTo create their daily magic, Linda relies on family recipes that have been passed down from her grandmother; coupled with her professional training and her pastry chef’s professional training at Le Cordon Bleu in Scottsdale. Together, beautiful and delicious desserts are created that are a pleasure for the eyes and a sensation for the taste buds.\n\nLinda’s specialty is her traditional Parisian macaron. Not to be confused with the coconut covered cookies by a similar name, Linda’s macarons are made from her time-tested traditional French recipe that took her over a year and hundreds of\n\nmacarons to perfect. They have been compared to the true Parisian macarons of France. The Parisian Macarons from 21 Cakes is a process that takes days to create, with the finished product only available from Thursday–Sunday, (if they last that long).\n\nIn addition to the retail store offerings, 21 Cakes creates custom occasion desserts, perfect for any wedding, anniversary, birthday, or special event. Whether a simple or elaborate design, only the freshest and finest ingredients go into each masterpiece. Customers are ensured that the pastry made for their event will not only be the most beautiful work of art, but also the most delicious anyone has tasted.\n\n21 Cakes was named after the 21 Club in New York City, during the 1920’s Art Deco era, when life seemed to be more decadent and glamorous, and people appreciated the finer things. In today’s fast paced world, finding and experiencing glamor and decadence is harder to do. Luckily, people can add a little bit of luxury in their lives when they come to 21 Cakes and experience the delicious and beautiful works of art that are created there daily[/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/ireport_travelleisure.gray_.png\" image_width=\"176\" image_height=\"28\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"10\"]THIS IREPORT IS PART OF AN ASSIGNMENT THAT WE CREATED WITH TRAVEL + LEISURE: 100 PLACES TO EAT LIKE A LOCAL[/vc_column_text][/vc_column][/vc_row]", "Press", "", "inherit", "open", "open", "", "399-autosave-v1", "", "", "2014-08-02 09:42:31", "2014-08-02 09:42:31", "", "399", "http://techno-sites.com/scotts/?p=935", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("330", "1", "2011-11-13 06:19:07", "2011-11-13 06:19:07", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"20\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d3325.539795248427!2d-111.92605953332553!3d33.53934888140348!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!1i0!3e6!4m0!4m5!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!3m2!1d33.5393489!2d-111.9239084!5e0!3m2!1sen!2sus!4v1407200074427\" width=\"1200\" height=\"300\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][mk_contact_form style=\"modern\" skin=\"dark\" email=\"lgrace@mattesonrealty.com\" phone=\"false\"][/vc_column][vc_column width=\"1/2\"][mk_contact_info phone=\"480 998 4774\" email=\"lgrace@mattesonrealty.com\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\" person=\"Lisa Grace\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">Get Driving Directions</a>[/vc_column_text][/vc_column][/vc_row]", "Contact Us", "", "trash", "open", "open", "", "contact-2", "", "", "2014-08-06 07:40:24", "2014-08-06 07:40:24", "", "0", "http://www.scottsdaleseville.com/?page_id=330", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("336", "1", "2011-11-13 18:49:16", "2011-11-13 18:49:16", "<h1 style=\"text-align: center;\">Nové</h1>\n<p style=\"text-align: center;\"><a href=\"http://noveshop.com/\" target=\"_blank\">www.noveshop.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\n Mon-Sat 10am-6pm</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite B-120</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-292-9215</p>", "Nové", "", "publish", "open", "open", "", "nove-2", "", "", "2011-11-13 18:49:16", "2011-11-13 18:49:16", "", "0", "http://www.scottsdaleseville.com/?page_id=336", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("396", "1", "2011-11-15 05:32:34", "2011-11-15 05:32:34", "[vc_row][vc_column width=\"1/1\"][mk_blog style=\"modern\" column=\"3\" grid_image_height=\"725\" count=\"-1\" offset=\"0\" cat=\"9\" disable_meta=\"true\" disable_lightbox=\"true\" disable_comments_share=\"true\" full_content=\"false\" pagination=\"true\" pagination_style=\"2\" order=\"DESC\" orderby=\"date\"][/vc_column][/vc_row]", "Events", "", "publish", "open", "open", "", "events", "", "", "2014-08-04 06:43:13", "2014-08-04 06:43:13", "", "0", "http://www.scottsdaleseville.com/?page_id=396", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("399", "1", "2011-11-15 05:34:47", "2011-11-15 05:34:47", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cnniReport1.png\" image_width=\"205\" image_height=\"46\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"22\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour – 21 Cakes[/mk_title_box][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-11.jpg\" image_width=\"759\" image_height=\"504\" crop=\"true\" lightbox=\"false\" frame_style=\"rounded\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][/vc_column][vc_column width=\"1/2\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]A bakery that adheres to an overriding philosophy: if it’s edible, it must be made completely from scratch. Everyday.\r\n\r\n21 Cakes specializes in one-of-a-kind, made-fresh-daily cupcakes, cakes, Parisian macarons, and on-site fresh roasted coffee. Conveniently located in The Scottsdale Seville shopping center in Scottsdale, Ariz., 21 Cakes’ elegant desserts are perfect for special occasions, a mid-week luncheon or a little indulgence, anytime.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"10\"]Their newest creation: The Skini Cupcake – It is vanilla cake with chocolate filling and marshmallow cream frosting. It is about half the fat and calories of a regular cupcake. It will be offered in additonal flavors as well. And FYI…it does not conatin any artificial sweeteners! Perfect in time for your new years resolution of eating healthier! Have your cake and eat it too![/vc_column_text][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"18\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]More about 21 Cakes:[/mk_title_box][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]Initially starting as a wholesale business, owner and baker Linda Schneider wanted to share her love of baking with a wider audience. 21 Cakes opened in August 2011 offering fresh desserts and pastries made daily. A perfectionist in her kitchen, Linda insists on using the highest quality ingredients from the United States and Europe, ensuring delectable, one-of-a-kind desserts, unmatched in the Scottsdale area.\r\n\r\nTo create their daily magic, Linda relies on family recipes that have been passed down from her grandmother; coupled with her professional training and her pastry chef’s professional training at Le Cordon Bleu in Scottsdale. Together, beautiful and delicious desserts are created that are a pleasure for the eyes and a sensation for the taste buds.\r\n\r\nLinda’s specialty is her traditional Parisian macaron. Not to be confused with the coconut covered cookies by a similar name, Linda’s macarons are made from her time-tested traditional French recipe that took her over a year and hundreds of\r\n\r\nmacarons to perfect. They have been compared to the true Parisian macarons of France. The Parisian Macarons from 21 Cakes is a process that takes days to create, with the finished product only available from Thursday–Sunday, (if they last that long).\r\n\r\nIn addition to the retail store offerings, 21 Cakes creates custom occasion desserts, perfect for any wedding, anniversary, birthday, or special event. Whether a simple or elaborate design, only the freshest and finest ingredients go into each masterpiece. Customers are ensured that the pastry made for their event will not only be the most beautiful work of art, but also the most delicious anyone has tasted.\r\n\r\n21 Cakes was named after the 21 Club in New York City, during the 1920’s Art Deco era, when life seemed to be more decadent and glamorous, and people appreciated the finer things. In today’s fast paced world, finding and experiencing glamor and decadence is harder to do. Luckily, people can add a little bit of luxury in their lives when they come to 21 Cakes and experience the delicious and beautiful works of art that are created there daily[/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/ireport_travelleisure.gray_.png\" image_width=\"176\" image_height=\"28\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"10\"]THIS IREPORT IS PART OF AN ASSIGNMENT THAT WE CREATED WITH TRAVEL + LEISURE: 100 PLACES TO EAT LIKE A LOCAL[/vc_column_text][/vc_column][/vc_row]", "Press", "", "publish", "open", "open", "", "press", "", "", "2014-08-02 09:42:40", "2014-08-02 09:42:40", "", "0", "http://www.scottsdaleseville.com/?page_id=399", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("516", "1", "2011-12-05 18:58:16", "2011-12-05 18:58:16", "<p style=\"text-align: center;\">-------Coming Soon--------</p>", "Gallery", "", "publish", "open", "open", "", "gallery", "", "", "2011-12-05 18:58:16", "2011-12-05 18:58:16", "", "0", "http://www.scottsdaleseville.com/?page_id=516", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("542", "1", "2012-08-20 05:14:14", "2012-08-20 05:14:14", "<h1 style=\"text-align: center;\">Nimbus American Bistro &amp; Brewery</h1>\n<p style=\"text-align: center;\"><a href=\"http://nimbusamericanbistro.com/\">http://nimbusamericanbistro.com/</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nSunday-Thursday  11am-10pm\nFriday-Saturday 11am - 1am</p>\n<p style=\"text-align: center;\">Happy Hour:\nThursday – Sunday 3PM-7PM and\nReverse Happy Hour Friday &amp; Saturday 10PM – Close\nHappy Hour is ALL DAY: Monday,Tuesday and Wednesday.\n(Now – Labor Day 2012)</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 147</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n(480) 248-9212</p>", "Nimbus American Bistro & Brewery", "", "publish", "open", "open", "", "nimbus-american-bistro-brewery", "", "", "2012-08-20 05:14:14", "2012-08-20 05:14:14", "", "0", "http://www.scottsdaleseville.com/?page_id=542", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("569", "1", "2012-08-21 06:23:51", "2012-08-21 06:23:51", "<h1 style=\"text-align: center;\">Kellies Boutique</h1>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMonday-Saturday: 10am-7pm\nSunday: 11pm-6pm</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 172</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-306-8648</p>", "Kellies Boutique", "", "publish", "open", "open", "", "kellies-boutique", "", "", "2012-08-21 06:23:51", "2012-08-21 06:23:51", "", "0", "http://www.scottsdaleseville.com/?page_id=569", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("612", "1", "2012-10-07 02:07:01", "2012-10-07 02:07:01", "<div style=\"background-image: url(\'margin-top: -35px;\">\n<h1 style=\"text-align: center;\">Premium Power Solutions</h1>\n<p style=\"text-align: center;\"><strong>Hours:</strong></p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite D-7</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong></p>\n\n</div>", "Premium Power Solutions", "", "publish", "open", "open", "", "premium-power-solutions", "", "", "2012-10-07 02:07:01", "2012-10-07 02:07:01", "", "0", "http://www.scottsdaleseville.com/?page_id=612", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("615", "1", "2012-10-07 02:07:44", "2012-10-07 02:07:44", "", "Data Doctors", "", "publish", "open", "open", "", "data-doctors", "", "", "2012-10-07 02:07:44", "2012-10-07 02:07:44", "", "0", "http://www.scottsdaleseville.com/?page_id=615", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("617", "1", "2012-10-07 02:09:06", "2012-10-07 02:09:06", "", "Mastro\'s Steakhouse", "", "publish", "open", "open", "", "mastros-steakhouse", "", "", "2012-10-07 02:09:06", "2012-10-07 02:09:06", "", "0", "http://www.scottsdaleseville.com/?page_id=617", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("623", "1", "2013-01-06 21:05:45", "2013-01-06 21:05:45", "<h1 style=\"text-align: center;\">Wild Birds Unlimited</h1>\n<p style=\"text-align: center;\"><a href=\"http://scottsdale.wbu.com/\" target=\"_blank\">scottsdale.wbu.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\n</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 174</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong></p>", "Wild Birds Unlimited", "", "publish", "open", "open", "", "wild-birds-unlimited", "", "", "2013-01-06 21:05:45", "2013-01-06 21:05:45", "", "0", "http://www.scottsdaleseville.com/?page_id=623", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("624", "1", "2013-01-06 20:52:46", "2013-01-06 20:52:46", "<h1 style=\"text-align: center;\"><a href=\"http://www.scottsdaleseville.com/wp-content/uploads/2013/01/header_logo.png\"><img class=\"aligncenter size-full wp-image-627\" title=\"header_logo\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2013/01/header_logo.png\" alt=\"merle norman logo\" width=\"445\" height=\"67\" /></a></h1>\n<p style=\"text-align: center;\"><a href=\"http://www.merlenormanstudio.com/AZ/SCOTTSDALE/mn-9963/http://\">www.merlenormanstudio.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMonday - Saturday 10:00 am - 6:00 pm\nSunday - CLOSED</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite B-125</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n480-948-1659</p>", "Merle Norman Cosmetic Studio", "", "publish", "open", "open", "", "merle-norman", "", "", "2013-01-06 20:52:46", "2013-01-06 20:52:46", "", "0", "http://www.scottsdaleseville.com/?page_id=624", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("650", "1", "2013-01-06 21:32:38", "2013-01-06 21:32:38", "<h1 style=\"text-align: center;\">A B Barber</h1>\n<p style=\"text-align: center;\"><strong>Hours:</strong></p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 145</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong></p>", "A B Barber", "", "publish", "open", "open", "", "a-b-barber", "", "", "2013-01-06 21:32:38", "2013-01-06 21:32:38", "", "0", "http://www.scottsdaleseville.com/?page_id=650", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("672", "1", "2013-04-11 06:28:46", "2013-04-11 06:28:46", "<h1 style=\"text-align: center;\">Scottrade</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.scottrade.com\" target=\"_blank\">www.scottrade.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:\n</strong>M-F 8:00am - 5:00pm<strong>\n</strong></p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 140</p>\n<p style=\"text-align: center;\"><strong>Contact:\n</strong>480-991-3747\n480-948-3502 (FAX)<strong>\n</strong></p>", "Scottrade", "", "publish", "open", "open", "", "scottrade", "", "", "2013-04-11 06:28:46", "2013-04-11 06:28:46", "", "0", "http://www.scottsdaleseville.com/?page_id=672", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("675", "1", "2013-04-11 06:32:32", "2013-04-11 06:32:32", "<h1 style=\"text-align: center;\">Beverly Hills Rejuvenation Center</h1>\n<p style=\"text-align: center;\"><a href=\"http://bhrmedical.com/\">http://bhrmedical.com/</a></p>\n<p style=\"text-align: center;\"><strong>Hours:\n</strong><strong>\n</strong></p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 164</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n(480) 306-7166</p>", "Beverly Hills Rejuvenation Center", "", "publish", "open", "open", "", "675-2", "", "", "2013-04-11 06:32:32", "2013-04-11 06:32:32", "", "0", "http://www.scottsdaleseville.com/?page_id=675", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("679", "1", "2013-04-11 06:38:11", "2013-04-11 06:38:11", "<h1 style=\"text-align: center;\">The Yogurt Hut</h1>\n<p style=\"text-align: center;\"><strong>Hours:</strong></p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 173</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong></p>", " The Yogurt Hut", "", "publish", "open", "open", "", "yogurt-hut", "", "", "2013-04-11 06:38:11", "2013-04-11 06:38:11", "", "0", "http://www.scottsdaleseville.com/?page_id=679", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("719", "1", "2013-09-21 21:02:13", "2013-09-21 21:02:13", "<h1 style=\"text-align: center;\">Home-ology</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.homeologyaz.com/\" target=\"_blank\">www.homeologyaz.com/</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMonday-Saturday 10am - 5pm \nSundays-Closed</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 142</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong>\n</p>", "Home-ology", "", "publish", "open", "open", "", "home-ology", "", "", "2013-09-21 21:02:13", "2013-09-21 21:02:13", "", "0", "http://www.scottsdaleseville.com/?page_id=719", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("734", "1", "2013-11-15 05:22:42", "2013-11-15 05:22:42", "<div style=\"text-align: center;\">\n<h1><a href=\"http://www.scottsdaleseville.com/wp-content/uploads/2013/11/image001.png\"><img class=\"aligncenter size-full wp-image-736\" title=\"image001\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2013/11/image001.png\" alt=\"\" width=\"386\" height=\"137\" /></a>Gifted Hands Boutique</h1>\n<a href=\"http://www.accel.org\" target=\"_blank\">www.accel.org</a>\n\n<strong>Hours:</strong>\nMon-Sat: 10am-6pm\nSun: closed\n\n<strong>Location:</strong>\nSuite 107\n\n<strong>Contact:</strong>\n480-292-7959\n</div>", "Gifted Hands Boutique", "", "publish", "open", "open", "", "gifted-hands-boutique", "", "", "2013-11-15 05:22:42", "2013-11-15 05:22:42", "", "0", "http://www.scottsdaleseville.com/?page_id=734", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("746", "1", "2014-01-14 23:18:46", "2014-01-14 23:18:46", "<h1 style=\"text-align: center;\">Fogon on Scottsdale</h1>\n<p style=\"text-align: center;\"><strong>Hours:</strong></p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 147</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong></p>", "Fogon of Scottsdale", "", "publish", "open", "open", "", "fogon-of-scottsdale", "", "", "2014-01-14 23:18:46", "2014-01-14 23:18:46", "", "0", "http://www.scottsdaleseville.com/?page_id=746", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("769", "1", "2014-03-12 06:35:30", "2014-03-12 06:35:30", "<p style=\"text-align: center;\"><a href=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\"><img class=\"aligncenter size-medium wp-image-770\" title=\"Burger21\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21-300x113.png\" alt=\"\" width=\"300\" height=\"113\" /></a><a href=\"http://www.Burger21.com\" target=\"_blank\">www.Burger21.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMon-Fri\nSat\nSun</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 172</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong></p>", "Burger 21", "", "publish", "open", "open", "", "burger-21", "", "", "2014-03-12 06:35:30", "2014-03-12 06:35:30", "", "0", "http://www.scottsdaleseville.com/?page_id=769", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("776", "1", "2014-03-12 06:44:57", "2014-03-12 06:44:57", "<h1 style=\"text-align: center;\">Sole Sports Running Zone</h1>\n<p style=\"text-align: center;\"><a href=\"http://www.SoleSportsRunning.com\" target=\"_blank\">www.SoleSportsRunning.com</a></p>\n<p style=\"text-align: center;\"><strong>Hours:</strong>\nMon-Fri\nSat\nSun</p>\n<p style=\"text-align: center;\"><strong>Location:</strong>\nSuite 170</p>\n<p style=\"text-align: center;\"><strong>Contact:</strong></p>", "Sole Sports Running Zone", "", "publish", "open", "open", "", "776-2", "", "", "2014-03-12 06:44:57", "2014-03-12 06:44:57", "", "0", "http://www.scottsdaleseville.com/?page_id=776", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("445", "1", "2013-04-26 06:03:07", "2013-04-26 06:03:07", "<a href=\"http://www.21cakes.com\"><img class=\"aligncenter size-full wp-image-452\" title=\"Cupcakes for K-9s\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/312906_305087216187261_116187768410541_1166339_343287708_n.jpg\" alt=\"Cupcakes for K-9\'s Fundraiser\" width=\"742\" height=\"960\" /></a>\n\n&nbsp;", "Cupcakes for K-9\'s", "", "publish", "open", "open", "", "upcoming-events", "", "", "2013-04-26 06:03:07", "2013-04-26 06:03:07", "", "0", "http://www.scottsdaleseville.com/?p=445", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("460", "1", "2011-11-26 06:52:19", "2011-11-26 06:52:19", "Check back or join our Newsletter for latest updates on our upcoming specials and events at the Seville.", "Upcoming Events", "", "publish", "open", "open", "", "upcoming-events-2", "", "", "2011-11-26 06:52:19", "2011-11-26 06:52:19", "", "0", "http://www.scottsdaleseville.com/?p=460", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("754", "1", "2013-12-10 07:21:52", "2013-12-10 07:21:52", "<a href=\"http://www.scottsdaleseville.com/wp-content/uploads/2014/01/Scottsdale-Grand-Opening-Poster.png\"><img src=\"http://www.scottsdaleseville.com/wp-content/uploads/2014/01/Scottsdale-Grand-Opening-Poster.png\" alt=\"\" title=\"Scottsdale Grand Opening Poster\" width=\"1650\" height=\"2550\" class=\"aligncenter size-full wp-image-755\" /></a>", "Gifted Hands Grand Opening", "", "publish", "open", "open", "", "gifted-hands-grand-opening", "", "", "2013-12-10 07:21:52", "2013-12-10 07:21:52", "", "0", "http://www.scottsdaleseville.com/?p=754", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("758", "1", "2014-01-28 07:30:20", "2014-01-28 07:30:20", "<p style=\"text-align: center;\"><a href=\"http://techno-sites.com/scotts/wp-content/uploads/2014/01/image003.gif\"><img class=\"aligncenter size-full wp-image-761\" title=\"image003\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/01/image003.gif\" alt=\"\" width=\"144\" height=\"128\" />\n</a><span style=\"color: #ff0000;\">Discover unique treasures and custom gift baskets</span>\n<span style=\"color: #ff0000;\">For your special Valentine</span>\n<span style=\"color: #ff0000;\">at</span>\n<strong><span style=\"color: #ff0000; font-size: 20px;\">ACCEL\'s Gifted Hands Boutique!</span></strong></p>\n<p style=\"text-align: center;\"><span style=\"color: #ff0000;\">Enjoy Tax Free Shopping Every Day!</span></p>\n<p style=\"text-align: center;\"><span style=\"color: #ff0000;\">Scottsdale Seville Shopping Plaza</span>\n<span style=\"color: #ff0000;\">7001 North Scottsdale Road, Suite # 107</span>\n<span style=\"color: #ff0000;\">Scottsdale, AZ 85253</span></p>\n<p style=\"text-align: center;\"><span style=\"color: #ff0000;\">Hours:  10:00 am – 6:00 pm Monday - Saturday</span>\n<strong><span style=\"color: #ff0000;\">480-292-7959</span></strong>\n<span style=\"color: #ff0000;\">All proceeds benefit special needs children and adults at ACCEL</span></p>\n<p style=\"text-align: center;\"><a href=\"http://techno-sites.com/scotts/wp-content/uploads/2014/01/image004.jpg\"><img class=\"aligncenter size-full wp-image-762\" title=\"image004\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/01/image004.jpg\" alt=\"\" width=\"384\" height=\"118\" /></a></p>", "Valentines Special Gifted Hands", "", "publish", "open", "open", "", "valentines-special-gifted-hands", "", "", "2014-01-28 07:30:20", "2014-01-28 07:30:20", "", "0", "http://www.scottsdaleseville.com/?p=758", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("802", "1", "2014-04-29 07:29:20", "2014-04-29 07:29:20", "<img src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/GHB_Mothers_Day_Event-662x1024.jpg\" alt=\"\" title=\"GHB_Mother&#039;s_Day_Event\" width=\"90%\" max-width=\"640\" max-height=\"989\" class=\"aligncenter size-large wp-image-792\" />", "Bee-Dazzle Your Queen Bee this Mothers Day", "", "publish", "open", "open", "", "bee-dazzle-your-queen-bee-this-mothers-day", "", "", "2014-04-29 07:29:20", "2014-04-29 07:29:20", "", "0", "http://www.scottsdaleseville.com/?p=802", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("805", "1", "2014-04-10 07:37:12", "2014-04-10 07:37:12", "<img src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/04/wildhorsesofarizona.jpg\" alt=\"\" title=\"Poster_Seville.ai\" width=\"700\" height=\"880\" class=\"aligncenter size-full wp-image-807\" />", "Longfellow Fine Art Festival", "", "publish", "open", "open", "", "longfellow-fine-art-festival", "", "", "2014-04-10 07:37:12", "2014-04-10 07:37:12", "", "0", "http://www.scottsdaleseville.com/?p=805", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("822", "1", "2014-05-07 01:34:07", "2014-05-07 01:34:07", "<div style=\"border: 1px #000 solid; padding: 25px;\">\n\n<a href=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\"><img class=\"aligncenter size-full wp-image-823\" title=\"logo_mail\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" alt=\"\" width=\"550\" height=\"124\" /></a>\n<h1 style=\"text-align: center;\">Sole Sports Scottsdale New Location\nGRAND OPENING PARTY\nSaturday, May 10</h1>\n<a href=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\"><img class=\"aligncenter size-full wp-image-824\" title=\"New-ScottsdaleGOEB\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" alt=\"\" width=\"400\" height=\"231\" /></a>\n\nWe are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we\'ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\n\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\n\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale!\n\n</div>", "Sole Sports Scottsdale New Location Grand Opening Party Saturday, May 10", "", "publish", "open", "open", "", "sole-sports-scottsdale-new-location-grand-opening-party-saturday-may-10", "", "", "2014-05-07 01:34:07", "2014-05-07 01:34:07", "", "0", "http://www.scottsdaleseville.com/?p=822", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("839", "1", "2014-08-02 05:15:34", "2014-08-02 05:15:34", "21 cakes page with lots of text including store name address and hours with link to website if necessary", "", "", "publish", "open", "open", "", "839", "", "", "2014-08-02 05:15:34", "2014-08-02 05:15:34", "", "0", "http://techno-sites.com/scotts/?p=839", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("840", "1", "2014-08-02 05:15:34", "2014-08-02 05:15:34", "This is where the text for the page will go… are we getting close? How far does this text go? Does it wrap around? or go off the page? If I keep typing will the page and background keep going?\nthis is alot of fun, but so much work. Gotta start on 21 cakes. Gotta do Nostalgic and start on Mindys invite. What a crazy week.", "", "", "publish", "open", "open", "", "840", "", "", "2014-08-02 05:15:34", "2014-08-02 05:15:34", "", "0", "http://techno-sites.com/scotts/?p=840", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("841", "1", "2014-08-02 05:15:34", "2014-08-02 05:15:34", "This is the directory for the Seville Shopping Center.  Click on the image below to see it larger", "", "", "publish", "open", "open", "", "841", "", "", "2014-08-02 05:15:34", "2014-08-02 05:15:34", "", "0", "http://techno-sites.com/scotts/?p=841", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("842", "1", "2014-08-02 05:15:34", "2014-08-02 05:15:34", " ", "", "", "publish", "open", "open", "", "842", "", "", "2014-08-02 05:15:34", "2014-08-02 05:15:34", "", "0", "http://techno-sites.com/scotts/?p=842", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("843", "1", "2014-08-02 05:15:34", "2014-08-02 05:15:34", " ", "La Petite France Bistro", "", "publish", "open", "open", "", "la-petite-france-bistro", "", "", "2014-08-02 05:15:34", "2014-08-02 05:15:34", "", "0", "http://techno-sites.com/scotts/?p=843", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("844", "1", "2014-08-02 05:15:34", "2014-08-02 05:15:34", " ", "", "", "publish", "open", "open", "", "844", "", "", "2014-08-02 05:15:34", "2014-08-02 05:15:34", "", "0", "http://techno-sites.com/scotts/?p=844", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("845", "1", "2014-08-02 05:15:34", "2014-08-02 05:15:34", " ", "ShinBay", "", "publish", "open", "open", "", "shinbay", "", "", "2014-08-02 05:15:34", "2014-08-02 05:15:34", "", "0", "http://techno-sites.com/scotts/?p=845", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("846", "1", "2014-08-02 05:15:34", "2014-08-02 05:15:34", " ", "", "", "publish", "open", "open", "", "846", "", "", "2014-08-02 05:15:34", "2014-08-02 05:15:34", "", "0", "http://techno-sites.com/scotts/?p=846", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("847", "1", "2014-08-02 05:15:34", "2014-08-02 05:15:34", " ", "", "", "publish", "open", "open", "", "847", "", "", "2014-08-02 05:15:34", "2014-08-02 05:15:34", "", "0", "http://techno-sites.com/scotts/?p=847", "8", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("848", "1", "2014-08-02 05:15:34", "2014-08-02 05:15:34", " ", "", "", "publish", "open", "open", "", "848", "", "", "2014-08-02 05:15:34", "2014-08-02 05:15:34", "", "0", "http://techno-sites.com/scotts/?p=848", "7", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("849", "1", "2014-08-02 05:15:35", "2014-08-02 05:15:35", " ", "", "", "publish", "open", "open", "", "849", "", "", "2014-08-02 05:15:35", "2014-08-02 05:15:35", "", "0", "http://techno-sites.com/scotts/?p=849", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("850", "1", "2014-08-02 05:15:35", "2014-08-02 05:15:35", " ", "", "", "publish", "open", "open", "", "850", "", "", "2014-08-02 05:15:35", "2014-08-02 05:15:35", "", "0", "http://techno-sites.com/scotts/?p=850", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("851", "1", "2014-08-02 05:15:35", "2014-08-02 05:15:35", " ", "", "", "publish", "open", "open", "", "851", "", "", "2014-08-02 05:15:35", "2014-08-02 05:15:35", "", "0", "http://techno-sites.com/scotts/?p=851", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("852", "1", "2014-08-02 05:15:35", "2014-08-02 05:15:35", " ", "", "", "publish", "open", "open", "", "852", "", "", "2014-08-02 05:15:35", "2014-08-02 05:15:35", "", "0", "http://techno-sites.com/scotts/?p=852", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("853", "1", "2014-08-02 05:15:35", "2014-08-02 05:15:35", " ", "", "", "publish", "open", "open", "", "853", "", "", "2014-08-02 05:15:35", "2014-08-02 05:15:35", "", "0", "http://techno-sites.com/scotts/?p=853", "7", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("854", "1", "2014-08-02 05:15:35", "2014-08-02 05:15:35", " ", "", "", "publish", "open", "open", "", "854", "", "", "2014-08-02 05:15:35", "2014-08-02 05:15:35", "", "0", "http://techno-sites.com/scotts/?p=854", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("855", "1", "2014-08-02 05:15:35", "2014-08-02 05:15:35", " ", "Massage Envy SPA", "", "publish", "open", "open", "", "massage-envy-spa", "", "", "2014-08-02 05:15:35", "2014-08-02 05:15:35", "", "0", "http://techno-sites.com/scotts/?p=855", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("856", "1", "2014-08-02 05:15:36", "2014-08-02 05:15:36", " ", "", "", "publish", "open", "open", "", "856", "", "", "2014-08-02 05:15:36", "2014-08-02 05:15:36", "", "0", "http://techno-sites.com/scotts/?p=856", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("857", "1", "2014-08-02 05:15:36", "2014-08-02 05:15:36", "Wildflower Bread Co\nwww.wildflowerbread.com\nHours:\nMonday – Friday 6:00 AM – 9:00 PM\nSaturday 7:00 AM – 9:00 PM\nSunday 7:00 AM – 8:00 PM \nLocation:\nSuite 171\nContact:\n480-612-0606", "", "", "publish", "open", "open", "", "857", "", "", "2014-08-02 05:15:36", "2014-08-02 05:15:36", "", "0", "http://techno-sites.com/scotts/?p=857", "9", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("858", "1", "2014-08-02 05:15:36", "2014-08-02 05:15:36", "Matteson Realty\nwww.mattesonrealty.com\nHours:\n\nLocation:\nSuite 195\nContact:\n480-998-4774", "", "", "publish", "open", "open", "", "858", "", "", "2014-08-02 05:15:36", "2014-08-02 05:15:36", "", "0", "http://techno-sites.com/scotts/?p=858", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("859", "1", "2014-08-02 05:15:36", "2014-08-02 05:15:36", "Beal Bank\nwww.bealbank.com/\nHours:\nMonday-Friday:  9:00 to 4:00\nSaturday -Sunday: Closed\nLocation:\nSuite 185\nContact:\n602-714-3838", "", "", "publish", "open", "open", "", "859", "", "", "2014-08-02 05:15:36", "2014-08-02 05:15:36", "", "0", "http://techno-sites.com/scotts/?p=859", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("860", "1", "2014-08-02 05:15:36", "2014-08-02 05:15:36", "Encore Cleaners\nwww.encorescottsdale.com\nHours:\nMonday – Friday: 7AM to 7 PM \nSaturday: 8AM to 4PM \nLocation:\nSuite 182\nContact:\n480-991-2267", "", "", "publish", "open", "open", "", "860", "", "", "2014-08-02 05:15:36", "2014-08-02 05:15:36", "", "0", "http://techno-sites.com/scotts/?p=860", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("861", "1", "2014-08-02 05:15:36", "2014-08-02 05:15:36", "Azadi\nwww.azadifinerugs.com\nHours:\nMon-Sat 10am-6pm\nLocation:\nSuite B-121 -126\nContact:\n480-483-4600", "", "", "publish", "open", "open", "", "861", "", "", "2014-08-02 05:15:36", "2014-08-02 05:15:36", "", "0", "http://techno-sites.com/scotts/?p=861", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("862", "1", "2014-08-02 05:15:36", "2014-08-02 05:15:36", "Contact", "", "", "publish", "open", "open", "", "862", "", "", "2014-08-02 05:15:36", "2014-08-02 05:15:36", "", "0", "http://techno-sites.com/scotts/?p=862", "7", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("863", "1", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "Directions", "", "", "publish", "open", "open", "", "863", "", "", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "", "0", "http://techno-sites.com/scotts/?p=863", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("864", "1", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "Nové\nwww.noveshop.com\nHours:\n Mon-Sat 10am-6pm\nLocation:\nSuite B-120\nContact:\n480-292-9215", "", "", "publish", "open", "open", "", "864", "", "", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "", "0", "http://techno-sites.com/scotts/?p=864", "8", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("865", "1", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "Events\n\n—–Coming Soon——", "", "", "publish", "open", "open", "", "865", "", "", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "", "0", "http://techno-sites.com/scotts/?p=865", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("866", "1", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "Press\n\n ", "", "", "publish", "open", "open", "", "866", "", "", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "", "0", "http://techno-sites.com/scotts/?p=866", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("867", "1", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "Crease Liberty\nHours:\n\nLocation:\nSuite D-177\nContact:\n", "", "", "publish", "open", "open", "", "867", "", "", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "", "0", "http://techno-sites.com/scotts/?p=867", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("868", "1", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "——-Coming Soon——–", "", "", "publish", "open", "open", "", "868", "", "", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "", "0", "http://techno-sites.com/scotts/?p=868", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("869", "1", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "Wild Birds Unlimited\nscottsdale.wbu.com\nHours:\n\nLocation:\nSuite 174\nContact:", "", "", "publish", "open", "open", "", "869", "", "", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "", "0", "http://techno-sites.com/scotts/?p=869", "9", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("870", "1", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "Scottrade\nwww.scottrade.com\nHours:\nM-F 8:00am – 5:00pm\n\nLocation:\nSuite 140\nContact:\n480-991-3747\n480-948-3502 (FAX)\n", "", "", "publish", "open", "open", "", "870", "", "", "2014-08-02 05:15:37", "2014-08-02 05:15:37", "", "0", "http://techno-sites.com/scotts/?p=870", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("871", "1", "2014-08-02 05:15:38", "2014-08-02 05:15:38", "Beverly Hills Rejuvenation Center\nhttp://bhrmedical.com/\nHours:\n\n\nLocation:\nSuite 164\nContact:\n\n", "", "", "publish", "open", "open", "", "871", "", "", "2014-08-02 05:15:38", "2014-08-02 05:15:38", "", "0", "http://techno-sites.com/scotts/?p=871", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("872", "1", "2014-08-02 05:15:38", "2014-08-02 05:15:38", "Home-ology\nwww.homeologyaz.com/\nHours:\nMonday-Saturday 10am – 5pm \nSundays-Closed\nLocation:\nSuite 142\nContact:\n", "", "", "publish", "open", "open", "", "872", "", "", "2014-08-02 05:15:38", "2014-08-02 05:15:38", "", "0", "http://techno-sites.com/scotts/?p=872", "10", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("873", "1", "2014-08-02 05:15:38", "2014-08-02 05:15:38", "Gifted Hands Boutique\nwww.accel.org\n\nHours:\nMon-Fri 10am-7pm\nSat 10am-6pm\nSun 11am-5pm\n\nLocation:\nSuite D-166\n\nContact:\n480-699-8900\n\n", "", "", "publish", "open", "open", "", "873", "", "", "2014-08-02 05:15:38", "2014-08-02 05:15:38", "", "0", "http://techno-sites.com/scotts/?p=873", "11", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("874", "1", "2014-08-02 05:15:38", "2014-08-02 05:15:38", "Fogon on Scottsdale\nHours:\nLocation:\nSuite 147\nContact:", "", "", "publish", "open", "open", "", "874", "", "", "2014-08-02 05:15:38", "2014-08-02 05:15:38", "", "0", "http://techno-sites.com/scotts/?p=874", "10", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("875", "1", "2014-08-02 05:15:38", "2014-08-02 05:15:38", "www.Burger21.com\nHours:\nMon-Fri\nSat\nSun\nLocation:\nSuite 172\nContact:", "", "", "publish", "open", "open", "", "875", "", "", "2014-08-02 05:15:38", "2014-08-02 05:15:38", "", "0", "http://techno-sites.com/scotts/?p=875", "11", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("876", "1", "2014-08-02 05:15:38", "2014-08-02 05:15:38", "Sole Sports Running Zone\nwww.SoleSportsRunning.com\nHours:\nMon-Fri\nSat\nSun\nLocation:\nSuite 170\nContact:", "", "", "publish", "open", "open", "", "876", "", "", "2014-08-02 05:15:38", "2014-08-02 05:15:38", "", "0", "http://techno-sites.com/scotts/?p=876", "12", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("18", "2", "2014-02-12 04:33:35", "2014-02-12 04:33:35", "", "full-slide-01", "", "inherit", "open", "open", "", "full-slide-01", "", "", "2014-02-12 04:33:35", "2014-02-12 04:33:35", "", "5", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/full-slide-01.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("19", "2", "2014-02-12 04:33:37", "2014-02-12 04:33:37", "", "full-slide-02", "", "inherit", "open", "open", "", "full-slide-02", "", "", "2014-02-12 04:33:37", "2014-02-12 04:33:37", "", "5", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/full-slide-02.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("20", "2", "2014-02-12 04:33:39", "2014-02-12 04:33:39", "", "full-slide-03", "", "inherit", "open", "open", "", "full-slide-03", "", "", "2014-02-12 04:33:39", "2014-02-12 04:33:39", "", "5", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/full-slide-03.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("24", "2", "2014-02-12 05:01:15", "2014-02-12 05:01:15", "[vc_row][vc_column width=\"1/1\"][mk_padding_divider size=\"50\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"62\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"0\" font_family=\"none\" align=\"left\"]We push limits.[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"20\" font_weight=\"normal\" margin_top=\"20\" margin_bottom=\"0\" font_family=\"none\" align=\"left\"]Countless possibilities just to give you the full control.[/mk_fancy_title][mk_padding_divider size=\"50\"][mk_button dimension=\"outline\" size=\"large\" outline_skin=\"light\" outline_active_color=\"#fff\" outline_hover_color=\"#333333\" bg_color=\"#00c8d7\" text_color=\"light\" icon=\"moon-arrow-right-5\" url=\"http://artbees.net/themes/jupiter-demo/key-features/\" target=\"_self\" align=\"left\" margin_top=\"0\" margin_bottom=\"15\"]DISCOVER HOW[/mk_button][mk_padding_divider size=\"50\"][/vc_column][/vc_row]", "main slide 01", "", "publish", "closed", "closed", "", "main-slide-01", "", "", "2014-02-12 05:01:15", "2014-02-12 05:01:15", "", "0", "http://artbees.net/themes/jupiter-one-page/?post_type=edge&amp;p=24", "1", "edge", "", "0");
INSERT INTO `wp_posts` VALUES("31", "2", "2014-02-12 05:50:06", "2014-02-12 05:50:06", "[vc_row][vc_column width=\"1/1\"][mk_padding_divider size=\"50\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"62\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"0\" font_family=\"none\" align=\"center\"]Go deep into customisation.[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"20\" font_weight=\"normal\" margin_top=\"30\" margin_bottom=\"10\" font_family=\"none\" align=\"center\"]No matter what you are dreaming, Jupiter is meant to make it come true.[/mk_fancy_title][mk_padding_divider size=\"50\"][mk_button dimension=\"outline\" size=\"large\" outline_skin=\"light\" outline_active_color=\"#fff\" outline_hover_color=\"#333333\" bg_color=\"#00c8d7\" text_color=\"light\" icon=\"moon-arrow-right-5\" url=\"http://artbees.net/themes/jupiter-demo/key-features/\" target=\"_self\" align=\"center\" margin_top=\"0\" margin_bottom=\"15\"]DISCOVER HOW[/mk_button][/vc_column][/vc_row]", "main slide 02", "", "publish", "closed", "closed", "", "main-slide-02", "", "", "2014-02-12 05:50:06", "2014-02-12 05:50:06", "", "0", "http://artbees.net/themes/jupiter-one-page/?post_type=edge&amp;p=31", "2", "edge", "", "0");
INSERT INTO `wp_posts` VALUES("32", "2", "2014-02-12 06:01:46", "2014-02-12 06:01:46", "", "slide02", "", "inherit", "open", "open", "", "slide02-2", "", "", "2014-02-12 06:01:46", "2014-02-12 06:01:46", "", "31", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/slide021.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("34", "2", "2014-02-12 06:28:48", "2014-02-12 06:28:48", "[vc_row][vc_column width=\"1/1\"][mk_padding_divider size=\"200\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"62\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"0\" font_family=\"none\" align=\"right\"]Because time matters.[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"20\" font_weight=\"normal\" margin_top=\"20\" margin_bottom=\"0\" font_family=\"none\" align=\"right\"]It is hard to balance speed and stability but we did it.[/mk_fancy_title][mk_padding_divider size=\"50\"][mk_button dimension=\"outline\" size=\"large\" outline_skin=\"light\" outline_active_color=\"#fff\" outline_hover_color=\"#333333\" bg_color=\"#00c8d7\" text_color=\"light\" icon=\"moon-arrow-right-5\" url=\"http://artbees.net/themes/jupiter-demo/key-features/\" target=\"_self\" align=\"right\" margin_top=\"0\" margin_bottom=\"15\"]DISCOVER HOW[/mk_button][/vc_column][/vc_row]", "main slide 03", "", "publish", "closed", "closed", "", "main-slide-03", "", "", "2014-02-12 06:28:48", "2014-02-12 06:28:48", "", "0", "http://artbees.net/themes/jupiter-one-page/?post_type=edge&amp;p=34", "3", "edge", "", "0");
INSERT INTO `wp_posts` VALUES("35", "2", "2014-02-12 06:27:43", "2014-02-12 06:27:43", "", "slide01", "", "inherit", "open", "open", "", "slide01", "", "", "2014-02-12 06:27:43", "2014-02-12 06:27:43", "", "34", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/slide01.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("36", "2", "2014-02-12 06:44:47", "2014-02-12 06:44:47", "", "slide03", "", "inherit", "open", "open", "", "slide03-2", "", "", "2014-02-12 06:44:47", "2014-02-12 06:44:47", "", "24", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/slide031.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("40", "2", "2014-02-12 08:10:15", "2014-02-12 08:10:15", "[vc_row fullwidth=\"false\"][vc_column width=\"2/3\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/portfolio-01.png\" image_width=\"750\" image_height=\"350\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][/vc_column][vc_column width=\"1/3\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"38\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]A very excellent project name here[/mk_fancy_title][mk_padding_divider size=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/divider.png\" image_width=\"98\" image_height=\"2\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][mk_padding_divider size=\"35\"][vc_column_text disable_pattern=\"false\" align=\"left\" margin_bottom=\"0\"]<span style=\"color: #ffffff;\">Maecenas dignissim lectus quam, nec aliquet lectus posuere eu. Phasellus mattis orci sit amet feugiat laoreet. Mauris volutpat eros vitae fringilla mattis. Nullam pellentesque eros eget augue posuere eleifend. In nec dignissim lorem. Fusce eu sem non turpis interdum sagittis.</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_button dimension=\"outline\" size=\"large\" outline_skin=\"light\" outline_active_color=\"#fff\" outline_hover_color=\"#333333\" bg_color=\"#00c8d7\" text_color=\"light\" icon=\"moon-arrow-right-5\" url=\"http://artbees.net/themes/jupiter-demo/portfolio-posts/single-portfolio-full-video-6/\" target=\"_self\" align=\"center\" margin_top=\"60\" margin_bottom=\"0\"]VIEW THE PROJECT[/mk_button][/vc_column][/vc_row]", "portfolio 01", "", "publish", "closed", "closed", "", "portfolio-01", "", "", "2014-02-12 08:10:15", "2014-02-12 08:10:15", "", "0", "http://artbees.net/themes/jupiter-one-page/?post_type=edge&amp;p=40", "1", "edge", "", "0");
INSERT INTO `wp_posts` VALUES("60", "2", "2014-02-12 08:44:42", "2014-02-12 08:44:42", "", "divider", "", "inherit", "open", "open", "", "divider", "", "", "2014-02-12 08:44:42", "2014-02-12 08:44:42", "", "40", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/divider.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("879", "2", "2014-02-12 09:00:03", "2014-02-12 09:00:03", "", "portfolio-01", "", "inherit", "open", "open", "", "portfolio-01-2", "", "", "2014-02-12 09:00:03", "2014-02-12 09:00:03", "", "40", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/portfolio-01.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("64", "2", "2014-02-12 09:16:51", "2014-02-12 09:16:51", "", "portfolio-02", "", "inherit", "open", "open", "", "portfolio-02-2", "", "", "2014-02-12 09:16:51", "2014-02-12 09:16:51", "", "62", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/portfolio-02.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("69", "2", "2014-02-12 10:15:22", "2014-02-12 10:15:22", "", "portfolio-03", "", "inherit", "open", "open", "", "portfolio-03-2", "", "", "2014-02-12 10:15:22", "2014-02-12 10:15:22", "", "68", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/portfolio-03.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("74", "2", "2014-02-12 10:32:03", "2014-02-12 10:32:03", "", "07", "", "inherit", "open", "open", "", "07", "", "", "2014-02-12 10:32:03", "2014-02-12 10:32:03", "", "73", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/07.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("75", "2", "2014-02-12 10:32:20", "2014-02-12 10:32:20", "", "02", "", "inherit", "open", "open", "", "02", "", "", "2014-02-12 10:32:20", "2014-02-12 10:32:20", "", "73", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/02.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("880", "2", "2014-02-12 10:32:38", "2014-02-12 10:32:38", "", "13", "", "inherit", "open", "open", "", "13", "", "", "2014-02-12 10:32:38", "2014-02-12 10:32:38", "", "73", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("84", "2", "2014-02-12 11:00:12", "2014-02-12 11:00:12", "", "quote-bg-01", "", "inherit", "open", "open", "", "quote-bg-01", "", "", "2014-02-12 11:00:12", "2014-02-12 11:00:12", "", "5", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/quote-bg-01.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("95", "2", "2014-02-14 09:34:15", "2014-02-14 09:34:15", "", "quote-bg-02", "", "inherit", "open", "open", "", "quote-bg-02", "", "", "2014-02-14 09:34:15", "2014-02-14 09:34:15", "", "5", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/quote-bg-02.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("97", "2", "2014-02-14 09:45:18", "2014-02-14 09:45:18", "", "cartographer", "", "inherit", "open", "open", "", "cartographer", "", "", "2014-02-14 09:45:18", "2014-02-14 09:45:18", "", "5", "http://techno-sites.com/scotts/wp-content/uploads/2014/02/cartographer.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("881", "2", "2014-02-12 01:41:29", "2014-02-12 01:41:29", "Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!", "Hello world!", "", "publish", "open", "open", "", "hello-world-2", "", "", "2014-02-12 01:41:29", "2014-02-12 01:41:29", "", "0", "http://localhost/wordpress-3.8/wordpress/?p=1", "0", "post", "", "1");
INSERT INTO `wp_posts` VALUES("965", "1", "2014-08-04 06:45:07", "2014-08-04 06:45:07", "", "Gifted Hands Grand Opening", "", "publish", "open", "open", "", "gifted-hands-grand-opening-2", "", "", "2014-08-04 06:49:42", "2014-08-04 06:49:42", "", "0", "http://techno-sites.com/scotts/?p=965", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("966", "1", "2014-08-04 06:45:07", "2014-08-04 06:45:07", "", "Gifted Hands Grand Opening", "", "inherit", "open", "open", "", "965-revision-v1", "", "", "2014-08-04 06:45:07", "2014-08-04 06:45:07", "", "965", "http://techno-sites.com/scotts/?p=966", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("967", "1", "2014-08-04 06:48:40", "2014-08-04 06:48:40", "<img class=\"aligncenter size-full wp-image-761\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/01/image003.gif\" alt=\"image003\" width=\"144\" height=\"128\" />\r\n<p style=\"text-align: center;\"><span style=\"color: #ff0000;\">Discover unique treasures and custom gift baskets</span>\r\n<span style=\"color: #ff0000;\">For your special Valentine</span>\r\n<span style=\"color: #ff0000;\">at</span>\r\n<strong><span style=\"color: #ff0000;\">ACCEL’s Gifted Hands Boutique!</span></strong></p>\r\n<p style=\"text-align: center;\"><span style=\"color: #ff0000;\">Enjoy Tax Free Shopping Every Day!</span></p>\r\n<p style=\"text-align: center;\"><span style=\"color: #ff0000;\">Scottsdale Seville Shopping Plaza</span>\r\n<span style=\"color: #ff0000;\">7001 North Scottsdale Road, Suite # 107</span>\r\n<span style=\"color: #ff0000;\">Scottsdale, AZ 85253</span></p>\r\n<p style=\"text-align: center;\"><span style=\"color: #ff0000;\">Hours:  10:00 am – 6:00 pm Monday – Saturday</span>\r\n<strong><span style=\"color: #ff0000;\"><span id=\"skype_c2c_container\" class=\"skype_c2c_container notranslate\" dir=\"ltr\" style=\"font-weight: normal !important; color: #00affd !important;\" tabindex=\"-1\" data-numbertocall=\"+14802927959\" data-isfreecall=\"false\" data-isrtl=\"false\" data-ismobile=\"false\"><span class=\"skype_c2c_highlighting_inactive_common\" dir=\"ltr\"><span id=\"non_free_num_ui\" class=\"skype_c2c_textarea_span\"><img class=\"skype_c2c_logo_img\" src=\"chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/call_skype_logo.png\" alt=\"\" width=\"0\" height=\"0\" /><span class=\"skype_c2c_text_span\">480-292-7959</span></span></span></span></span></strong>\r\n<span style=\"color: #ff0000;\">All proceeds benefit special needs children and adults at ACCEL</span></p>\r\n<img class=\"aligncenter size-full wp-image-762\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/01/image004.jpg\" alt=\"image004\" width=\"384\" height=\"118\" />", "Valentines Special Gifted Hands", "", "publish", "open", "open", "", "valentines-special-gifted-hands-2", "", "", "2014-08-04 06:50:35", "2014-08-04 06:50:35", "", "0", "http://techno-sites.com/scotts/?p=967", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("5", "2", "2014-02-12 04:02:57", "2014-02-12 04:02:57", "[mk_page_section attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"100\" padding_top=\"10\" padding_bottom=\"10\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\" section_id=\"introduction\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#252525\" size=\"48\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"25\" font_family=\"none\" align=\"center\" el_class=\"mk-letter-spacing\"]Make beautiful websites[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"14\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"40\" font_family=\"none\" align=\"center\" el_class=\"mk-letter-spacing mk-padding-sub-heading \"]<span style=\"color: #ef662f;\">100% MOBILE FRIENDLY</span>[/mk_fancy_title][/vc_column][/mk_page_section][vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"0\" el_class=\"mk-line-height\"]<span style=\"color: #61656a;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem eget, mollis nisi. Nullam mollis sapien viverra, malesuada orci eget, mollis mauris. Nunc commodo leo nec egestas hendrerit. Proin tincidunt mauris sed blandit imperdiet. </span><span style=\"color: #ef662f;\">View our work.</span>[/vc_column_text][/vc_column][/vc_row][mk_page_section bg_color=\"#ffffff\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"100\" padding_top=\"20\" padding_bottom=\"0\" margin_bottom=\"0\" first_page=\"false\" last_page=\"true\"][vc_column width=\"1/1\"][mk_fullwidth_slideshow attachment=\"scroll\" bg_position=\"left top\" enable_3d=\"false\" speed_factor=\"4\" images=\"18,19,20\" effect=\"fade\" animation_speed=\"700\" slideshow_speed=\"4000\" pause_on_hover=\"false\" smooth_height=\"false\" direction_nav=\"false\" border_color=\"#ffffff\" el_class=\"mk-no-padding \"][/vc_column][/mk_page_section][mk_page_section bg_color=\"#f5f5f5\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"350\" padding_top=\"80\" padding_bottom=\"10\" margin_bottom=\"0\" first_page=\"false\" last_page=\"true\"][vc_column width=\"1/3\"][mk_icon_box title=\"Online shopping\" text_size=\"16\" font_weight=\"inherit\" read_more_txt=\"Read more\" read_more_url=\"#\" icon=\"moon-bag-2\" style=\"simple_ultimate\" icon_size=\"medium\" icon_location=\"top\" circled=\"true\" icon_color=\"#00c8d7\" icon_circle_color=\"#ededed\" box_blur=\"false\" txt_color=\"#777777\" margin=\"30\" width=\"1/1\" el_position=\"first\" rounded_circle=\"true\" icon_circle_border_color=\"#e0e0e0\" animation=\"bottom-to-top\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla eget porta mi, sit amet volutpat ipsum. Sed in nisi non metus fringilla pulvinar eget sit amet enim.[/mk_icon_box][/vc_column][vc_column width=\"1/3\"][mk_icon_box title=\"Amazing slideshows\" text_size=\"16\" read_more_txt=\"Read more\" read_more_url=\"#\" icon=\"moon-stack\" style=\"simple_ultimate\" icon_size=\"medium\" icon_location=\"top\" circled=\"false\" icon_color=\"#00c8d7\" icon_circle_color=\"#0bb697\" box_blur=\"false\" margin=\"30\" width=\"1/1\" rounded_circle=\"true\" txt_color=\"#777777\" font_weight=\"inherit\" animation=\"bottom-to-top\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla eget porta mi, sit amet volutpat ipsum. Sed in nisi non metus fringilla pulvinar eget sit amet enim.[/mk_icon_box][/vc_column][vc_column width=\"1/3\"][mk_icon_box title=\"Innovative features\" text_size=\"16\" read_more_txt=\"Read more\" read_more_url=\"#\" icon=\"moon-lamp-2\" style=\"simple_ultimate\" icon_size=\"medium\" icon_location=\"top\" circled=\"false\" icon_color=\"#00c8d7\" icon_circle_color=\"#0bb697\" box_blur=\"false\" margin=\"30\" width=\"1/1\" el_position=\"last\" rounded_circle=\"true\" txt_color=\"#777777\" font_weight=\"inherit\" animation=\"bottom-to-top\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla eget porta mi, sit amet volutpat ipsum. Sed in nisi non metus fringilla pulvinar eget sit amet enim.[/mk_icon_box][/vc_column][/mk_page_section][mk_page_section bg_image=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/quote-bg-01.jpg\" attachment=\"fixed\" bg_position=\"center bottom\" bg_repeat=\"repeat\" bg_stretch=\"true\" enable_3d=\"true\" speed_factor=\"0.2\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"500\" padding_top=\"250\" padding_bottom=\"10\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\" section_id=\"about\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"32\" font_weight=\"inhert\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"Crete+Round\" font_type=\"google\" align=\"center\" el_class=\"mk-italic-text\"]Success finally came when we were able to convince some creative men that good appearance was a salable commodity, that it often cut costs, enhanced a product’s prestige, raised corporate profits, benefited the customer and increased employment.[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"16\" font_weight=\"normal\" margin_top=\"50\" margin_bottom=\"18\" font_family=\"Open+Sans:400,600,700,800\" font_type=\"google\" align=\"center\" el_class=\"mk-letter-spacing\"]- RAYMOND LOEWY[/mk_fancy_title][/vc_column][/mk_page_section][vc_row][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#252525\" size=\"38\" font_weight=\"300\" margin_top=\"20\" margin_bottom=\"25\" font_family=\"none\" align=\"center\" el_class=\"mk-line-height-50\"]We are a team of dedicated designer\nand committed strategists.[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"14\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"40\" font_family=\"none\" align=\"center\" el_class=\"mk-letter-spacing mk-padding-sub-heading \"]<span style=\"color: #ef662f;\">WHO WE ARE</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"0\" el_class=\"mk-line-height\"]<span style=\"color: #61656a;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem eget, mollis nisi. Nullam mollis sapien viverra, malesuada orci eget, mollis mauris.</span> <span style=\"color: #ef662f;\">Read Bios.</span>[/vc_column_text][mk_padding_divider size=\"110\"][mk_employees style=\"simple\" column=\"3\" rounded_image=\"true\" box_blur=\"false\" count=\"3\" employees=\"77,78,73\" offset=\"0\" description=\"true\" order=\"ASC\" orderby=\"menu_order\" animation=\"fade-in\"][/vc_column][/vc_row][mk_page_section bg_image=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/cartographer.png\" attachment=\"fixed\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"0.2\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"300\" padding_top=\"80\" padding_bottom=\"130\" margin_bottom=\"0\" first_page=\"false\" last_page=\"true\" section_id=\"process\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"38\" font_weight=\"300\" margin_top=\"20\" margin_bottom=\"90\" font_family=\"none\" align=\"center\" el_class=\"mk-line-height-50\"]Our Process[/mk_fancy_title][vc_row_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://artbees.net/themes/jupiter-demo/wp-content/uploads/2014/02/proc-01.png\" image_width=\"800\" image_height=\"350\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"left-to-right\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"20\" font_weight=\"bolder\" margin_top=\"40\" margin_bottom=\"10\" font_family=\"none\" align=\"left\" el_class=\"mk-ultra-bold\"]<span style=\"color: #ef662f;\">01 /</span> <span style=\"color: #ffffff;\">CONCEPTS AND BRAINSTORMING</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\" el_class=\"mk-font-size-process\"]<span style=\"color: #cccccc;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem.</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://artbees.net/themes/jupiter-demo/wp-content/uploads/2014/02/proc-04.png\" image_width=\"800\" image_height=\"350\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"left-to-right\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"20\" font_weight=\"bolder\" margin_top=\"40\" margin_bottom=\"10\" font_family=\"none\" align=\"left\" el_class=\"mk-ultra-bold\"]<span style=\"color: #ef662f;\">02 /</span> <span style=\"color: #ffffff;\">RESEARCH &amp; DEVELOPMENT</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\" el_class=\"mk-font-size-process\"]<span style=\"color: #cccccc;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem.</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://artbees.net/themes/jupiter-demo/wp-content/uploads/2014/02/proc-02.png\" image_width=\"800\" image_height=\"350\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"right-to-left\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"20\" font_weight=\"bolder\" margin_top=\"40\" margin_bottom=\"10\" font_family=\"none\" align=\"left\" el_class=\"mk-ultra-bold\"]<span style=\"color: #ef662f;\">03 /</span> <span style=\"color: #ffffff;\">SKETCHING &amp; DRAFTING</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\" el_class=\"mk-font-size-process\"]<span style=\"color: #cccccc;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem.</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://artbees.net/themes/jupiter-demo/wp-content/uploads/2014/02/proc-03.png\" image_width=\"800\" image_height=\"350\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"right-to-left\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"20\" font_weight=\"bolder\" margin_top=\"40\" margin_bottom=\"10\" font_family=\"none\" align=\"left\" el_class=\"mk-ultra-bold\"]<span style=\"color: #ef662f;\">04 /</span> <span style=\"color: #ffffff;\">EXECUTION &amp; DIGITALISATION</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\" el_class=\"mk-font-size-process\"]<span style=\"color: #cccccc;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/mk_page_section][vc_row fullwidth=\"true\" id=\"portfolio\"][vc_column width=\"1/1\"][mk_edge_slider slides=\"40,62,66,68\" order=\"ASC\" orderby=\"menu_order\" full_height=\"true\" height=\"700\" animation_speed=\"700\" slideshow_speed=\"5000\" direction_nav=\"true\"][/vc_column][/vc_row][mk_page_section bg_image=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/quote-bg-02.jpg\" attachment=\"fixed\" bg_position=\"center bottom\" bg_repeat=\"repeat\" bg_stretch=\"true\" enable_3d=\"true\" speed_factor=\"0.2\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"500\" padding_top=\"250\" padding_bottom=\"10\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\" section_id=\"features\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"32\" font_weight=\"inhert\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"Crete+Round\" font_type=\"google\" align=\"center\" el_class=\"mk-italic-text\"]The goal is not to make your user interface as realistic as possible. The goal is to add those details which help users identify what an element is, and how to interact with it, and to add no more than those details.[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"16\" font_weight=\"normal\" margin_top=\"50\" margin_bottom=\"18\" font_family=\"Open+Sans:400,600,700,800\" font_type=\"google\" align=\"center\" el_class=\"mk-letter-spacing\"]-  LUKAS MATHIS[/mk_fancy_title][/vc_column][/mk_page_section][vc_row][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#252525\" size=\"38\" font_weight=\"300\" margin_top=\"20\" margin_bottom=\"25\" font_family=\"none\" align=\"center\" el_class=\"mk-line-height-50\"]Providing value to businesses by aligning smart design strategies with inspired marketing.[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"14\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"40\" font_family=\"none\" align=\"center\" el_class=\"mk-letter-spacing mk-padding-sub-heading \"]<span style=\"color: #ef662f;\">FEATURES &amp; CAPABILITIES</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"0\" el_class=\"mk-line-height\"]<span style=\"color: #61656a;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem eget, mollis nisi. Nullam mollis sapien viverra, malesuada orci eget, mollis mauris.</span> <span style=\"color: #ef662f;\">Review features.</span>[/vc_column_text][mk_padding_divider size=\"110\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"icon-facetime-video\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]NARRATIVE VIDEO TUTORIALS[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"15\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem eget, mollis nisi. Nullam mollis sapien viverra, malesuada orci eget, mollis mauris. Nunc commodo leo nec egestas hendrerit. Proin tincidunt mauris sed blandit imperdiet. Etiam nulla nisi, malesuada eu justo laoreet, lobortis congue libero. Duis sit amet urna vitae sem facilisis cursus.[/vc_column_text][mk_custom_list style=\"f03d\" icon_color=\"#ef662f\" margin_bottom=\"0\" align=\"none\"]\n<ul>\n	<li><strong><a href=\"http://www.youtube.com/user/artbeesthemes?feature=watch\">Check out videos</a></strong></li>\n</ul>\n[/mk_custom_list][mk_padding_divider size=\"50\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"moon-mobile\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]RESPONSIVE &amp; RETINA DISPLAY READY[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"15\"]Integer ac cursus neque, at tristique mauris. Suspendisse sed velit ante. In metus nunc, varius sollicitudin rutrum eu, varius ac nisi. Vivamus id diam est.[/vc_column_text][mk_custom_list style=\"e26a\" icon_color=\"#ef662f\" margin_bottom=\"0\" align=\"none\"]\n<ul>\n	<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</li>\n	<li>Proin non blandit</li>\n	<li>Sed eget tortor</li>\n	<li>Integer ac cursus neque</li>\n	<li>Pellentesque pretium</li>\n</ul>\n[/mk_custom_list][mk_padding_divider size=\"50\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"icon-copy\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]DEMO CONTENTS AVAILABLE[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"15\"]Pellentesque pretium arcu molestie fermentum suscipit. Curabitur et laoreet eros. Proin tincidunt, neque ac laoreet facilisis, nibh turpis consequat ipsum, cursus auctor metus sapien a arcu. Phasellus condimentum felis nec sodales hendrerit. Aliquam non gravida quam, eget pharetra mauris. Proin eu viverra tortor. Integer bibendum erat orci. Curabitur molestie tempus tortor, et imperdiet risus placerat sed. Integer pulvinar elit erat, vitae sagittis tortor accumsan facilisis. Curabitur vel cursus eros. Integer convallis sodales dolor, at feugiat dolor laoreet vel. Mauris porttitor diam ut pulvinar ultrices. Maecenas in enim non nisl fermentum lobortis.[/vc_column_text][mk_custom_list style=\"e02c\" icon_color=\"#ef662f\" margin_bottom=\"0\" align=\"none\"]\n<ul>\n	<li><strong><a href=\"http://artbees.net/themes/jupiter/docs/#ImportingDemoContent\">Download contents now</a></strong></li>\n</ul>\n[/mk_custom_list][mk_padding_divider size=\"50\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"moon-cube-3\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]POWERFUL PAGE COMPOSER[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"15\"]Integer ac cursus neque, at tristique mauris. Suspendisse sed velit ante. In metus nunc, varius sollicitudin rutrum eu, varius ac nisi. Vivamus id diam est.[/vc_column_text][mk_custom_list style=\"e1d5\" icon_color=\"#ef662f\" margin_bottom=\"0\" align=\"none\"]\n<ul>\n	<li><strong><a href=\"http://artbees.net/themes/jupiter-demo/key-features/\">Check out features</a></strong></li>\n</ul>\n[/mk_custom_list][mk_padding_divider size=\"50\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"icon-bolt\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]OUTSTANDING ADMIN PANEL[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"50\"]Pellentesque pretium arcu molestie fermentum suscipit. Curabitur et laoreet eros. Proin tincidunt, neque ac laoreet facilisis, nibh turpis consequat ipsum, cursus auctor metus sapien a arcu. Phasellus condimentum felis nec sodales hendrerit. Aliquam non gravida quam, eget pharetra mauris. Proin eu viverra tortor. Integer bibendum erat orci. Curabitur molestie tempus <span style=\"color: #ef662f;\">risus placerat sed.</span>\n\nInteger pulvinar elit erat, vitae sagittis tortor accumsan facilisis. Curabitur vel cursus eros. Integer convallis sodales dolor, at feugiat dolor laoreet vel. Mauris porttitor diam ut pulvinar ultrices.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"moon-umbrella\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]DEDICATED &amp; RELIABLE SUPPORT[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"15\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem eget, mollis nisi. Nullam mollis sapien viverra, malesuada orci eget, mollis mauris. Nunc commodo leo nec egestas hendrerit. Proin tincidunt mauris sed blandit imperdiet. Etiam nulla nisi, malesuada eu justo laoreet, lobortis congue libero. Duis sit amet urna vitae sem facilisis cursus.[/vc_column_text][mk_custom_list style=\"e47d\" icon_color=\"#ef662f\" margin_bottom=\"0\" align=\"none\"]\n<ul>\n	<li><strong><a href=\"http://artbees.net/support/\">Go to Support forum</a></strong></li>\n</ul>\n[/mk_custom_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][mk_page_section bg_color=\"#00c8d7\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" padding_top=\"75\" padding_bottom=\"0\" margin_bottom=\"0\" first_page=\"false\" last_page=\"true\" min_height=\"125\"][vc_column width=\"2/3\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"32\" font_weight=\"normal\" margin_top=\"0\" margin_bottom=\"0\" font_family=\"none\" align=\"left\" el_class=\"mk-ultra-bold\"]Start making jaw dropping websites. Easy.[/mk_fancy_title][/vc_column][vc_column width=\"1/3\"][mk_button dimension=\"three\" size=\"large\" outline_skin=\"dark\" outline_active_color=\"#fff\" outline_hover_color=\"#333333\" bg_color=\"#ef662f\" text_color=\"light\" target=\"_self\" align=\"left\" margin_top=\"0\" margin_bottom=\"0\"]CREATE WEBSITE NOW[/mk_button][/vc_column][/mk_page_section][mk_page_section bg_color=\"#363636\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"130\" padding_top=\"90\" padding_bottom=\"40\" margin_bottom=\"0\" first_page=\"false\" last_page=\"true\" section_id=\"contact\"][vc_column width=\"1/1\"][mk_font_icons icon=\"moon-phone-3\" color=\"#636363\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"center\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#00c8d7\" size=\"48\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"40\" font_family=\"none\" align=\"center\" el_class=\"mk-ultra-bold\"]30.4737.3795[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#959595\" size=\"16\" font_weight=\"bold\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"][mk_font_icons icon=\"moon-envelop\" color=\"#00c8d7\" size=\"small\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\"] INQUIRIES@ARTBEES.NET [mk_font_icons icon=\"icon-map-marker\" color=\"#00c8d7\" size=\"small\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\"] DIESACHBEARBEITER SCHÖNHAUSER ALLEE 167C 10435\n\n&nbsp;\n\n[/mk_fancy_title][mk_padding_divider size=\"60\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"32\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Say hello![/mk_fancy_title][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][mk_contact_form style=\"modern\" skin=\"light\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/mk_page_section][vc_row][vc_column width=\"1/1\"][mk_advanced_gmaps height=\"430\" latitude=\"48.8528\" longitude=\"2.372139\" zoom=\"16\" pan_control=\"true\" draggable=\"true\" scroll_wheel=\"false\" zoom_control=\"true\" map_type_control=\"true\" scale_control=\"true\" marker=\"true\" modify_coloring=\"true\" hue=\"#c35022\" saturation=\"-100\" lightness=\"-10\" pin_icon=\"http://artbees.net/themes/jupiter-demo/wp-content/uploads/2014/02/locator.png\"][/vc_column][/vc_row]", "One page", "", "publish", "open", "open", "", "one-page", "", "", "2014-02-12 04:02:57", "2014-02-12 04:02:57", "", "0", "http://artbees.net/themes/jupiter-one-page/?page_id=5", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("905", "1", "2014-08-02 06:50:57", "2014-08-02 06:50:57", "[mk_page_section bg_image=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/Sbg.png\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" min_height=\"100\" full_height=\"false\" padding_top=\"10\" padding_bottom=\"10\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\"][vc_column width=\"2/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/mk_page_section]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 06:50:57", "2014-08-02 06:50:57", "", "16", "http://techno-sites.com/scotts/?p=905", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("898", "1", "2014-08-02 06:39:59", "2014-08-02 06:39:59", "<div style=\"background-image: url(\'http://www.scottsdaleseville.com/wp-content/uploads/2011/11/Sbg.png\'); background-repeat: no-repeat; height: 600px; margin-top: -35px;\">\r\n<h1 style=\"text-align: left; font-size: 28px;\"><em>-----Scottsdale Seville Shopping Center-----</em></h1>\r\n<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>\r\n</div>\r\n\r\n\r\nUPCOMING EVENTS\r\n<hr>\r\n\r\n<div style=\"border: 1px #000 solid; padding: 25px;\">\r\n\r\n<a href=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\"><img class=\"aligncenter size-full wp-image-823\" title=\"logo_mail\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" alt=\"\" width=\"550\" height=\"124\" /></a>\r\n<h1 style=\"text-align: center;\">Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10</h1>\r\n<a href=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\"><img class=\"aligncenter size-full wp-image-824\" title=\"New-ScottsdaleGOEB\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" alt=\"\" width=\"400\" height=\"231\" /></a>\r\n\r\nWe are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we\'ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale!\r\n\r\n</div>\r\n\r\n<hr>\r\n\r\n<div>\r\n\r\n<a href=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\"><img class=\"aligncenter size-large wp-image-813\" title=\"MomDay14GHB\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB-662x1024.png\" alt=\"\" width=\"589\" height=\"910\" /></a>\r\n</div>\r\n\r\n<hr>\r\n<h3>WELCOME OUR NEWEST TENANTS TO THE SEVILLE</h3>\r\n<div>\r\n<div style=\"float: left;\"><a href=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\"><img class=\"aligncenter size-medium wp-image-770\" title=\"Burger21\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21-300x113.png\" alt=\"\" width=\"300\" height=\"113\" /></a></div>\r\n<div>\r\n<h2>Burger 21 Heads West with Arizona Franchise Agreement</h2>\r\nBurger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville<a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\">read more</a>\r\n\r\n</div>\r\n\r\n<hr />\r\n\r\n</div>", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 06:39:59", "2014-08-02 06:39:59", "", "16", "http://techno-sites.com/scotts/?p=898", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("963", "1", "2014-08-04 06:39:53", "2014-08-04 06:39:53", "", "Cupcakes for K-9′s", "", "inherit", "open", "open", "", "961-revision-v1", "", "", "2014-08-04 06:39:53", "2014-08-04 06:39:53", "", "961", "http://techno-sites.com/scotts/?p=963", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("961", "1", "2014-08-04 06:39:53", "2014-08-04 06:39:53", "", "Cupcakes for K-9′s", "", "publish", "open", "open", "", "cupcakes-for-k-9%e2%80%b2s", "", "", "2014-08-04 06:42:47", "2014-08-04 06:42:47", "", "0", "http://techno-sites.com/scotts/?p=961", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("962", "1", "2014-08-04 06:39:28", "2014-08-04 06:39:28", "", "312906_305087216187261_116187768410541_1166339_343287708_n", "", "inherit", "open", "open", "", "312906_305087216187261_116187768410541_1166339_343287708_n-2", "", "", "2014-08-04 06:39:28", "2014-08-04 06:39:28", "", "961", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/312906_305087216187261_116187768410541_1166339_343287708_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("62", "2", "2014-02-12 09:14:01", "2014-02-12 09:14:01", "[vc_row fullwidth=\"false\"][vc_column width=\"2/3\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/portfolio-02.png\" image_width=\"750\" image_height=\"350\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][/vc_column][vc_column width=\"1/3\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"38\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]A very excellent project name here[/mk_fancy_title][mk_padding_divider size=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/divider.png\" image_width=\"98\" image_height=\"2\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][mk_padding_divider size=\"35\"][vc_column_text disable_pattern=\"false\" align=\"left\" margin_bottom=\"0\"]<span style=\"color: #ffffff;\">Maecenas dignissim lectus quam, nec aliquet lectus posuere eu. Phasellus mattis orci sit amet feugiat laoreet. Mauris volutpat eros vitae fringilla mattis. Nullam pellentesque eros eget augue posuere eleifend. In nec dignissim lorem. Fusce eu sem non turpis interdum sagittis.</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_button dimension=\"outline\" size=\"large\" outline_skin=\"light\" outline_active_color=\"#fff\" outline_hover_color=\"#333333\" bg_color=\"#00c8d7\" text_color=\"light\" icon=\"moon-arrow-right-5\" url=\"http://artbees.net/themes/jupiter-demo/portfolio-posts/single-portfolio-full-video-6/\" target=\"_self\" align=\"center\" margin_top=\"60\" margin_bottom=\"0\"]VIEW THE PROJECT[/mk_button][/vc_column][/vc_row]", "portfolio 02", "", "publish", "closed", "closed", "", "portfolio-02", "", "", "2014-02-12 09:14:01", "2014-02-12 09:14:01", "", "0", "http://artbees.net/themes/jupiter-one-page/?post_type=edge&amp;p=62", "2", "edge", "", "0");
INSERT INTO `wp_posts` VALUES("66", "2", "2014-02-12 09:28:38", "2014-02-12 09:28:38", "[vc_row fullwidth=\"false\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"38\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]A very excellent project name here[/mk_fancy_title][mk_padding_divider size=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/divider.png\" image_width=\"98\" image_height=\"2\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\"][mk_padding_divider size=\"35\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_video link=\"http://vimeo.com/63528500\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_button dimension=\"outline\" size=\"large\" outline_skin=\"light\" outline_active_color=\"#fff\" outline_hover_color=\"#333333\" bg_color=\"#00c8d7\" text_color=\"light\" icon=\"moon-arrow-right-5\" url=\"http://artbees.net/themes/jupiter-demo/portfolio-posts/single-portfolio-full-video-6/\" target=\"_self\" align=\"center\" margin_top=\"60\" margin_bottom=\"0\"]VIEW THE PROJECT[/mk_button][/vc_column][/vc_row]", "portfolio 03", "", "publish", "closed", "closed", "", "portfolio-03", "", "", "2014-02-12 09:28:38", "2014-02-12 09:28:38", "", "0", "http://artbees.net/themes/jupiter-one-page/?post_type=edge&amp;p=66", "4", "edge", "", "0");
INSERT INTO `wp_posts` VALUES("68", "2", "2014-02-12 10:15:56", "2014-02-12 10:15:56", "[vc_row fullwidth=\"false\"][vc_column width=\"2/3\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/portfolio-03.png\" image_width=\"750\" image_height=\"350\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\"][/vc_column][vc_column width=\"1/3\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"38\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]A very excellent project name here[/mk_fancy_title][mk_padding_divider size=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/divider.png\" image_width=\"98\" image_height=\"2\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][mk_padding_divider size=\"35\"][vc_column_text disable_pattern=\"false\" align=\"left\" margin_bottom=\"0\"]<span style=\"color: #ffffff;\">Maecenas dignissim lectus quam, nec aliquet lectus posuere eu. Phasellus mattis orci sit amet feugiat laoreet. Mauris volutpat eros vitae fringilla mattis. Nullam pellentesque eros eget augue posuere eleifend. In nec dignissim lorem. Fusce eu sem non turpis interdum sagittis.</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_button dimension=\"outline\" size=\"large\" outline_skin=\"light\" outline_active_color=\"#fff\" outline_hover_color=\"#333333\" bg_color=\"#00c8d7\" text_color=\"light\" icon=\"moon-arrow-right-5\" url=\"http://artbees.net/themes/jupiter-demo/portfolio-posts/single-portfolio-full-video-6/\" target=\"_self\" align=\"center\" margin_top=\"60\" margin_bottom=\"0\"]VIEW THE PROJECT[/mk_button][/vc_column][/vc_row]", "portfolio 04", "", "publish", "closed", "closed", "", "portfolio-04", "", "", "2014-02-12 10:15:56", "2014-02-12 10:15:56", "", "0", "http://artbees.net/themes/jupiter-one-page/?post_type=edge&amp;p=68", "3", "edge", "", "0");
INSERT INTO `wp_posts` VALUES("73", "2", "2014-02-12 10:33:37", "2014-02-12 10:33:37", "", "Laura L. Charette", "", "publish", "closed", "closed", "", "laura-l-charette", "", "", "2014-02-12 10:33:37", "2014-02-12 10:33:37", "", "0", "http://artbees.net/themes/jupiter-one-page/?post_type=employees&amp;p=73", "3", "employees", "", "0");
INSERT INTO `wp_posts` VALUES("77", "2", "2014-02-12 10:34:29", "2014-02-12 10:34:29", "", "Anne J. Downing", "", "publish", "closed", "closed", "", "anne-j-downing", "", "", "2014-02-12 10:34:29", "2014-02-12 10:34:29", "", "0", "http://artbees.net/themes/jupiter-one-page/?post_type=employees&amp;p=77", "1", "employees", "", "0");
INSERT INTO `wp_posts` VALUES("78", "2", "2014-02-12 10:36:16", "2014-02-12 10:36:16", "", "Carl Paxton", "", "publish", "closed", "closed", "", "carl-paxton", "", "", "2014-02-12 10:36:16", "2014-02-12 10:36:16", "", "0", "http://artbees.net/themes/jupiter-one-page/?post_type=employees&amp;p=78", "2", "employees", "", "0");
INSERT INTO `wp_posts` VALUES("890", "1", "2014-08-02 06:04:54", "2014-08-02 06:04:54", "[mk_page_section attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"100\" padding_top=\"10\" padding_bottom=\"10\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\" section_id=\"introduction\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#252525\" size=\"48\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"25\" font_family=\"none\" align=\"center\" el_class=\"mk-letter-spacing\"]Make beautiful websites[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"14\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"40\" font_family=\"none\" align=\"center\" el_class=\"mk-letter-spacing mk-padding-sub-heading \"]<span style=\"color: #ef662f;\">100% MOBILE FRIENDLY</span>[/mk_fancy_title][/vc_column][/mk_page_section][vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"0\" el_class=\"mk-line-height\"]<span style=\"color: #61656a;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem eget, mollis nisi. Nullam mollis sapien viverra, malesuada orci eget, mollis mauris. Nunc commodo leo nec egestas hendrerit. Proin tincidunt mauris sed blandit imperdiet. </span><span style=\"color: #ef662f;\">View our work.</span>[/vc_column_text][/vc_column][/vc_row][mk_page_section bg_color=\"#ffffff\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"100\" padding_top=\"20\" padding_bottom=\"0\" margin_bottom=\"0\" first_page=\"false\" last_page=\"true\"][vc_column width=\"1/1\"][mk_fullwidth_slideshow attachment=\"scroll\" bg_position=\"left top\" enable_3d=\"false\" speed_factor=\"4\" images=\"18,19,20\" effect=\"fade\" animation_speed=\"700\" slideshow_speed=\"4000\" pause_on_hover=\"false\" smooth_height=\"false\" direction_nav=\"false\" border_color=\"#ffffff\" el_class=\"mk-no-padding \"][/vc_column][/mk_page_section][mk_page_section bg_color=\"#f5f5f5\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"350\" padding_top=\"80\" padding_bottom=\"10\" margin_bottom=\"0\" first_page=\"false\" last_page=\"true\"][vc_column width=\"1/3\"][mk_icon_box title=\"Online shopping\" text_size=\"16\" font_weight=\"inherit\" read_more_txt=\"Read more\" read_more_url=\"#\" icon=\"moon-bag-2\" style=\"simple_ultimate\" icon_size=\"medium\" icon_location=\"top\" circled=\"true\" icon_color=\"#00c8d7\" icon_circle_color=\"#ededed\" box_blur=\"false\" txt_color=\"#777777\" margin=\"30\" width=\"1/1\" el_position=\"first\" rounded_circle=\"true\" icon_circle_border_color=\"#e0e0e0\" animation=\"bottom-to-top\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla eget porta mi, sit amet volutpat ipsum. Sed in nisi non metus fringilla pulvinar eget sit amet enim.[/mk_icon_box][/vc_column][vc_column width=\"1/3\"][mk_icon_box title=\"Amazing slideshows\" text_size=\"16\" read_more_txt=\"Read more\" read_more_url=\"#\" icon=\"moon-stack\" style=\"simple_ultimate\" icon_size=\"medium\" icon_location=\"top\" circled=\"false\" icon_color=\"#00c8d7\" icon_circle_color=\"#0bb697\" box_blur=\"false\" margin=\"30\" width=\"1/1\" rounded_circle=\"true\" txt_color=\"#777777\" font_weight=\"inherit\" animation=\"bottom-to-top\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla eget porta mi, sit amet volutpat ipsum. Sed in nisi non metus fringilla pulvinar eget sit amet enim.[/mk_icon_box][/vc_column][vc_column width=\"1/3\"][mk_icon_box title=\"Innovative features\" text_size=\"16\" read_more_txt=\"Read more\" read_more_url=\"#\" icon=\"moon-lamp-2\" style=\"simple_ultimate\" icon_size=\"medium\" icon_location=\"top\" circled=\"false\" icon_color=\"#00c8d7\" icon_circle_color=\"#0bb697\" box_blur=\"false\" margin=\"30\" width=\"1/1\" el_position=\"last\" rounded_circle=\"true\" txt_color=\"#777777\" font_weight=\"inherit\" animation=\"bottom-to-top\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla eget porta mi, sit amet volutpat ipsum. Sed in nisi non metus fringilla pulvinar eget sit amet enim.[/mk_icon_box][/vc_column][/mk_page_section][mk_page_section bg_image=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/quote-bg-01.jpg\" attachment=\"fixed\" bg_position=\"center bottom\" bg_repeat=\"repeat\" bg_stretch=\"true\" enable_3d=\"true\" speed_factor=\"0.2\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"500\" padding_top=\"250\" padding_bottom=\"10\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\" section_id=\"about\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"32\" font_weight=\"inhert\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"Crete+Round\" font_type=\"google\" align=\"center\" el_class=\"mk-italic-text\"]Success finally came when we were able to convince some creative men that good appearance was a salable commodity, that it often cut costs, enhanced a product’s prestige, raised corporate profits, benefited the customer and increased employment.[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"16\" font_weight=\"normal\" margin_top=\"50\" margin_bottom=\"18\" font_family=\"Open+Sans:400,600,700,800\" font_type=\"google\" align=\"center\" el_class=\"mk-letter-spacing\"]- RAYMOND LOEWY[/mk_fancy_title][/vc_column][/mk_page_section][vc_row][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#252525\" size=\"38\" font_weight=\"300\" margin_top=\"20\" margin_bottom=\"25\" font_family=\"none\" align=\"center\" el_class=\"mk-line-height-50\"]We are a team of dedicated designer\r\nand committed strategists.[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"14\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"40\" font_family=\"none\" align=\"center\" el_class=\"mk-letter-spacing mk-padding-sub-heading \"]<span style=\"color: #ef662f;\">WHO WE ARE</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"0\" el_class=\"mk-line-height\"]<span style=\"color: #61656a;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem eget, mollis nisi. Nullam mollis sapien viverra, malesuada orci eget, mollis mauris.</span> <span style=\"color: #ef662f;\">Read Bios.</span>[/vc_column_text][mk_padding_divider size=\"110\"][mk_employees style=\"simple\" column=\"3\" rounded_image=\"true\" box_blur=\"false\" count=\"3\" employees=\"77,78,73\" offset=\"0\" description=\"true\" order=\"ASC\" orderby=\"menu_order\" animation=\"fade-in\"][/vc_column][/vc_row][mk_page_section bg_image=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/cartographer.png\" attachment=\"fixed\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"0.2\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"300\" padding_top=\"80\" padding_bottom=\"130\" margin_bottom=\"0\" first_page=\"false\" last_page=\"true\" section_id=\"process\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"38\" font_weight=\"300\" margin_top=\"20\" margin_bottom=\"90\" font_family=\"none\" align=\"center\" el_class=\"mk-line-height-50\"]Our Process[/mk_fancy_title][vc_row_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://artbees.net/themes/jupiter-demo/wp-content/uploads/2014/02/proc-01.png\" image_width=\"800\" image_height=\"350\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"left-to-right\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"20\" font_weight=\"bolder\" margin_top=\"40\" margin_bottom=\"10\" font_family=\"none\" align=\"left\" el_class=\"mk-ultra-bold\"]<span style=\"color: #ef662f;\">01 /</span> <span style=\"color: #ffffff;\">CONCEPTS AND BRAINSTORMING</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\" el_class=\"mk-font-size-process\"]<span style=\"color: #cccccc;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem.</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://artbees.net/themes/jupiter-demo/wp-content/uploads/2014/02/proc-04.png\" image_width=\"800\" image_height=\"350\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"left-to-right\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"20\" font_weight=\"bolder\" margin_top=\"40\" margin_bottom=\"10\" font_family=\"none\" align=\"left\" el_class=\"mk-ultra-bold\"]<span style=\"color: #ef662f;\">02 /</span> <span style=\"color: #ffffff;\">RESEARCH &amp; DEVELOPMENT</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\" el_class=\"mk-font-size-process\"]<span style=\"color: #cccccc;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem.</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://artbees.net/themes/jupiter-demo/wp-content/uploads/2014/02/proc-02.png\" image_width=\"800\" image_height=\"350\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"right-to-left\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"20\" font_weight=\"bolder\" margin_top=\"40\" margin_bottom=\"10\" font_family=\"none\" align=\"left\" el_class=\"mk-ultra-bold\"]<span style=\"color: #ef662f;\">03 /</span> <span style=\"color: #ffffff;\">SKETCHING &amp; DRAFTING</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\" el_class=\"mk-font-size-process\"]<span style=\"color: #cccccc;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem.</span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://artbees.net/themes/jupiter-demo/wp-content/uploads/2014/02/proc-03.png\" image_width=\"800\" image_height=\"350\" crop=\"false\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"right-to-left\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"20\" font_weight=\"bolder\" margin_top=\"40\" margin_bottom=\"10\" font_family=\"none\" align=\"left\" el_class=\"mk-ultra-bold\"]<span style=\"color: #ef662f;\">04 /</span> <span style=\"color: #ffffff;\">EXECUTION &amp; DIGITALISATION</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\" el_class=\"mk-font-size-process\"]<span style=\"color: #cccccc;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/mk_page_section][vc_row fullwidth=\"true\" id=\"portfolio\"][vc_column width=\"1/1\"][mk_edge_slider slides=\"40,62,66,68\" order=\"ASC\" orderby=\"menu_order\" full_height=\"true\" height=\"700\" animation_speed=\"700\" slideshow_speed=\"5000\" direction_nav=\"true\"][/vc_column][/vc_row][mk_page_section bg_image=\"http://techno-sites.com/scotts/wp-content/uploads/2014/02/quote-bg-02.jpg\" attachment=\"fixed\" bg_position=\"center bottom\" bg_repeat=\"repeat\" bg_stretch=\"true\" enable_3d=\"true\" speed_factor=\"0.2\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"500\" padding_top=\"250\" padding_bottom=\"10\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\" section_id=\"features\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"32\" font_weight=\"inhert\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"Crete+Round\" font_type=\"google\" align=\"center\" el_class=\"mk-italic-text\"]The goal is not to make your user interface as realistic as possible. The goal is to add those details which help users identify what an element is, and how to interact with it, and to add no more than those details.[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"16\" font_weight=\"normal\" margin_top=\"50\" margin_bottom=\"18\" font_family=\"Open+Sans:400,600,700,800\" font_type=\"google\" align=\"center\" el_class=\"mk-letter-spacing\"]-  LUKAS MATHIS[/mk_fancy_title][/vc_column][/mk_page_section][vc_row][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#252525\" size=\"38\" font_weight=\"300\" margin_top=\"20\" margin_bottom=\"25\" font_family=\"none\" align=\"center\" el_class=\"mk-line-height-50\"]Providing value to businesses by aligning smart design strategies with inspired marketing.[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#393836\" size=\"14\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"40\" font_family=\"none\" align=\"center\" el_class=\"mk-letter-spacing mk-padding-sub-heading \"]<span style=\"color: #ef662f;\">FEATURES &amp; CAPABILITIES</span>[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"0\" el_class=\"mk-line-height\"]<span style=\"color: #61656a;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem eget, mollis nisi. Nullam mollis sapien viverra, malesuada orci eget, mollis mauris.</span> <span style=\"color: #ef662f;\">Review features.</span>[/vc_column_text][mk_padding_divider size=\"110\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"icon-facetime-video\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]NARRATIVE VIDEO TUTORIALS[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"15\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem eget, mollis nisi. Nullam mollis sapien viverra, malesuada orci eget, mollis mauris. Nunc commodo leo nec egestas hendrerit. Proin tincidunt mauris sed blandit imperdiet. Etiam nulla nisi, malesuada eu justo laoreet, lobortis congue libero. Duis sit amet urna vitae sem facilisis cursus.[/vc_column_text][mk_custom_list style=\"f03d\" icon_color=\"#ef662f\" margin_bottom=\"0\" align=\"none\"]\r\n<ul>\r\n	<li><strong><a href=\"http://www.youtube.com/user/artbeesthemes?feature=watch\">Check out videos</a></strong></li>\r\n</ul>\r\n[/mk_custom_list][mk_padding_divider size=\"50\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"moon-mobile\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]RESPONSIVE &amp; RETINA DISPLAY READY[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"15\"]Integer ac cursus neque, at tristique mauris. Suspendisse sed velit ante. In metus nunc, varius sollicitudin rutrum eu, varius ac nisi. Vivamus id diam est.[/vc_column_text][mk_custom_list style=\"e26a\" icon_color=\"#ef662f\" margin_bottom=\"0\" align=\"none\"]\r\n<ul>\r\n	<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</li>\r\n	<li>Proin non blandit</li>\r\n	<li>Sed eget tortor</li>\r\n	<li>Integer ac cursus neque</li>\r\n	<li>Pellentesque pretium</li>\r\n</ul>\r\n[/mk_custom_list][mk_padding_divider size=\"50\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"icon-copy\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]DEMO CONTENTS AVAILABLE[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"15\"]Pellentesque pretium arcu molestie fermentum suscipit. Curabitur et laoreet eros. Proin tincidunt, neque ac laoreet facilisis, nibh turpis consequat ipsum, cursus auctor metus sapien a arcu. Phasellus condimentum felis nec sodales hendrerit. Aliquam non gravida quam, eget pharetra mauris. Proin eu viverra tortor. Integer bibendum erat orci. Curabitur molestie tempus tortor, et imperdiet risus placerat sed. Integer pulvinar elit erat, vitae sagittis tortor accumsan facilisis. Curabitur vel cursus eros. Integer convallis sodales dolor, at feugiat dolor laoreet vel. Mauris porttitor diam ut pulvinar ultrices. Maecenas in enim non nisl fermentum lobortis.[/vc_column_text][mk_custom_list style=\"e02c\" icon_color=\"#ef662f\" margin_bottom=\"0\" align=\"none\"]\r\n<ul>\r\n	<li><strong><a href=\"http://artbees.net/themes/jupiter/docs/#ImportingDemoContent\">Download contents now</a></strong></li>\r\n</ul>\r\n[/mk_custom_list][mk_padding_divider size=\"50\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"moon-cube-3\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]POWERFUL PAGE COMPOSER[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"15\"]Integer ac cursus neque, at tristique mauris. Suspendisse sed velit ante. In metus nunc, varius sollicitudin rutrum eu, varius ac nisi. Vivamus id diam est.[/vc_column_text][mk_custom_list style=\"e1d5\" icon_color=\"#ef662f\" margin_bottom=\"0\" align=\"none\"]\r\n<ul>\r\n	<li><strong><a href=\"http://artbees.net/themes/jupiter-demo/key-features/\">Check out features</a></strong></li>\r\n</ul>\r\n[/mk_custom_list][mk_padding_divider size=\"50\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"icon-bolt\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]OUTSTANDING ADMIN PANEL[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"50\"]Pellentesque pretium arcu molestie fermentum suscipit. Curabitur et laoreet eros. Proin tincidunt, neque ac laoreet facilisis, nibh turpis consequat ipsum, cursus auctor metus sapien a arcu. Phasellus condimentum felis nec sodales hendrerit. Aliquam non gravida quam, eget pharetra mauris. Proin eu viverra tortor. Integer bibendum erat orci. Curabitur molestie tempus <span style=\"color: #ef662f;\">risus placerat sed.</span>\r\n\r\nInteger pulvinar elit erat, vitae sagittis tortor accumsan facilisis. Curabitur vel cursus eros. Integer convallis sodales dolor, at feugiat dolor laoreet vel. Mauris porttitor diam ut pulvinar ultrices.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][mk_font_icons icon=\"moon-umbrella\" color=\"#ffffff\" size=\"x-large\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ef662f\" align=\"center\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"3/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ef662f\" size=\"18\" font_weight=\"bold\" margin_top=\"15\" margin_bottom=\"25\" font_family=\"none\" align=\"left\"]DEDICATED &amp; RELIABLE SUPPORT[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"15\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non blandit nibh. Sed eget tortor tincidunt, auctor sem eget, mollis nisi. Nullam mollis sapien viverra, malesuada orci eget, mollis mauris. Nunc commodo leo nec egestas hendrerit. Proin tincidunt mauris sed blandit imperdiet. Etiam nulla nisi, malesuada eu justo laoreet, lobortis congue libero. Duis sit amet urna vitae sem facilisis cursus.[/vc_column_text][mk_custom_list style=\"e47d\" icon_color=\"#ef662f\" margin_bottom=\"0\" align=\"none\"]\r\n<ul>\r\n	<li><strong><a href=\"http://artbees.net/support/\">Go to Support forum</a></strong></li>\r\n</ul>\r\n[/mk_custom_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][mk_page_section bg_color=\"#00c8d7\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" padding_top=\"75\" padding_bottom=\"0\" margin_bottom=\"0\" first_page=\"false\" last_page=\"true\" min_height=\"125\"][vc_column width=\"2/3\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"32\" font_weight=\"normal\" margin_top=\"0\" margin_bottom=\"0\" font_family=\"none\" align=\"left\" el_class=\"mk-ultra-bold\"]Start making jaw dropping websites. Easy.[/mk_fancy_title][/vc_column][vc_column width=\"1/3\"][mk_button dimension=\"three\" size=\"large\" outline_skin=\"dark\" outline_active_color=\"#fff\" outline_hover_color=\"#333333\" bg_color=\"#ef662f\" text_color=\"light\" target=\"_self\" align=\"left\" margin_top=\"0\" margin_bottom=\"0\"]CREATE WEBSITE NOW[/mk_button][/vc_column][/mk_page_section][mk_page_section bg_color=\"#363636\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"false\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"Shortcodes\" min_height=\"130\" padding_top=\"90\" padding_bottom=\"40\" margin_bottom=\"0\" first_page=\"false\" last_page=\"true\" section_id=\"contact\"][vc_column width=\"1/1\"][mk_font_icons icon=\"moon-phone-3\" color=\"#636363\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"center\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#00c8d7\" size=\"48\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"40\" font_family=\"none\" align=\"center\" el_class=\"mk-ultra-bold\"]30.4737.3795[/mk_fancy_title][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#959595\" size=\"16\" font_weight=\"bold\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"][mk_font_icons icon=\"moon-envelop\" color=\"#00c8d7\" size=\"small\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\"] INQUIRIES@ARTBEES.NET [mk_font_icons icon=\"icon-map-marker\" color=\"#00c8d7\" size=\"small\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\"] DIESACHBEARBEITER SCHÖNHAUSER ALLEE 167C 10435\r\n\r\n&nbsp;\r\n\r\n[/mk_fancy_title][mk_padding_divider size=\"60\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"32\" font_weight=\"300\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Say hello![/mk_fancy_title][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][mk_contact_form style=\"modern\" skin=\"light\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/mk_page_section][vc_row][vc_column width=\"1/1\"][mk_advanced_gmaps height=\"430\" latitude=\"48.8528\" longitude=\"2.372139\" zoom=\"16\" pan_control=\"true\" draggable=\"true\" scroll_wheel=\"false\" zoom_control=\"true\" map_type_control=\"true\" scale_control=\"true\" marker=\"true\" modify_coloring=\"true\" hue=\"#c35022\" saturation=\"-100\" lightness=\"-10\" pin_icon=\"http://artbees.net/themes/jupiter-demo/wp-content/uploads/2014/02/locator.png\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "889-revision-v1", "", "", "2014-08-02 06:04:54", "2014-08-02 06:04:54", "", "889", "http://techno-sites.com/scotts/?p=890", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("891", "1", "2014-08-02 06:17:10", "2014-08-02 06:17:10", "", "logo (2)", "", "inherit", "open", "open", "", "logo-2", "", "", "2014-08-02 06:17:10", "2014-08-02 06:17:10", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/logo-2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("892", "1", "2014-08-02 06:31:16", "2014-08-02 06:31:16", " ", "", "", "publish", "open", "open", "", "892", "", "", "2014-08-06 07:41:21", "2014-08-06 07:41:21", "", "0", "http://techno-sites.com/scotts/?p=892", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("893", "1", "2014-08-02 06:31:16", "2014-08-02 06:31:16", " ", "", "", "publish", "open", "open", "", "893", "", "", "2014-08-06 07:41:21", "2014-08-06 07:41:21", "", "0", "http://techno-sites.com/scotts/?p=893", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("895", "1", "2014-08-02 06:31:16", "2014-08-02 06:31:16", " ", "", "", "publish", "open", "open", "", "895", "", "", "2014-08-06 07:41:21", "2014-08-06 07:41:21", "", "0", "http://techno-sites.com/scotts/?p=895", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("896", "1", "2014-08-02 06:31:16", "2014-08-02 06:31:16", " ", "", "", "publish", "open", "open", "", "896", "", "", "2014-08-06 07:41:21", "2014-08-06 07:41:21", "", "0", "http://techno-sites.com/scotts/?p=896", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1114", "1", "2014-08-06 12:07:37", "2014-08-06 12:07:37", "", "a1", "", "inherit", "open", "open", "", "a1", "", "", "2014-08-06 12:07:37", "2014-08-06 12:07:37", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/a1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("900", "1", "2014-08-02 06:44:39", "2014-08-02 06:44:39", "", "blue", "", "inherit", "open", "open", "", "blue", "", "", "2014-08-02 06:44:39", "2014-08-02 06:44:39", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/blue.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("901", "1", "2014-08-02 06:44:44", "2014-08-02 06:44:44", "", "purple1", "", "inherit", "open", "open", "", "purple1", "", "", "2014-08-02 06:44:44", "2014-08-02 06:44:44", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/purple1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("902", "1", "2014-08-02 06:44:46", "2014-08-02 06:44:46", "", "red", "", "inherit", "open", "open", "", "red", "", "", "2014-08-02 06:44:46", "2014-08-02 06:44:46", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/red.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("903", "1", "2014-08-06 07:25:19", "2014-08-06 07:25:19", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p1.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p3.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p2.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p4.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"14\" margin_bottom=\"5\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"true\" color=\"#ffffff\" size=\"31\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"Copse\" align=\"center\" font_type=\"google\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\n\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\n\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\n\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"20\" margin_bottom=\"0\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-autosave-v1", "", "", "2014-08-06 07:25:19", "2014-08-06 07:25:19", "", "16", "http://techno-sites.com/scotts/?p=903", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("904", "1", "2014-08-02 06:50:39", "2014-08-02 06:50:39", "", "Sbg", "", "inherit", "open", "open", "", "sbg", "", "", "2014-08-02 06:50:39", "2014-08-02 06:50:39", "", "16", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/Sbg.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("908", "1", "2014-08-02 07:00:22", "2014-08-02 07:00:22", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_padding_divider size=\"30\"][mk_fancy_title tag_name=\"h2\" style=\"true\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 07:00:22", "2014-08-02 07:00:22", "", "16", "http://techno-sites.com/scotts/?p=908", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("909", "1", "2014-08-02 07:02:40", "2014-08-02 07:02:40", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_padding_divider size=\"30\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 07:02:40", "2014-08-02 07:02:40", "", "16", "http://techno-sites.com/scotts/?p=909", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("910", "1", "2014-08-02 07:05:32", "2014-08-02 07:05:32", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_padding_divider size=\"30\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]UPCOMING EVENTS[/mk_fancy_title][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 07:05:32", "2014-08-02 07:05:32", "", "16", "http://techno-sites.com/scotts/?p=910", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("911", "1", "2014-08-02 07:08:16", "2014-08-02 07:08:16", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_padding_divider size=\"30\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#231f20\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]UPCOMING EVENTS[/mk_fancy_title][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 07:08:16", "2014-08-02 07:08:16", "", "16", "http://techno-sites.com/scotts/?p=911", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("912", "1", "2014-08-02 07:10:33", "2014-08-02 07:10:33", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_padding_divider size=\"30\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]UPCOMING EVENTS[/mk_fancy_title][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 07:10:33", "2014-08-02 07:10:33", "", "16", "http://techno-sites.com/scotts/?p=912", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("913", "1", "2014-08-02 07:14:16", "2014-08-02 07:14:16", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_padding_divider size=\"30\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"20\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 07:14:16", "2014-08-02 07:14:16", "", "16", "http://techno-sites.com/scotts/?p=913", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("914", "1", "2014-08-02 07:16:38", "2014-08-02 07:16:38", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_padding_divider size=\"30\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"20\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 07:16:38", "2014-08-02 07:16:38", "", "16", "http://techno-sites.com/scotts/?p=914", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("915", "1", "2014-08-02 07:18:03", "2014-08-02 07:18:03", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_padding_divider size=\"30\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"20\" margin_bottom=\"20\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 07:18:03", "2014-08-02 07:18:03", "", "16", "http://techno-sites.com/scotts/?p=915", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("916", "1", "2014-08-02 07:20:27", "2014-08-02 07:20:27", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_padding_divider size=\"30\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 07:20:27", "2014-08-02 07:20:27", "", "16", "http://techno-sites.com/scotts/?p=916", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("918", "1", "2014-08-02 07:23:03", "2014-08-02 07:23:03", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_padding_divider size=\"30\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 07:23:03", "2014-08-02 07:23:03", "", "16", "http://techno-sites.com/scotts/?p=918", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("917", "1", "2014-08-02 07:21:51", "2014-08-02 07:21:51", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_padding_divider size=\"30\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 07:21:51", "2014-08-02 07:21:51", "", "16", "http://techno-sites.com/scotts/?p=917", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("919", "1", "2014-08-02 07:24:36", "2014-08-02 07:24:36", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_padding_divider size=\"30\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 07:24:36", "2014-08-02 07:24:36", "", "16", "http://techno-sites.com/scotts/?p=919", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("920", "1", "2014-08-02 07:31:20", "2014-08-02 07:31:20", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_padding_divider size=\"30\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-02 07:31:20", "2014-08-02 07:31:20", "", "16", "http://techno-sites.com/scotts/?p=920", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("921", "1", "2014-08-02 08:01:18", "2014-08-02 08:01:18", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" image_width=\"550\" image_height=\"260\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\"][mk_font_icons icon=\"icon-zoom-in\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ed1c24\" align=\"center\" target=\"_blank\" link=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\"][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"18\"]<a href=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" target=\"_blank\">click on directory to enlarge</a>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\n<table>\n<tbody>\n<tr>\n<td width=\"300\"><strong>SHOP</strong></td>\n<td><strong>ste</strong></td>\n</tr>\n<tr>\n<td>Nove’</td>\n<td>120</td>\n</tr>\n<tr>\n<td>Gifted Hands</td>\n<td>107</td>\n</tr>\n<tr>\n<td>The Leopard’s Spot Boutique</td>\n<td>162</td>\n</tr>\n<tr>\n<td>Davinci Luxe</td>\n<td>176</td>\n</tr>\n<tr>\n<td>Crease Liberty</td>\n<td>177</td>\n</tr>\n<tr>\n<td>Draper’s &amp; Damon’s</td>\n<td>191</td>\n</tr>\n<tr>\n<td>Betteridge Jewelers</td>\n<td>102</td>\n</tr>\n<tr>\n<td>Duxiana</td>\n<td>103</td>\n</tr>\n<tr>\n<td>Azadi Fine Rugs &amp; Antiques</td>\n<td>124</td>\n</tr>\n<tr>\n<td>Sole Sports Running Zone</td>\n<td>170</td>\n</tr>\n<tr>\n<td>Wild Birds Unlimited</td>\n<td>174</td>\n</tr>\n<tr>\n<td>Home-ology</td>\n<td>142</td>\n</tr>\n</tbody>\n</table>\n[/mk_table][/vc_column_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\n<table>\n<tbody>\n<tr>\n<td width=\"300\"><strong>DINE</strong></td>\n<td><strong>ste</strong></td>\n</tr>\n<tr>\n<td>Jamba Juice</td>\n<td>100</td>\n</tr>\n<tr>\n<td>Starbucks</td>\n<td>101</td>\n</tr>\n<tr>\n<td>La Petite France Bistro</td>\n<td>127</td>\n</tr>\n<tr>\n<td>ShinBay</td>\n<td>154</td>\n</tr>\n<tr>\n<td>Terrior Wine Pub</td>\n<td>157</td>\n</tr>\n<tr>\n<td>Wildflower Bread Company</td>\n<td>171</td>\n</tr>\n<tr>\n<td>21 Cakes</td>\n<td>175</td>\n</tr>\n<tr>\n<td>Cove Trattoria</td>\n<td>184</td>\n</tr>\n<tr>\n<td>Ruth’s Chris Steak House</td>\n<td>290</td>\n</tr>\n<tr>\n<td>Fogo of Scottsdale</td>\n<td>147</td>\n</tr>\n<tr>\n<td>Burger 21</td>\n<td>172</td>\n</tr>\n</tbody>\n</table>\n[/mk_table][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\n<table>\n<tbody>\n<tr>\n<td width=\"300\"><strong>RELAX</strong></td>\n<td><strong>ste</strong></td>\n</tr>\n<tr>\n<td>Rumors Hair &amp; Nail Salon</td>\n<td>105</td>\n</tr>\n<tr>\n<td>20 Lounge Nail Bar &amp; Boutique</td>\n<td>158</td>\n</tr>\n<tr>\n<td>Massage Envy</td>\n<td>166</td>\n</tr>\n<tr>\n<td>Beverly Hills Rejuvenation Center</td>\n<td>164</td>\n</tr>\n</tbody>\n</table>\n[/mk_table][/vc_column_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\n<table>\n<tbody>\n<tr>\n<td width=\"300\"><strong>SERVICES</strong></td>\n<td><strong>ste</strong></td>\n</tr>\n<tr>\n<td>Encore Cleaners</td>\n<td>182</td>\n</tr>\n<tr>\n<td>Beal Bank</td>\n<td>135</td>\n</tr>\n<tr>\n<td>Matteson Realty Services</td>\n<td>195</td>\n</tr>\n<tr>\n<td>Scottrade</td>\n<td>140</td>\n</tr>\n</tbody>\n</table>\n[/mk_table][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "Directory", "", "inherit", "open", "open", "", "76-autosave-v1", "", "", "2014-08-02 08:01:18", "2014-08-02 08:01:18", "", "76", "http://techno-sites.com/scotts/?p=921", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("922", "1", "2014-08-02 07:41:06", "2014-08-02 07:41:06", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" image_width=\"550\" image_height=\"260\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\"][mk_font_icons icon=\"icon-zoom-in\" color=\"#ffffff\" size=\"small\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ed1c24\" align=\"center\" target=\"_self\"][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"0\"]<a href=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" target=\"_blank\">click on directory to enlarge</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\">Directory</h1>\r\n<p style=\"text-align: center;\"><img style=\"width: 550px;\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2012/08/directorymap.jpg\" alt=\"map directory of Scottsdale Seville Shops\" /></p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.scottsdaleseville.com/wp-content/uploads/2012/08/directorymap.jpg\" target=\"_blank\">click on directory to enlarge\r\n</a></p>\r\n\r\n<div style=\"margin: 0 auto; margin-left: 15px;\">\r\n<div style=\"float: left; width: 40%;\"><strong>SHOP</strong>\r\nNove\'\r\nGifted Hands\r\nThe Leopard\'s Spot Boutique\r\nDavinci Luxe\r\nCrease Liberty\r\nDraper\'s &amp; Damon\'s\r\nBetteridge Jewelers\r\nDuxiana\r\nAzadi Fine Rugs &amp; Antiques\r\nSole Sports Running Zone\r\nWild Birds Unlimited\r\nHome-ology</div>\r\n<div style=\"width: 25px; float: left; margin-right: 25px;\"><strong>ste</strong>\r\n120\r\n107\r\n162\r\n176\r\n177\r\n191\r\n102\r\n103\r\n124\r\n170\r\n174\r\n142</div>\r\n<div style=\"float: left; width: 40%;\"><strong>DINE</strong>\r\nJamba Juice\r\nStarbucks\r\nLa Petite France Bistro\r\nShinBay\r\nTerrior Wine Pub\r\nWildflower Bread Company\r\n21 Cakes\r\nCove Trattoria\r\nRuth\'s Chris Steak House\r\nFogo of Scottsdale\r\nBurger 21</div>\r\n<div style=\"width: 20px; float: left;\"><strong>ste</strong>\r\n100\r\n101\r\n127\r\n154\r\n157\r\n171\r\n175\r\n184\r\n290\r\n147\r\n172\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\"> -</span>\r\n<span style=\"color: #ffffff;\"> -</span>\r\n<span style=\"color: #ffffff;\"> -</span></div>\r\n<div style=\"float: left; width: 40%; margin-top: 20px;\"><strong>RELAX</strong>\r\nRumors Hair &amp; Nail Salon\r\n20 Lounge Nail Bar &amp; Boutique\r\nMassage Envy\r\nBeverly Hills Rejuvenation Center</div>\r\n<div style=\"width: 25px; float: left; margin-right: 25px; margin-top: 20px;\"><strong>ste</strong>\r\n105166\r\n158164</div>\r\n<div style=\"float: left; width: 40%; margin-top: 20px;\"><strong>SERVICES</strong>\r\nEncore Cleaners\r\nBeal Bank\r\nMatteson Realty Services\r\nScottrade</div>\r\n<div style=\"width: 25px; float: left; margin-right: 25px; margin-top: 20px;\"><strong>ste</strong>\r\n182\r\n135\r\n195\r\n140</div>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row]", "Directory", "", "inherit", "open", "open", "", "76-revision-v1", "", "", "2014-08-02 07:41:06", "2014-08-02 07:41:06", "", "76", "http://techno-sites.com/scotts/?p=922", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("923", "1", "2014-08-02 07:43:46", "2014-08-02 07:43:46", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" image_width=\"550\" image_height=\"260\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\"][mk_font_icons icon=\"icon-zoom-in\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ed1c24\" align=\"center\" target=\"_self\"][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"0\"]<a href=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" target=\"_blank\">click on directory to enlarge</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\">Directory</h1>\r\n<p style=\"text-align: center;\"><img style=\"width: 550px;\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2012/08/directorymap.jpg\" alt=\"map directory of Scottsdale Seville Shops\" /></p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.scottsdaleseville.com/wp-content/uploads/2012/08/directorymap.jpg\" target=\"_blank\">click on directory to enlarge\r\n</a></p>\r\n\r\n<div style=\"margin: 0 auto; margin-left: 15px;\">\r\n<div style=\"float: left; width: 40%;\"><strong>SHOP</strong>\r\nNove\'\r\nGifted Hands\r\nThe Leopard\'s Spot Boutique\r\nDavinci Luxe\r\nCrease Liberty\r\nDraper\'s &amp; Damon\'s\r\nBetteridge Jewelers\r\nDuxiana\r\nAzadi Fine Rugs &amp; Antiques\r\nSole Sports Running Zone\r\nWild Birds Unlimited\r\nHome-ology</div>\r\n<div style=\"width: 25px; float: left; margin-right: 25px;\"><strong>ste</strong>\r\n120\r\n107\r\n162\r\n176\r\n177\r\n191\r\n102\r\n103\r\n124\r\n170\r\n174\r\n142</div>\r\n<div style=\"float: left; width: 40%;\"><strong>DINE</strong>\r\nJamba Juice\r\nStarbucks\r\nLa Petite France Bistro\r\nShinBay\r\nTerrior Wine Pub\r\nWildflower Bread Company\r\n21 Cakes\r\nCove Trattoria\r\nRuth\'s Chris Steak House\r\nFogo of Scottsdale\r\nBurger 21</div>\r\n<div style=\"width: 20px; float: left;\"><strong>ste</strong>\r\n100\r\n101\r\n127\r\n154\r\n157\r\n171\r\n175\r\n184\r\n290\r\n147\r\n172\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\"> -</span>\r\n<span style=\"color: #ffffff;\"> -</span>\r\n<span style=\"color: #ffffff;\"> -</span></div>\r\n<div style=\"float: left; width: 40%; margin-top: 20px;\"><strong>RELAX</strong>\r\nRumors Hair &amp; Nail Salon\r\n20 Lounge Nail Bar &amp; Boutique\r\nMassage Envy\r\nBeverly Hills Rejuvenation Center</div>\r\n<div style=\"width: 25px; float: left; margin-right: 25px; margin-top: 20px;\"><strong>ste</strong>\r\n105166\r\n158164</div>\r\n<div style=\"float: left; width: 40%; margin-top: 20px;\"><strong>SERVICES</strong>\r\nEncore Cleaners\r\nBeal Bank\r\nMatteson Realty Services\r\nScottrade</div>\r\n<div style=\"width: 25px; float: left; margin-right: 25px; margin-top: 20px;\"><strong>ste</strong>\r\n182\r\n135\r\n195\r\n140</div>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row]", "Directory", "", "inherit", "open", "open", "", "76-revision-v1", "", "", "2014-08-02 07:43:46", "2014-08-02 07:43:46", "", "76", "http://techno-sites.com/scotts/?p=923", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("926", "1", "2014-08-02 07:59:49", "2014-08-02 07:59:49", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" image_width=\"550\" image_height=\"260\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\"][mk_font_icons icon=\"icon-zoom-in\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ed1c24\" align=\"center\" target=\"_self\"][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"18\"]<a href=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" target=\"_blank\">click on directory to enlarge</a>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>SHOP</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Nove’</td>\r\n<td>120</td>\r\n</tr>\r\n<tr>\r\n<td>Gifted Hands</td>\r\n<td>107</td>\r\n</tr>\r\n<tr>\r\n<td>The Leopard’s Spot Boutique</td>\r\n<td>162</td>\r\n</tr>\r\n<tr>\r\n<td>Davinci Luxe</td>\r\n<td>176</td>\r\n</tr>\r\n<tr>\r\n<td>Crease Liberty</td>\r\n<td>177</td>\r\n</tr>\r\n<tr>\r\n<td>Draper’s &amp; Damon’s</td>\r\n<td>191</td>\r\n</tr>\r\n<tr>\r\n<td>Betteridge Jewelers</td>\r\n<td>102</td>\r\n</tr>\r\n<tr>\r\n<td>Duxiana</td>\r\n<td>103</td>\r\n</tr>\r\n<tr>\r\n<td>Azadi Fine Rugs &amp; Antiques</td>\r\n<td>124</td>\r\n</tr>\r\n<tr>\r\n<td>Sole Sports Running Zone</td>\r\n<td>170</td>\r\n</tr>\r\n<tr>\r\n<td>Wild Birds Unlimited</td>\r\n<td>174</td>\r\n</tr>\r\n<tr>\r\n<td>Home-ology</td>\r\n<td>142</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>DINE</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Jamba Juice</td>\r\n<td>100</td>\r\n</tr>\r\n<tr>\r\n<td>Starbucks</td>\r\n<td>101</td>\r\n</tr>\r\n<tr>\r\n<td>La Petite France Bistro</td>\r\n<td>127</td>\r\n</tr>\r\n<tr>\r\n<td>ShinBay</td>\r\n<td>154</td>\r\n</tr>\r\n<tr>\r\n<td>Terrior Wine Pub</td>\r\n<td>157</td>\r\n</tr>\r\n<tr>\r\n<td>Wildflower Bread Company</td>\r\n<td>171</td>\r\n</tr>\r\n<tr>\r\n<td>21 Cakes</td>\r\n<td>175</td>\r\n</tr>\r\n<tr>\r\n<td>Cove Trattoria</td>\r\n<td>184</td>\r\n</tr>\r\n<tr>\r\n<td>Ruth’s Chris Steak House</td>\r\n<td>290</td>\r\n</tr>\r\n<tr>\r\n<td>Fogo of Scottsdale</td>\r\n<td>147</td>\r\n</tr>\r\n<tr>\r\n<td>Burger 21</td>\r\n<td>172</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>RELAX</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Rumors Hair &amp; Nail Salon</td>\r\n<td>105</td>\r\n</tr>\r\n<tr>\r\n<td>20 Lounge Nail Bar &amp; Boutique</td>\r\n<td>158</td>\r\n</tr>\r\n<tr>\r\n<td>Massage Envy</td>\r\n<td>166</td>\r\n</tr>\r\n<tr>\r\n<td>Beverly Hills Rejuvenation Center</td>\r\n<td>164</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>SERVICES</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Encore Cleaners</td>\r\n<td>182</td>\r\n</tr>\r\n<tr>\r\n<td>Beal Bank</td>\r\n<td>135</td>\r\n</tr>\r\n<tr>\r\n<td>Matteson Realty Services</td>\r\n<td>195</td>\r\n</tr>\r\n<tr>\r\n<td>Scottrade</td>\r\n<td>140</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "Directory", "", "inherit", "open", "open", "", "76-revision-v1", "", "", "2014-08-02 07:59:49", "2014-08-02 07:59:49", "", "76", "http://techno-sites.com/scotts/?p=926", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("925", "1", "2014-08-02 07:55:01", "2014-08-02 07:55:01", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" image_width=\"550\" image_height=\"260\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\"][mk_font_icons icon=\"icon-zoom-in\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ed1c24\" align=\"center\" target=\"_self\"][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"0\"]<a href=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" target=\"_blank\">click on directory to enlarge</a>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>SHOP</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Nove’</td>\r\n<td>120</td>\r\n</tr>\r\n<tr>\r\n<td>Gifted Hands</td>\r\n<td>107</td>\r\n</tr>\r\n<tr>\r\n<td>The Leopard’s Spot Boutique</td>\r\n<td>162</td>\r\n</tr>\r\n<tr>\r\n<td>Davinci Luxe</td>\r\n<td>176</td>\r\n</tr>\r\n<tr>\r\n<td>Crease Liberty</td>\r\n<td>177</td>\r\n</tr>\r\n<tr>\r\n<td>Draper’s &amp; Damon’s</td>\r\n<td>191</td>\r\n</tr>\r\n<tr>\r\n<td>Betteridge Jewelers</td>\r\n<td>102</td>\r\n</tr>\r\n<tr>\r\n<td>Duxiana</td>\r\n<td>103</td>\r\n</tr>\r\n<tr>\r\n<td>Azadi Fine Rugs &amp; Antiques</td>\r\n<td>124</td>\r\n</tr>\r\n<tr>\r\n<td>Sole Sports Running Zone</td>\r\n<td>170</td>\r\n</tr>\r\n<tr>\r\n<td>Wild Birds Unlimited</td>\r\n<td>174</td>\r\n</tr>\r\n<tr>\r\n<td>Home-ology</td>\r\n<td>142</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>DINE</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Jamba Juice</td>\r\n<td>100</td>\r\n</tr>\r\n<tr>\r\n<td>Starbucks</td>\r\n<td>101</td>\r\n</tr>\r\n<tr>\r\n<td>La Petite France Bistro</td>\r\n<td>127</td>\r\n</tr>\r\n<tr>\r\n<td>ShinBay</td>\r\n<td>154</td>\r\n</tr>\r\n<tr>\r\n<td>Terrior Wine Pub</td>\r\n<td>157</td>\r\n</tr>\r\n<tr>\r\n<td>Wildflower Bread Company</td>\r\n<td>171</td>\r\n</tr>\r\n<tr>\r\n<td>21 Cakes</td>\r\n<td>175</td>\r\n</tr>\r\n<tr>\r\n<td>Cove Trattoria</td>\r\n<td>184</td>\r\n</tr>\r\n<tr>\r\n<td>Ruth’s Chris Steak House</td>\r\n<td>290</td>\r\n</tr>\r\n<tr>\r\n<td>Fogo of Scottsdale</td>\r\n<td>147</td>\r\n</tr>\r\n<tr>\r\n<td>Burger 21</td>\r\n<td>172</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\">Directory</h1>\r\n<p style=\"text-align: center;\"><img style=\"width: 550px;\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2012/08/directorymap.jpg\" alt=\"map directory of Scottsdale Seville Shops\" /></p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.scottsdaleseville.com/wp-content/uploads/2012/08/directorymap.jpg\" target=\"_blank\">click on directory to enlarge\r\n</a></p>\r\n\r\n<div style=\"margin: 0 auto; margin-left: 15px;\">\r\n<div style=\"float: left; width: 40%;\"><strong>SHOP</strong>\r\nNove\'\r\nGifted Hands\r\nThe Leopard\'s Spot Boutique\r\nDavinci Luxe\r\nCrease Liberty\r\nDraper\'s &amp; Damon\'s\r\nBetteridge Jewelers\r\nDuxiana\r\nAzadi Fine Rugs &amp; Antiques\r\nSole Sports Running Zone\r\nWild Birds Unlimited\r\nHome-ology</div>\r\n<div style=\"width: 25px; float: left; margin-right: 25px;\"><strong>ste</strong>\r\n120\r\n107\r\n162\r\n176\r\n177\r\n191\r\n102\r\n103\r\n124\r\n170\r\n174\r\n142</div>\r\n<div style=\"float: left; width: 40%;\"><strong>DINE</strong>\r\nJamba Juice\r\nStarbucks\r\nLa Petite France Bistro\r\nShinBay\r\nTerrior Wine Pub\r\nWildflower Bread Company\r\n21 Cakes\r\nCove Trattoria\r\nRuth\'s Chris Steak House\r\nFogo of Scottsdale\r\nBurger 21</div>\r\n<div style=\"width: 20px; float: left;\"><strong>ste</strong>\r\n100\r\n101\r\n127\r\n154\r\n157\r\n171\r\n175\r\n184\r\n290\r\n147\r\n172\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\"> -</span>\r\n<span style=\"color: #ffffff;\"> -</span>\r\n<span style=\"color: #ffffff;\"> -</span></div>\r\n<div style=\"float: left; width: 40%; margin-top: 20px;\"><strong>RELAX</strong>\r\nRumors Hair &amp; Nail Salon\r\n20 Lounge Nail Bar &amp; Boutique\r\nMassage Envy\r\nBeverly Hills Rejuvenation Center</div>\r\n<div style=\"width: 25px; float: left; margin-right: 25px; margin-top: 20px;\"><strong>ste</strong>\r\n105166\r\n158164</div>\r\n<div style=\"float: left; width: 40%; margin-top: 20px;\"><strong>SERVICES</strong>\r\nEncore Cleaners\r\nBeal Bank\r\nMatteson Realty Services\r\nScottrade</div>\r\n<div style=\"width: 25px; float: left; margin-right: 25px; margin-top: 20px;\"><strong>ste</strong>\r\n182\r\n135\r\n195\r\n140</div>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row]", "Directory", "", "inherit", "open", "open", "", "76-revision-v1", "", "", "2014-08-02 07:55:01", "2014-08-02 07:55:01", "", "76", "http://techno-sites.com/scotts/?p=925", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("924", "1", "2014-08-02 07:49:57", "2014-08-02 07:49:57", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" image_width=\"550\" image_height=\"260\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\"][mk_font_icons icon=\"icon-zoom-in\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ed1c24\" align=\"center\" target=\"_self\"][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"0\"]<a href=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" target=\"_blank\">click on directory to enlarge</a>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style2\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>SHOP</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Nove’</td>\r\n<td>120</td>\r\n</tr>\r\n<tr>\r\n<td>Gifted Hands</td>\r\n<td>107</td>\r\n</tr>\r\n<tr>\r\n<td>The Leopard’s Spot Boutique</td>\r\n<td>162</td>\r\n</tr>\r\n<tr>\r\n<td>Davinci Luxe</td>\r\n<td>176</td>\r\n</tr>\r\n<tr>\r\n<td>Crease Liberty</td>\r\n<td>177</td>\r\n</tr>\r\n<tr>\r\n<td>Draper’s &amp; Damon’s</td>\r\n<td>191</td>\r\n</tr>\r\n<tr>\r\n<td>Betteridge Jewelers</td>\r\n<td>102</td>\r\n</tr>\r\n<tr>\r\n<td>Duxiana</td>\r\n<td>103</td>\r\n</tr>\r\n<tr>\r\n<td>Azadi Fine Rugs &amp; Antiques</td>\r\n<td>124</td>\r\n</tr>\r\n<tr>\r\n<td>Sole Sports Running Zone</td>\r\n<td>170</td>\r\n</tr>\r\n<tr>\r\n<td>Wild Birds Unlimited</td>\r\n<td>174</td>\r\n</tr>\r\n<tr>\r\n<td>Home-ology</td>\r\n<td>142</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>SHOP</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Nove’</td>\r\n<td>120</td>\r\n</tr>\r\n<tr>\r\n<td>Gifted Hands</td>\r\n<td>107</td>\r\n</tr>\r\n<tr>\r\n<td>The Leopard’s Spot Boutique</td>\r\n<td>162</td>\r\n</tr>\r\n<tr>\r\n<td>Davinci Luxe</td>\r\n<td>176</td>\r\n</tr>\r\n<tr>\r\n<td>Crease Liberty</td>\r\n<td>177</td>\r\n</tr>\r\n<tr>\r\n<td>Draper’s &amp; Damon’s</td>\r\n<td>191</td>\r\n</tr>\r\n<tr>\r\n<td>Betteridge Jewelers</td>\r\n<td>102</td>\r\n</tr>\r\n<tr>\r\n<td>Duxiana</td>\r\n<td>103</td>\r\n</tr>\r\n<tr>\r\n<td>Azadi Fine Rugs &amp; Antiques</td>\r\n<td>124</td>\r\n</tr>\r\n<tr>\r\n<td>Sole Sports Running Zone</td>\r\n<td>170</td>\r\n</tr>\r\n<tr>\r\n<td>Wild Birds Unlimited</td>\r\n<td>174</td>\r\n</tr>\r\n<tr>\r\n<td>Home-ology</td>\r\n<td>142</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\">Directory</h1>\r\n<p style=\"text-align: center;\"><img style=\"width: 550px;\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2012/08/directorymap.jpg\" alt=\"map directory of Scottsdale Seville Shops\" /></p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.scottsdaleseville.com/wp-content/uploads/2012/08/directorymap.jpg\" target=\"_blank\">click on directory to enlarge\r\n</a></p>\r\n\r\n<div style=\"margin: 0 auto; margin-left: 15px;\">\r\n<div style=\"float: left; width: 40%;\"><strong>SHOP</strong>\r\nNove\'\r\nGifted Hands\r\nThe Leopard\'s Spot Boutique\r\nDavinci Luxe\r\nCrease Liberty\r\nDraper\'s &amp; Damon\'s\r\nBetteridge Jewelers\r\nDuxiana\r\nAzadi Fine Rugs &amp; Antiques\r\nSole Sports Running Zone\r\nWild Birds Unlimited\r\nHome-ology</div>\r\n<div style=\"width: 25px; float: left; margin-right: 25px;\"><strong>ste</strong>\r\n120\r\n107\r\n162\r\n176\r\n177\r\n191\r\n102\r\n103\r\n124\r\n170\r\n174\r\n142</div>\r\n<div style=\"float: left; width: 40%;\"><strong>DINE</strong>\r\nJamba Juice\r\nStarbucks\r\nLa Petite France Bistro\r\nShinBay\r\nTerrior Wine Pub\r\nWildflower Bread Company\r\n21 Cakes\r\nCove Trattoria\r\nRuth\'s Chris Steak House\r\nFogo of Scottsdale\r\nBurger 21</div>\r\n<div style=\"width: 20px; float: left;\"><strong>ste</strong>\r\n100\r\n101\r\n127\r\n154\r\n157\r\n171\r\n175\r\n184\r\n290\r\n147\r\n172\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\"> -</span>\r\n<span style=\"color: #ffffff;\"> -</span>\r\n<span style=\"color: #ffffff;\"> -</span></div>\r\n<div style=\"float: left; width: 40%; margin-top: 20px;\"><strong>RELAX</strong>\r\nRumors Hair &amp; Nail Salon\r\n20 Lounge Nail Bar &amp; Boutique\r\nMassage Envy\r\nBeverly Hills Rejuvenation Center</div>\r\n<div style=\"width: 25px; float: left; margin-right: 25px; margin-top: 20px;\"><strong>ste</strong>\r\n105166\r\n158164</div>\r\n<div style=\"float: left; width: 40%; margin-top: 20px;\"><strong>SERVICES</strong>\r\nEncore Cleaners\r\nBeal Bank\r\nMatteson Realty Services\r\nScottrade</div>\r\n<div style=\"width: 25px; float: left; margin-right: 25px; margin-top: 20px;\"><strong>ste</strong>\r\n182\r\n135\r\n195\r\n140</div>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row]", "Directory", "", "inherit", "open", "open", "", "76-revision-v1", "", "", "2014-08-02 07:49:57", "2014-08-02 07:49:57", "", "76", "http://techno-sites.com/scotts/?p=924", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("928", "1", "2014-08-02 08:03:09", "2014-08-02 08:03:09", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" image_width=\"550\" image_height=\"260\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\"][mk_font_icons icon=\"icon-zoom-in\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ed1c24\" align=\"center\" target=\"_blank\" link=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#221e1f\" size=\"18\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]<a href=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" target=\"_blank\">click on directory to enlarge</a>[/mk_fancy_title][vc_row_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>SHOP</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Nove’</td>\r\n<td>120</td>\r\n</tr>\r\n<tr>\r\n<td>Gifted Hands</td>\r\n<td>107</td>\r\n</tr>\r\n<tr>\r\n<td>The Leopard’s Spot Boutique</td>\r\n<td>162</td>\r\n</tr>\r\n<tr>\r\n<td>Davinci Luxe</td>\r\n<td>176</td>\r\n</tr>\r\n<tr>\r\n<td>Crease Liberty</td>\r\n<td>177</td>\r\n</tr>\r\n<tr>\r\n<td>Draper’s &amp; Damon’s</td>\r\n<td>191</td>\r\n</tr>\r\n<tr>\r\n<td>Betteridge Jewelers</td>\r\n<td>102</td>\r\n</tr>\r\n<tr>\r\n<td>Duxiana</td>\r\n<td>103</td>\r\n</tr>\r\n<tr>\r\n<td>Azadi Fine Rugs &amp; Antiques</td>\r\n<td>124</td>\r\n</tr>\r\n<tr>\r\n<td>Sole Sports Running Zone</td>\r\n<td>170</td>\r\n</tr>\r\n<tr>\r\n<td>Wild Birds Unlimited</td>\r\n<td>174</td>\r\n</tr>\r\n<tr>\r\n<td>Home-ology</td>\r\n<td>142</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>DINE</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Jamba Juice</td>\r\n<td>100</td>\r\n</tr>\r\n<tr>\r\n<td>Starbucks</td>\r\n<td>101</td>\r\n</tr>\r\n<tr>\r\n<td>La Petite France Bistro</td>\r\n<td>127</td>\r\n</tr>\r\n<tr>\r\n<td>ShinBay</td>\r\n<td>154</td>\r\n</tr>\r\n<tr>\r\n<td>Terrior Wine Pub</td>\r\n<td>157</td>\r\n</tr>\r\n<tr>\r\n<td>Wildflower Bread Company</td>\r\n<td>171</td>\r\n</tr>\r\n<tr>\r\n<td>21 Cakes</td>\r\n<td>175</td>\r\n</tr>\r\n<tr>\r\n<td>Cove Trattoria</td>\r\n<td>184</td>\r\n</tr>\r\n<tr>\r\n<td>Ruth’s Chris Steak House</td>\r\n<td>290</td>\r\n</tr>\r\n<tr>\r\n<td>Fogo of Scottsdale</td>\r\n<td>147</td>\r\n</tr>\r\n<tr>\r\n<td>Burger 21</td>\r\n<td>172</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>RELAX</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Rumors Hair &amp; Nail Salon</td>\r\n<td>105</td>\r\n</tr>\r\n<tr>\r\n<td>20 Lounge Nail Bar &amp; Boutique</td>\r\n<td>158</td>\r\n</tr>\r\n<tr>\r\n<td>Massage Envy</td>\r\n<td>166</td>\r\n</tr>\r\n<tr>\r\n<td>Beverly Hills Rejuvenation Center</td>\r\n<td>164</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>SERVICES</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Encore Cleaners</td>\r\n<td>182</td>\r\n</tr>\r\n<tr>\r\n<td>Beal Bank</td>\r\n<td>135</td>\r\n</tr>\r\n<tr>\r\n<td>Matteson Realty Services</td>\r\n<td>195</td>\r\n</tr>\r\n<tr>\r\n<td>Scottrade</td>\r\n<td>140</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "Directory", "", "inherit", "open", "open", "", "76-revision-v1", "", "", "2014-08-02 08:03:09", "2014-08-02 08:03:09", "", "76", "http://techno-sites.com/scotts/?p=928", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("927", "1", "2014-08-02 08:02:23", "2014-08-02 08:02:23", "[vc_row][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#221e1f\" size=\"16\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]<a href=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" target=\"_blank\">click on directory to enlarge</a>[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" image_width=\"550\" image_height=\"260\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\"][mk_font_icons icon=\"icon-zoom-in\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"true\" circle_color=\"#ed1c24\" align=\"center\" target=\"_blank\" link=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\"][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"18\"]<a href=\"http://techno-sites.com/scotts/wp-content/uploads/2012/08/directorymap.jpg\" target=\"_blank\">click on directory to enlarge</a>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>SHOP</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Nove’</td>\r\n<td>120</td>\r\n</tr>\r\n<tr>\r\n<td>Gifted Hands</td>\r\n<td>107</td>\r\n</tr>\r\n<tr>\r\n<td>The Leopard’s Spot Boutique</td>\r\n<td>162</td>\r\n</tr>\r\n<tr>\r\n<td>Davinci Luxe</td>\r\n<td>176</td>\r\n</tr>\r\n<tr>\r\n<td>Crease Liberty</td>\r\n<td>177</td>\r\n</tr>\r\n<tr>\r\n<td>Draper’s &amp; Damon’s</td>\r\n<td>191</td>\r\n</tr>\r\n<tr>\r\n<td>Betteridge Jewelers</td>\r\n<td>102</td>\r\n</tr>\r\n<tr>\r\n<td>Duxiana</td>\r\n<td>103</td>\r\n</tr>\r\n<tr>\r\n<td>Azadi Fine Rugs &amp; Antiques</td>\r\n<td>124</td>\r\n</tr>\r\n<tr>\r\n<td>Sole Sports Running Zone</td>\r\n<td>170</td>\r\n</tr>\r\n<tr>\r\n<td>Wild Birds Unlimited</td>\r\n<td>174</td>\r\n</tr>\r\n<tr>\r\n<td>Home-ology</td>\r\n<td>142</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>DINE</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Jamba Juice</td>\r\n<td>100</td>\r\n</tr>\r\n<tr>\r\n<td>Starbucks</td>\r\n<td>101</td>\r\n</tr>\r\n<tr>\r\n<td>La Petite France Bistro</td>\r\n<td>127</td>\r\n</tr>\r\n<tr>\r\n<td>ShinBay</td>\r\n<td>154</td>\r\n</tr>\r\n<tr>\r\n<td>Terrior Wine Pub</td>\r\n<td>157</td>\r\n</tr>\r\n<tr>\r\n<td>Wildflower Bread Company</td>\r\n<td>171</td>\r\n</tr>\r\n<tr>\r\n<td>21 Cakes</td>\r\n<td>175</td>\r\n</tr>\r\n<tr>\r\n<td>Cove Trattoria</td>\r\n<td>184</td>\r\n</tr>\r\n<tr>\r\n<td>Ruth’s Chris Steak House</td>\r\n<td>290</td>\r\n</tr>\r\n<tr>\r\n<td>Fogo of Scottsdale</td>\r\n<td>147</td>\r\n</tr>\r\n<tr>\r\n<td>Burger 21</td>\r\n<td>172</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>RELAX</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Rumors Hair &amp; Nail Salon</td>\r\n<td>105</td>\r\n</tr>\r\n<tr>\r\n<td>20 Lounge Nail Bar &amp; Boutique</td>\r\n<td>158</td>\r\n</tr>\r\n<tr>\r\n<td>Massage Envy</td>\r\n<td>166</td>\r\n</tr>\r\n<tr>\r\n<td>Beverly Hills Rejuvenation Center</td>\r\n<td>164</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][vc_column_inner width=\"1/2\"][mk_table style=\"style1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"300\"><strong>SERVICES</strong></td>\r\n<td><strong>ste</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Encore Cleaners</td>\r\n<td>182</td>\r\n</tr>\r\n<tr>\r\n<td>Beal Bank</td>\r\n<td>135</td>\r\n</tr>\r\n<tr>\r\n<td>Matteson Realty Services</td>\r\n<td>195</td>\r\n</tr>\r\n<tr>\r\n<td>Scottrade</td>\r\n<td>140</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/mk_table][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "Directory", "", "inherit", "open", "open", "", "76-revision-v1", "", "", "2014-08-02 08:02:23", "2014-08-02 08:02:23", "", "76", "http://techno-sites.com/scotts/?p=927", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("929", "1", "2014-08-05 12:31:55", "2014-08-05 12:31:55", "[vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d3325.539795248427!2d-111.92605953332553!3d33.53934888140348!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!1i0!3e6!4m0!4m5!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!3m2!1d33.5393489!2d-111.9239084!5e0!3m2!1sen!2sus!4v1407200074427\" width=\"1200\" height=\"300\" frameborder=\"0\"></iframe>[/vc_column_text][mk_padding_divider size=\"30\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"setpadding\"][vc_column width=\"1/3\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#b90e00\" size=\"22\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]Our Office[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]2125 S Priest , Suite 302\n\nTempe, AZ 85282\n\nEmail : info@SuntracSolar.com\n\nOffice : 1+ (480) 999-6091\n\nFax : 1+ (480) 999-6064[/vc_column_text][mk_font_icons icon=\"moon-twitter-3\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-facebook-4\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-google-plus-4\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"icon-instagram\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-stumbleupon-2\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-pinterest\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][/vc_column][vc_column width=\"2/3\"][mk_contact_form style=\"modern\" skin=\"dark\" phone=\"false\"][/vc_column][/vc_row]", "Directions", "", "inherit", "open", "open", "", "328-autosave-v1", "", "", "2014-08-05 12:31:55", "2014-08-05 12:31:55", "", "328", "http://techno-sites.com/scotts/?p=929", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("930", "1", "2014-08-02 08:37:03", "2014-08-02 08:37:03", "[vc_row][vc_column width=\"1/3\"][mk_contact_info phone=\"(480) 998-4774\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\"][/vc_column][vc_column width=\"2/3\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d3325.539794532936!2d-111.92390840000002!3d33.53934889999999!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!5e0!3m2!1sen!2s!4v1406968588075\" width=\"600\" height=\"450\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\">Directions</h1>\r\n<p style=\"text-align: center;\">7001 N. Scottsdale Rd.\r\nScottsdale, AZ 85253\r\n(480) 998-4774</p>\r\n<p style=\"text-align: center;\"><a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">Get Driving Directions</a><a href=\"http://maps.google.com/maps/place?ftid=0x872b0b3f1e35255b:0x42c369349c9fb116&amp;q=type:transit_station:%22Scottsdale+Rd+%26+Indian+Bend+Rd%22&amp;gl=us&amp;ved=0CDsQgQVIAA&amp;sa=X&amp;ei=wBXATrG_J5yuoQSUo_DEBA\">\r\n</a><a href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\"><img class=\"size-full wp-image-342\" title=\"data=Ay5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7Ag,rgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/dataAy5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7AgrgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg.gif\" alt=\"\" width=\"424\" height=\"306\" /></a>\r\n<a href=\"http://maps.google.com/maps/place?ftid=0x872b0b3f1e35255b:0x42c369349c9fb116&amp;q=type:transit_station:%22Scottsdale+Rd+%26+Indian+Bend+Rd%22&amp;gl=us&amp;ved=0CDsQgQVIAA&amp;sa=X&amp;ei=wBXATrG_J5yuoQSUo_DEBA\">Scottsdale Rd &amp; Indian Bend Rd</a><a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">\r\n</a>[/vc_column_text][/vc_column][/vc_row]</p>", "Directions", "", "inherit", "open", "open", "", "328-revision-v1", "", "", "2014-08-02 08:37:03", "2014-08-02 08:37:03", "", "328", "http://techno-sites.com/scotts/?p=930", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("931", "1", "2014-08-02 08:38:22", "2014-08-02 08:38:22", "[vc_row][vc_column width=\"1/3\"][mk_contact_info phone=\"(480) 998-4774\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\"][/vc_column][vc_column width=\"2/3\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d3325.539794532936!2d-111.92390840000002!3d33.53934889999999!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!5e0!3m2!1sen!2s!4v1406968588075\" width=\"400\" height=\"450\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\">Directions</h1>\r\n<p style=\"text-align: center;\">7001 N. Scottsdale Rd.\r\nScottsdale, AZ 85253\r\n(480) 998-4774</p>\r\n<p style=\"text-align: center;\"><a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">Get Driving Directions</a><a href=\"http://maps.google.com/maps/place?ftid=0x872b0b3f1e35255b:0x42c369349c9fb116&amp;q=type:transit_station:%22Scottsdale+Rd+%26+Indian+Bend+Rd%22&amp;gl=us&amp;ved=0CDsQgQVIAA&amp;sa=X&amp;ei=wBXATrG_J5yuoQSUo_DEBA\">\r\n</a><a href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\"><img class=\"size-full wp-image-342\" title=\"data=Ay5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7Ag,rgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/dataAy5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7AgrgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg.gif\" alt=\"\" width=\"424\" height=\"306\" /></a>\r\n<a href=\"http://maps.google.com/maps/place?ftid=0x872b0b3f1e35255b:0x42c369349c9fb116&amp;q=type:transit_station:%22Scottsdale+Rd+%26+Indian+Bend+Rd%22&amp;gl=us&amp;ved=0CDsQgQVIAA&amp;sa=X&amp;ei=wBXATrG_J5yuoQSUo_DEBA\">Scottsdale Rd &amp; Indian Bend Rd</a><a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">\r\n</a>[/vc_column_text][/vc_column][/vc_row]</p>", "Directions", "", "inherit", "open", "open", "", "328-revision-v1", "", "", "2014-08-02 08:38:22", "2014-08-02 08:38:22", "", "328", "http://techno-sites.com/scotts/?p=931", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1086", "1", "2014-08-05 11:53:54", "2014-08-05 11:53:54", "[vc_row][vc_column width=\"1/3\"][mk_contact_info phone=\"(480) 998-4774\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">Get Driving Directions</a>[/vc_column_text][/vc_column][vc_column width=\"2/3\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d3325.539794532936!2d-111.92390840000002!3d33.53934889999999!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!5e0!3m2!1sen!2s!4v1406968588075\" width=\"400\" height=\"450\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Directions", "", "inherit", "open", "open", "", "328-revision-v1", "", "", "2014-08-05 11:53:54", "2014-08-05 11:53:54", "", "328", "http://techno-sites.com/scotts/?p=1086", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("932", "1", "2014-08-02 08:41:12", "2014-08-02 08:41:12", "[vc_row][vc_column width=\"1/3\"][mk_contact_info phone=\"(480) 998-4774\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">\r\n</a>[/vc_column_text][/vc_column][vc_column width=\"2/3\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d3325.539794532936!2d-111.92390840000002!3d33.53934889999999!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!5e0!3m2!1sen!2s!4v1406968588075\" width=\"400\" height=\"450\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\">Directions</h1>\r\n<p style=\"text-align: center;\">7001 N. Scottsdale Rd.\r\nScottsdale, AZ 85253\r\n(480) 998-4774</p>\r\n<p style=\"text-align: center;\"><a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">Get Driving Directions</a><a href=\"http://maps.google.com/maps/place?ftid=0x872b0b3f1e35255b:0x42c369349c9fb116&amp;q=type:transit_station:%22Scottsdale+Rd+%26+Indian+Bend+Rd%22&amp;gl=us&amp;ved=0CDsQgQVIAA&amp;sa=X&amp;ei=wBXATrG_J5yuoQSUo_DEBA\">\r\n</a><a href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\"><img class=\"size-full wp-image-342\" title=\"data=Ay5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7Ag,rgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/dataAy5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7AgrgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg.gif\" alt=\"\" width=\"424\" height=\"306\" /></a>\r\n<a href=\"http://maps.google.com/maps/place?ftid=0x872b0b3f1e35255b:0x42c369349c9fb116&amp;q=type:transit_station:%22Scottsdale+Rd+%26+Indian+Bend+Rd%22&amp;gl=us&amp;ved=0CDsQgQVIAA&amp;sa=X&amp;ei=wBXATrG_J5yuoQSUo_DEBA\">Scottsdale Rd &amp; Indian Bend Rd</a><a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">\r\n</a>[/vc_column_text][/vc_column][/vc_row]</p>", "Directions", "", "inherit", "open", "open", "", "328-revision-v1", "", "", "2014-08-02 08:41:12", "2014-08-02 08:41:12", "", "328", "http://techno-sites.com/scotts/?p=932", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("934", "1", "2014-08-02 08:48:37", "2014-08-02 08:48:37", "[vc_row][vc_column width=\"1/3\"][mk_contact_info phone=\"(480) 998-4774\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">Get Driving Directions</a>[/vc_column_text][/vc_column][vc_column width=\"2/3\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d3325.539794532936!2d-111.92390840000002!3d33.53934889999999!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!5e0!3m2!1sen!2s!4v1406968588075\" width=\"400\" height=\"450\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row]", "Directions", "", "inherit", "open", "open", "", "328-revision-v1", "", "", "2014-08-02 08:48:37", "2014-08-02 08:48:37", "", "328", "http://techno-sites.com/scotts/?p=934", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("933", "1", "2014-08-02 08:46:10", "2014-08-02 08:46:10", "[vc_row][vc_column width=\"1/3\"][mk_contact_info phone=\"(480) 998-4774\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">Get Driving Directions</a>[/vc_column_text][/vc_column][vc_column width=\"2/3\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d3325.539794532936!2d-111.92390840000002!3d33.53934889999999!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!5e0!3m2!1sen!2s!4v1406968588075\" width=\"400\" height=\"450\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\">Directions</h1>\r\n<p style=\"text-align: center;\">7001 N. Scottsdale Rd.\r\nScottsdale, AZ 85253\r\n(480) 998-4774</p>\r\n<p style=\"text-align: center;\"><a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">Get Driving Directions</a><a href=\"http://maps.google.com/maps/place?ftid=0x872b0b3f1e35255b:0x42c369349c9fb116&amp;q=type:transit_station:%22Scottsdale+Rd+%26+Indian+Bend+Rd%22&amp;gl=us&amp;ved=0CDsQgQVIAA&amp;sa=X&amp;ei=wBXATrG_J5yuoQSUo_DEBA\">\r\n</a><a href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\"><img class=\"size-full wp-image-342\" title=\"data=Ay5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7Ag,rgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/dataAy5GWBeob_WIPLDYoIWcfVXxvZu9XwJ55OX7AgrgOqplvyFvARpWhaUqFsye59JdcC1owxgcwsydnatD_q_K4GxhEuf2itFO33b-EE5TS4ygRelQCXWU6JS2_2TxEr9EO83sE4f_D5uf86N5aePR4F7ZMTNAyz3eIJtPxrUjhfHg.gif\" alt=\"\" width=\"424\" height=\"306\" /></a>\r\n<a href=\"http://maps.google.com/maps/place?ftid=0x872b0b3f1e35255b:0x42c369349c9fb116&amp;q=type:transit_station:%22Scottsdale+Rd+%26+Indian+Bend+Rd%22&amp;gl=us&amp;ved=0CDsQgQVIAA&amp;sa=X&amp;ei=wBXATrG_J5yuoQSUo_DEBA\">Scottsdale Rd &amp; Indian Bend Rd</a><a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">\r\n</a>[/vc_column_text][/vc_column][/vc_row]</p>", "Directions", "", "inherit", "open", "open", "", "328-revision-v1", "", "", "2014-08-02 08:46:10", "2014-08-02 08:46:10", "", "328", "http://techno-sites.com/scotts/?p=933", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("936", "1", "2014-08-02 08:55:41", "2014-08-02 08:55:41", "", "cnniReport", "", "inherit", "open", "open", "", "cnnireport", "", "", "2014-08-02 08:55:41", "2014-08-02 08:55:41", "", "399", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/cnniReport.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("937", "1", "2014-08-02 08:56:56", "2014-08-02 08:56:56", "", "cnniReport", "", "inherit", "open", "open", "", "cnnireport-2", "", "", "2014-08-02 08:56:56", "2014-08-02 08:56:56", "", "399", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/cnniReport1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("938", "1", "2014-08-02 08:57:15", "2014-08-02 08:57:15", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cnniReport1.png\" image_width=\"205\" image_height=\"46\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<div style=\"background-image: url(\'http://www.scottsdaleseville.com/wp-content/uploads/2011/11/Sbg.png\'); background-repeat: no-repeat; height: 600px;\">\r\n<h1 style=\"text-align: center;\">Press</h1>\r\n<div id=\"ir_sitelogo\"><a href=\"http://ireport.cnn.com/\"><img src=\"http://ireport.cnn.com/themes/custom/resources/redesign/cnniReport.jpg\" alt=\"\" /></a></div>\r\n<h2><a href=\"http://ireport.cnn.com/docs/DOC-907608\" target=\"_blank\">In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour - 21 Cakes</a></h2>\r\n<h6 style=\"text-align: center;\"><a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\" target=\"_blank\"><img class=\"aligncenter size-full wp-image-658\" title=\"crystalwhitecakejpg-2349427_p9-1\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-1.jpg\" alt=\"21 cakes cnn top places to eat\" width=\"759\" height=\"504\" /></a>By <a title=\"Click to view jennygirl31\'s profile\" href=\"http://ireport.cnn.com/people/jennygirl31\">jennygirl31</a> |  Posted January 9, 2013  |  Scottsdale, Arizona</h6>\r\n</div>\r\n<div>\r\n<div id=\"story-desc\">\r\n<div>\r\n\r\n&nbsp;\r\n\r\nA bakery that adheres to an overriding philosophy: if it’s edible, it must be made completely from scratch. Everyday.\r\n\r\n21 Cakes specializes in one-of-a-kind, made-fresh-daily cupcakes, cakes, Parisian macarons, and on-site fresh roasted coffee. Conveniently located in The Scottsdale Seville shopping center in Scottsdale, Ariz., 21 Cakes’ elegant desserts are perfect for special occasions, a mid-week luncheon or a little indulgence, anytime.\r\n\r\nTheir newest creation: The Skini Cupcake - It is vanilla cake with chocolate filling and marshmallow cream frosting.  It is about half the fat and calories of\r\n\r\na regular cupcake.  It will be offered in additonal flavors as well. And FYI...it does not conatin any artificial sweeteners!  Perfect in time for your new years resolution of eating healthier!  Have your cake and eat it too!\r\n\r\nMore about 21 Cakes:\r\n\r\nInitially starting as a wholesale business, owner and baker Linda Schneider wanted to share her love of baking with a wider audience.  21 Cakes opened in August 2011 offering fresh desserts and pastries made daily. A perfectionist in her kitchen, Linda insists on using the highest quality ingredients from the United States and Europe, ensuring delectable, one-of-a-kind desserts, unmatched in the Scottsdale area.\r\n\r\nTo create their daily magic, Linda relies on family recipes that have been passed down from her grandmother; coupled with her professional training and her pastry chef’s professional training at Le Cordon Bleu in Scottsdale. Together, beautiful and delicious desserts are created that are a pleasure for the eyes and a sensation for the taste buds.\r\n\r\nLinda’s specialty is her traditional Parisian macaron. Not to be confused with the coconut covered cookies by a similar name, Linda’s macarons are made from her time-tested traditional French recipe that took her over a year and hundreds of\r\n\r\nmacarons to perfect.  They have been compared to the true Parisian macarons of France. The Parisian Macarons from 21 Cakes is a process that takes days to create, with the finished product only available from Thursday–Sunday, (if they last that long).\r\n\r\nIn addition to the retail store offerings, 21 Cakes creates custom occasion desserts, perfect for any wedding, anniversary, birthday, or special event. Whether a simple or elaborate design, only the freshest and finest ingredients go into each masterpiece. Customers are ensured that the pastry made for their event will not only be the most beautiful work of art, but also the most delicious anyone has tasted.\r\n\r\n21 Cakes was named after the 21 Club in New York City, during the 1920’s Art Deco era, when life seemed to be more decadent and glamorous, and people appreciated the finer things. In today’s fast paced world, finding and experiencing glamor and decadence is harder to do. Luckily, people can add a little bit of luxury in their lives when they come to 21 Cakes and experience the delicious and beautiful works of art that are created there daily\r\n\r\n</div>\r\n</div>\r\n<img src=\"http://i2.cdn.turner.com/cnn/2012/images/11/26/ireport_travelleisure.gray.png\" alt=\"\" border=\"0\" />\r\n\r\n</div>\r\n<h6>This iReport is part of an assignment that we created with Travel + Leisure:  <a href=\"http://ireport.cnn.com/topics/862779\"> 100 places to eat like a local</a></h6>\r\n[/vc_column_text][/vc_column][/vc_row]", "Press", "", "inherit", "open", "open", "", "399-revision-v1", "", "", "2014-08-02 08:57:15", "2014-08-02 08:57:15", "", "399", "http://techno-sites.com/scotts/?p=938", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("939", "1", "2014-08-02 08:58:07", "2014-08-02 08:58:07", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cnniReport1.png\" image_width=\"205\" image_height=\"46\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"18\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour – 21 Cakes[/mk_title_box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<div style=\"background-image: url(\'http://www.scottsdaleseville.com/wp-content/uploads/2011/11/Sbg.png\'); background-repeat: no-repeat; height: 600px;\">\r\n<h1 style=\"text-align: center;\">Press</h1>\r\n<div id=\"ir_sitelogo\"><a href=\"http://ireport.cnn.com/\"><img src=\"http://ireport.cnn.com/themes/custom/resources/redesign/cnniReport.jpg\" alt=\"\" /></a></div>\r\n<h2><a href=\"http://ireport.cnn.com/docs/DOC-907608\" target=\"_blank\">In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour - 21 Cakes</a></h2>\r\n<h6 style=\"text-align: center;\"><a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\" target=\"_blank\"><img class=\"aligncenter size-full wp-image-658\" title=\"crystalwhitecakejpg-2349427_p9-1\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-1.jpg\" alt=\"21 cakes cnn top places to eat\" width=\"759\" height=\"504\" /></a>By <a title=\"Click to view jennygirl31\'s profile\" href=\"http://ireport.cnn.com/people/jennygirl31\">jennygirl31</a> |  Posted January 9, 2013  |  Scottsdale, Arizona</h6>\r\n</div>\r\n<div>\r\n<div id=\"story-desc\">\r\n<div>\r\n\r\n&nbsp;\r\n\r\nA bakery that adheres to an overriding philosophy: if it’s edible, it must be made completely from scratch. Everyday.\r\n\r\n21 Cakes specializes in one-of-a-kind, made-fresh-daily cupcakes, cakes, Parisian macarons, and on-site fresh roasted coffee. Conveniently located in The Scottsdale Seville shopping center in Scottsdale, Ariz., 21 Cakes’ elegant desserts are perfect for special occasions, a mid-week luncheon or a little indulgence, anytime.\r\n\r\nTheir newest creation: The Skini Cupcake - It is vanilla cake with chocolate filling and marshmallow cream frosting.  It is about half the fat and calories of\r\n\r\na regular cupcake.  It will be offered in additonal flavors as well. And FYI...it does not conatin any artificial sweeteners!  Perfect in time for your new years resolution of eating healthier!  Have your cake and eat it too!\r\n\r\nMore about 21 Cakes:\r\n\r\nInitially starting as a wholesale business, owner and baker Linda Schneider wanted to share her love of baking with a wider audience.  21 Cakes opened in August 2011 offering fresh desserts and pastries made daily. A perfectionist in her kitchen, Linda insists on using the highest quality ingredients from the United States and Europe, ensuring delectable, one-of-a-kind desserts, unmatched in the Scottsdale area.\r\n\r\nTo create their daily magic, Linda relies on family recipes that have been passed down from her grandmother; coupled with her professional training and her pastry chef’s professional training at Le Cordon Bleu in Scottsdale. Together, beautiful and delicious desserts are created that are a pleasure for the eyes and a sensation for the taste buds.\r\n\r\nLinda’s specialty is her traditional Parisian macaron. Not to be confused with the coconut covered cookies by a similar name, Linda’s macarons are made from her time-tested traditional French recipe that took her over a year and hundreds of\r\n\r\nmacarons to perfect.  They have been compared to the true Parisian macarons of France. The Parisian Macarons from 21 Cakes is a process that takes days to create, with the finished product only available from Thursday–Sunday, (if they last that long).\r\n\r\nIn addition to the retail store offerings, 21 Cakes creates custom occasion desserts, perfect for any wedding, anniversary, birthday, or special event. Whether a simple or elaborate design, only the freshest and finest ingredients go into each masterpiece. Customers are ensured that the pastry made for their event will not only be the most beautiful work of art, but also the most delicious anyone has tasted.\r\n\r\n21 Cakes was named after the 21 Club in New York City, during the 1920’s Art Deco era, when life seemed to be more decadent and glamorous, and people appreciated the finer things. In today’s fast paced world, finding and experiencing glamor and decadence is harder to do. Luckily, people can add a little bit of luxury in their lives when they come to 21 Cakes and experience the delicious and beautiful works of art that are created there daily\r\n\r\n</div>\r\n</div>\r\n<img src=\"http://i2.cdn.turner.com/cnn/2012/images/11/26/ireport_travelleisure.gray.png\" alt=\"\" border=\"0\" />\r\n\r\n</div>\r\n<h6>This iReport is part of an assignment that we created with Travel + Leisure:  <a href=\"http://ireport.cnn.com/topics/862779\"> 100 places to eat like a local</a></h6>\r\n[/vc_column_text][/vc_column][/vc_row]", "Press", "", "inherit", "open", "open", "", "399-revision-v1", "", "", "2014-08-02 08:58:07", "2014-08-02 08:58:07", "", "399", "http://techno-sites.com/scotts/?p=939", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("940", "1", "2014-08-02 09:00:09", "2014-08-02 09:00:09", "", "crystalwhitecakejpg-2349427_p9-1", "", "inherit", "open", "open", "", "crystalwhitecakejpg-2349427_p9-1-2", "", "", "2014-08-02 09:00:09", "2014-08-02 09:00:09", "", "399", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("941", "1", "2014-08-02 09:01:25", "2014-08-02 09:01:25", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cnniReport1.png\" image_width=\"205\" image_height=\"46\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"22\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour – 21 Cakes[/mk_title_box][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-11.jpg\" image_width=\"759\" image_height=\"504\" crop=\"true\" lightbox=\"false\" frame_style=\"rounded\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][/vc_column][vc_column width=\"1/2\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]A bakery that adheres to an overriding philosophy: if it’s edible, it must be made completely from scratch. Everyday.\r\n\r\n21 Cakes specializes in one-of-a-kind, made-fresh-daily cupcakes, cakes, Parisian macarons, and on-site fresh roasted coffee. Conveniently located in The Scottsdale Seville shopping center in Scottsdale, Ariz., 21 Cakes’ elegant desserts are perfect for special occasions, a mid-week luncheon or a little indulgence, anytime.\r\n\r\nTheir newest creation: The Skini Cupcake – It is vanilla cake with chocolate filling and marshmallow cream frosting. It is about half the fat and calories of\r\n\r\na regular cupcake. It will be offered in additonal flavors as well. And FYI…it does not conatin any artificial sweeteners! Perfect in time for your new years resolution of eating healthier! Have your cake and eat it too![/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<div style=\"background-image: url(\'http://www.scottsdaleseville.com/wp-content/uploads/2011/11/Sbg.png\'); background-repeat: no-repeat; height: 600px;\">\r\n<h1 style=\"text-align: center;\">Press</h1>\r\n<div id=\"ir_sitelogo\"><a href=\"http://ireport.cnn.com/\"><img src=\"http://ireport.cnn.com/themes/custom/resources/redesign/cnniReport.jpg\" alt=\"\" /></a></div>\r\n<h2><a href=\"http://ireport.cnn.com/docs/DOC-907608\" target=\"_blank\">In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour - 21 Cakes</a></h2>\r\n<h6 style=\"text-align: center;\"><a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\" target=\"_blank\"><img class=\"aligncenter size-full wp-image-658\" title=\"crystalwhitecakejpg-2349427_p9-1\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-1.jpg\" alt=\"21 cakes cnn top places to eat\" width=\"759\" height=\"504\" /></a>By <a title=\"Click to view jennygirl31\'s profile\" href=\"http://ireport.cnn.com/people/jennygirl31\">jennygirl31</a> |  Posted January 9, 2013  |  Scottsdale, Arizona</h6>\r\n</div>\r\n<div>\r\n<div id=\"story-desc\">\r\n<div>\r\n\r\n&nbsp;\r\n\r\nA bakery that adheres to an overriding philosophy: if it’s edible, it must be made completely from scratch. Everyday.\r\n\r\n21 Cakes specializes in one-of-a-kind, made-fresh-daily cupcakes, cakes, Parisian macarons, and on-site fresh roasted coffee. Conveniently located in The Scottsdale Seville shopping center in Scottsdale, Ariz., 21 Cakes’ elegant desserts are perfect for special occasions, a mid-week luncheon or a little indulgence, anytime.\r\n\r\nTheir newest creation: The Skini Cupcake - It is vanilla cake with chocolate filling and marshmallow cream frosting.  It is about half the fat and calories of\r\n\r\na regular cupcake.  It will be offered in additonal flavors as well. And FYI...it does not conatin any artificial sweeteners!  Perfect in time for your new years resolution of eating healthier!  Have your cake and eat it too!\r\n\r\nMore about 21 Cakes:\r\n\r\nInitially starting as a wholesale business, owner and baker Linda Schneider wanted to share her love of baking with a wider audience.  21 Cakes opened in August 2011 offering fresh desserts and pastries made daily. A perfectionist in her kitchen, Linda insists on using the highest quality ingredients from the United States and Europe, ensuring delectable, one-of-a-kind desserts, unmatched in the Scottsdale area.\r\n\r\nTo create their daily magic, Linda relies on family recipes that have been passed down from her grandmother; coupled with her professional training and her pastry chef’s professional training at Le Cordon Bleu in Scottsdale. Together, beautiful and delicious desserts are created that are a pleasure for the eyes and a sensation for the taste buds.\r\n\r\nLinda’s specialty is her traditional Parisian macaron. Not to be confused with the coconut covered cookies by a similar name, Linda’s macarons are made from her time-tested traditional French recipe that took her over a year and hundreds of\r\n\r\nmacarons to perfect.  They have been compared to the true Parisian macarons of France. The Parisian Macarons from 21 Cakes is a process that takes days to create, with the finished product only available from Thursday–Sunday, (if they last that long).\r\n\r\nIn addition to the retail store offerings, 21 Cakes creates custom occasion desserts, perfect for any wedding, anniversary, birthday, or special event. Whether a simple or elaborate design, only the freshest and finest ingredients go into each masterpiece. Customers are ensured that the pastry made for their event will not only be the most beautiful work of art, but also the most delicious anyone has tasted.\r\n\r\n21 Cakes was named after the 21 Club in New York City, during the 1920’s Art Deco era, when life seemed to be more decadent and glamorous, and people appreciated the finer things. In today’s fast paced world, finding and experiencing glamor and decadence is harder to do. Luckily, people can add a little bit of luxury in their lives when they come to 21 Cakes and experience the delicious and beautiful works of art that are created there daily\r\n\r\n</div>\r\n</div>\r\n<img src=\"http://i2.cdn.turner.com/cnn/2012/images/11/26/ireport_travelleisure.gray.png\" alt=\"\" border=\"0\" />\r\n\r\n</div>\r\n<h6>This iReport is part of an assignment that we created with Travel + Leisure:  <a href=\"http://ireport.cnn.com/topics/862779\"> 100 places to eat like a local</a></h6>\r\n[/vc_column_text][/vc_column][/vc_row]", "Press", "", "inherit", "open", "open", "", "399-revision-v1", "", "", "2014-08-02 09:01:25", "2014-08-02 09:01:25", "", "399", "http://techno-sites.com/scotts/?p=941", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("947", "1", "2014-08-04 06:41:11", "2014-08-04 06:41:11", "[vc_row][vc_column width=\"1/1\"][mk_blog style=\"modern\" column=\"3\" grid_image_height=\"350\" count=\"10\" offset=\"0\" disable_meta=\"true\" disable_lightbox=\"true\" disable_comments_share=\"true\" full_content=\"false\" pagination=\"true\" pagination_style=\"1\" order=\"DESC\" orderby=\"date\"][/vc_column][/vc_row]", "Events", "", "inherit", "open", "open", "", "396-autosave-v1", "", "", "2014-08-04 06:41:11", "2014-08-04 06:41:11", "", "396", "http://techno-sites.com/scotts/?p=947", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("964", "1", "2014-08-04 06:41:40", "2014-08-04 06:41:40", "[vc_row][vc_column width=\"1/1\"][mk_blog style=\"modern\" column=\"3\" grid_image_height=\"725\" count=\"-1\" offset=\"0\" cat=\"9\" disable_meta=\"true\" disable_lightbox=\"true\" disable_comments_share=\"true\" full_content=\"false\" pagination=\"true\" pagination_style=\"2\" order=\"DESC\" orderby=\"date\"][/vc_column][/vc_row]", "Events", "", "inherit", "open", "open", "", "396-revision-v1", "", "", "2014-08-04 06:41:40", "2014-08-04 06:41:40", "", "396", "http://techno-sites.com/scotts/?p=964", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("948", "1", "2014-08-02 09:24:56", "2014-08-02 09:24:56", "<p>Your Name (required)<br />\n    [text* your-name] </p>\n\n<p>Your Email (required)<br />\n    [email* your-email] </p>\n\n<p>Subject<br />\n    [text your-subject] </p>\n\n<p>Your Message<br />\n    [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>\n[your-subject]\n[your-name] <[your-email]>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on techno-sites.com (http://techno-sites.com/scotts)\ntechnosites@live.com\n\n\n0\n0\n\n[your-subject]\n[your-name] <[your-email]>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on techno-sites.com (http://techno-sites.com/scotts)\n[your-email]\n\n\n0\n0\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill the required field.", "Contact form 1", "", "publish", "open", "open", "", "contact-form-1", "", "", "2014-08-02 09:24:56", "2014-08-02 09:24:56", "", "0", "http://techno-sites.com/scotts/?post_type=wpcf7_contact_form&p=948", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("949", "1", "2014-08-05 07:43:55", "2014-08-05 07:43:55", "[vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d3325.539795248427!2d-111.92605953332553!3d33.53934888140348!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!1i0!3e6!4m0!4m5!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!3m2!1d33.5393489!2d-111.9239084!5e0!3m2!1sen!2sus!4v1407200074427\" width=\"1200\" height=\"300\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][mk_contact_form style=\"modern\" skin=\"dark\" email=\"lgrace@mattesonrealty.com\" phone=\"false\"][/vc_column][vc_column width=\"1/2\"][mk_contact_info phone=\"480 998 4774\" email=\"lgrace@mattesonrealty.com\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\" person=\"Lisa Grace\"][/vc_column][/vc_row]", "Contact Us", "", "inherit", "open", "open", "", "330-autosave-v1", "", "", "2014-08-05 07:43:55", "2014-08-05 07:43:55", "", "330", "http://techno-sites.com/scotts/?p=949", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1058", "1", "2014-08-05 07:42:04", "2014-08-05 07:42:04", "[vc_row][vc_column width=\"1/2\"][mk_contact_form style=\"modern\" skin=\"dark\" email=\"lgrace@mattesonrealty.com\" phone=\"false\"][/vc_column][vc_column width=\"1/2\"][mk_contact_info phone=\"480 998 4774\" email=\"lgrace@mattesonrealty.com\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\" person=\"Lisa Grace\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d3325.539795248427!2d-111.92605953332553!3d33.53934888140348!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!1i0!3e6!4m0!4m5!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!3m2!1d33.5393489!2d-111.9239084!5e0!3m2!1sen!2sus!4v1407200074427\" width=\"1200\" height=\"300\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row]", "Contact Us", "", "inherit", "open", "open", "", "330-revision-v1", "", "", "2014-08-05 07:42:04", "2014-08-05 07:42:04", "", "330", "http://techno-sites.com/scotts/?p=1058", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("942", "1", "2014-08-02 09:03:43", "2014-08-02 09:03:43", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cnniReport1.png\" image_width=\"205\" image_height=\"46\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"22\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour – 21 Cakes[/mk_title_box][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-11.jpg\" image_width=\"759\" image_height=\"504\" crop=\"true\" lightbox=\"false\" frame_style=\"rounded\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][/vc_column][vc_column width=\"1/2\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]A bakery that adheres to an overriding philosophy: if it’s edible, it must be made completely from scratch. Everyday.\r\n\r\n21 Cakes specializes in one-of-a-kind, made-fresh-daily cupcakes, cakes, Parisian macarons, and on-site fresh roasted coffee. Conveniently located in The Scottsdale Seville shopping center in Scottsdale, Ariz., 21 Cakes’ elegant desserts are perfect for special occasions, a mid-week luncheon or a little indulgence, anytime.\r\n\r\nTheir newest creation: The Skini Cupcake – It is vanilla cake with chocolate filling and marshmallow cream frosting. It is about half the fat and calories of\r\n\r\na regular cupcake. It will be offered in additonal flavors as well. And FYI…it does not conatin any artificial sweeteners! Perfect in time for your new years resolution of eating healthier! Have your cake and eat it too![/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"18\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]More about 21 Cakes:[/mk_title_box][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]Initially starting as a wholesale business, owner and baker Linda Schneider wanted to share her love of baking with a wider audience. 21 Cakes opened in August 2011 offering fresh desserts and pastries made daily. A perfectionist in her kitchen, Linda insists on using the highest quality ingredients from the United States and Europe, ensuring delectable, one-of-a-kind desserts, unmatched in the Scottsdale area.\r\n\r\nTo create their daily magic, Linda relies on family recipes that have been passed down from her grandmother; coupled with her professional training and her pastry chef’s professional training at Le Cordon Bleu in Scottsdale. Together, beautiful and delicious desserts are created that are a pleasure for the eyes and a sensation for the taste buds.\r\n\r\nLinda’s specialty is her traditional Parisian macaron. Not to be confused with the coconut covered cookies by a similar name, Linda’s macarons are made from her time-tested traditional French recipe that took her over a year and hundreds of\r\n\r\nmacarons to perfect. They have been compared to the true Parisian macarons of France. The Parisian Macarons from 21 Cakes is a process that takes days to create, with the finished product only available from Thursday–Sunday, (if they last that long).\r\n\r\nIn addition to the retail store offerings, 21 Cakes creates custom occasion desserts, perfect for any wedding, anniversary, birthday, or special event. Whether a simple or elaborate design, only the freshest and finest ingredients go into each masterpiece. Customers are ensured that the pastry made for their event will not only be the most beautiful work of art, but also the most delicious anyone has tasted.\r\n\r\n21 Cakes was named after the 21 Club in New York City, during the 1920’s Art Deco era, when life seemed to be more decadent and glamorous, and people appreciated the finer things. In today’s fast paced world, finding and experiencing glamor and decadence is harder to do. Luckily, people can add a little bit of luxury in their lives when they come to 21 Cakes and experience the delicious and beautiful works of art that are created there daily[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<div style=\"background-image: url(\'http://www.scottsdaleseville.com/wp-content/uploads/2011/11/Sbg.png\'); background-repeat: no-repeat; height: 600px;\">\r\n<h1 style=\"text-align: center;\">Press</h1>\r\n<div id=\"ir_sitelogo\"><a href=\"http://ireport.cnn.com/\"><img src=\"http://ireport.cnn.com/themes/custom/resources/redesign/cnniReport.jpg\" alt=\"\" /></a></div>\r\n<h2><a href=\"http://ireport.cnn.com/docs/DOC-907608\" target=\"_blank\">In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour - 21 Cakes</a></h2>\r\n<h6 style=\"text-align: center;\"><a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\" target=\"_blank\"><img class=\"aligncenter size-full wp-image-658\" title=\"crystalwhitecakejpg-2349427_p9-1\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-1.jpg\" alt=\"21 cakes cnn top places to eat\" width=\"759\" height=\"504\" /></a>By <a title=\"Click to view jennygirl31\'s profile\" href=\"http://ireport.cnn.com/people/jennygirl31\">jennygirl31</a> |  Posted January 9, 2013  |  Scottsdale, Arizona</h6>\r\n</div>\r\n<div>\r\n<div id=\"story-desc\">\r\n<div>\r\n\r\n&nbsp;\r\n\r\nA bakery that adheres to an overriding philosophy: if it’s edible, it must be made completely from scratch. Everyday.\r\n\r\n21 Cakes specializes in one-of-a-kind, made-fresh-daily cupcakes, cakes, Parisian macarons, and on-site fresh roasted coffee. Conveniently located in The Scottsdale Seville shopping center in Scottsdale, Ariz., 21 Cakes’ elegant desserts are perfect for special occasions, a mid-week luncheon or a little indulgence, anytime.\r\n\r\nTheir newest creation: The Skini Cupcake - It is vanilla cake with chocolate filling and marshmallow cream frosting.  It is about half the fat and calories of\r\n\r\na regular cupcake.  It will be offered in additonal flavors as well. And FYI...it does not conatin any artificial sweeteners!  Perfect in time for your new years resolution of eating healthier!  Have your cake and eat it too!\r\n\r\nMore about 21 Cakes:\r\n\r\nInitially starting as a wholesale business, owner and baker Linda Schneider wanted to share her love of baking with a wider audience.  21 Cakes opened in August 2011 offering fresh desserts and pastries made daily. A perfectionist in her kitchen, Linda insists on using the highest quality ingredients from the United States and Europe, ensuring delectable, one-of-a-kind desserts, unmatched in the Scottsdale area.\r\n\r\nTo create their daily magic, Linda relies on family recipes that have been passed down from her grandmother; coupled with her professional training and her pastry chef’s professional training at Le Cordon Bleu in Scottsdale. Together, beautiful and delicious desserts are created that are a pleasure for the eyes and a sensation for the taste buds.\r\n\r\nLinda’s specialty is her traditional Parisian macaron. Not to be confused with the coconut covered cookies by a similar name, Linda’s macarons are made from her time-tested traditional French recipe that took her over a year and hundreds of\r\n\r\nmacarons to perfect.  They have been compared to the true Parisian macarons of France. The Parisian Macarons from 21 Cakes is a process that takes days to create, with the finished product only available from Thursday–Sunday, (if they last that long).\r\n\r\nIn addition to the retail store offerings, 21 Cakes creates custom occasion desserts, perfect for any wedding, anniversary, birthday, or special event. Whether a simple or elaborate design, only the freshest and finest ingredients go into each masterpiece. Customers are ensured that the pastry made for their event will not only be the most beautiful work of art, but also the most delicious anyone has tasted.\r\n\r\n21 Cakes was named after the 21 Club in New York City, during the 1920’s Art Deco era, when life seemed to be more decadent and glamorous, and people appreciated the finer things. In today’s fast paced world, finding and experiencing glamor and decadence is harder to do. Luckily, people can add a little bit of luxury in their lives when they come to 21 Cakes and experience the delicious and beautiful works of art that are created there daily\r\n\r\n</div>\r\n</div>\r\n<img src=\"http://i2.cdn.turner.com/cnn/2012/images/11/26/ireport_travelleisure.gray.png\" alt=\"\" border=\"0\" />\r\n\r\n</div>\r\n<h6>This iReport is part of an assignment that we created with Travel + Leisure:  <a href=\"http://ireport.cnn.com/topics/862779\"> 100 places to eat like a local</a></h6>\r\n[/vc_column_text][/vc_column][/vc_row]", "Press", "", "inherit", "open", "open", "", "399-revision-v1", "", "", "2014-08-02 09:03:43", "2014-08-02 09:03:43", "", "399", "http://techno-sites.com/scotts/?p=942", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("943", "1", "2014-08-02 09:05:53", "2014-08-02 09:05:53", "", "ireport_travelleisure.gray", "", "inherit", "open", "open", "", "ireport_travelleisure-gray", "", "", "2014-08-02 09:05:53", "2014-08-02 09:05:53", "", "399", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/ireport_travelleisure.gray_.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("944", "1", "2014-08-02 09:06:30", "2014-08-02 09:06:30", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cnniReport1.png\" image_width=\"205\" image_height=\"46\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"22\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour – 21 Cakes[/mk_title_box][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-11.jpg\" image_width=\"759\" image_height=\"504\" crop=\"true\" lightbox=\"false\" frame_style=\"rounded\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][/vc_column][vc_column width=\"1/2\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]A bakery that adheres to an overriding philosophy: if it’s edible, it must be made completely from scratch. Everyday.\r\n\r\n21 Cakes specializes in one-of-a-kind, made-fresh-daily cupcakes, cakes, Parisian macarons, and on-site fresh roasted coffee. Conveniently located in The Scottsdale Seville shopping center in Scottsdale, Ariz., 21 Cakes’ elegant desserts are perfect for special occasions, a mid-week luncheon or a little indulgence, anytime.\r\n\r\nTheir newest creation: The Skini Cupcake – It is vanilla cake with chocolate filling and marshmallow cream frosting. It is about half the fat and calories of\r\n\r\na regular cupcake. It will be offered in additonal flavors as well. And FYI…it does not conatin any artificial sweeteners! Perfect in time for your new years resolution of eating healthier! Have your cake and eat it too![/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"18\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]More about 21 Cakes:[/mk_title_box][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]Initially starting as a wholesale business, owner and baker Linda Schneider wanted to share her love of baking with a wider audience. 21 Cakes opened in August 2011 offering fresh desserts and pastries made daily. A perfectionist in her kitchen, Linda insists on using the highest quality ingredients from the United States and Europe, ensuring delectable, one-of-a-kind desserts, unmatched in the Scottsdale area.\r\n\r\nTo create their daily magic, Linda relies on family recipes that have been passed down from her grandmother; coupled with her professional training and her pastry chef’s professional training at Le Cordon Bleu in Scottsdale. Together, beautiful and delicious desserts are created that are a pleasure for the eyes and a sensation for the taste buds.\r\n\r\nLinda’s specialty is her traditional Parisian macaron. Not to be confused with the coconut covered cookies by a similar name, Linda’s macarons are made from her time-tested traditional French recipe that took her over a year and hundreds of\r\n\r\nmacarons to perfect. They have been compared to the true Parisian macarons of France. The Parisian Macarons from 21 Cakes is a process that takes days to create, with the finished product only available from Thursday–Sunday, (if they last that long).\r\n\r\nIn addition to the retail store offerings, 21 Cakes creates custom occasion desserts, perfect for any wedding, anniversary, birthday, or special event. Whether a simple or elaborate design, only the freshest and finest ingredients go into each masterpiece. Customers are ensured that the pastry made for their event will not only be the most beautiful work of art, but also the most delicious anyone has tasted.\r\n\r\n21 Cakes was named after the 21 Club in New York City, during the 1920’s Art Deco era, when life seemed to be more decadent and glamorous, and people appreciated the finer things. In today’s fast paced world, finding and experiencing glamor and decadence is harder to do. Luckily, people can add a little bit of luxury in their lives when they come to 21 Cakes and experience the delicious and beautiful works of art that are created there daily[/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/ireport_travelleisure.gray_.png\" image_width=\"176\" image_height=\"28\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<div style=\"background-image: url(\'http://www.scottsdaleseville.com/wp-content/uploads/2011/11/Sbg.png\'); background-repeat: no-repeat; height: 600px;\">\r\n<h1 style=\"text-align: center;\">Press</h1>\r\n<div id=\"ir_sitelogo\"><a href=\"http://ireport.cnn.com/\"><img src=\"http://ireport.cnn.com/themes/custom/resources/redesign/cnniReport.jpg\" alt=\"\" /></a></div>\r\n<h2><a href=\"http://ireport.cnn.com/docs/DOC-907608\" target=\"_blank\">In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour - 21 Cakes</a></h2>\r\n<h6 style=\"text-align: center;\"><a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\" target=\"_blank\"><img class=\"aligncenter size-full wp-image-658\" title=\"crystalwhitecakejpg-2349427_p9-1\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-1.jpg\" alt=\"21 cakes cnn top places to eat\" width=\"759\" height=\"504\" /></a>By <a title=\"Click to view jennygirl31\'s profile\" href=\"http://ireport.cnn.com/people/jennygirl31\">jennygirl31</a> |  Posted January 9, 2013  |  Scottsdale, Arizona</h6>\r\n</div>\r\n<div>\r\n<div id=\"story-desc\">\r\n<div>\r\n\r\n&nbsp;\r\n\r\nA bakery that adheres to an overriding philosophy: if it’s edible, it must be made completely from scratch. Everyday.\r\n\r\n21 Cakes specializes in one-of-a-kind, made-fresh-daily cupcakes, cakes, Parisian macarons, and on-site fresh roasted coffee. Conveniently located in The Scottsdale Seville shopping center in Scottsdale, Ariz., 21 Cakes’ elegant desserts are perfect for special occasions, a mid-week luncheon or a little indulgence, anytime.\r\n\r\nTheir newest creation: The Skini Cupcake - It is vanilla cake with chocolate filling and marshmallow cream frosting.  It is about half the fat and calories of\r\n\r\na regular cupcake.  It will be offered in additonal flavors as well. And FYI...it does not conatin any artificial sweeteners!  Perfect in time for your new years resolution of eating healthier!  Have your cake and eat it too!\r\n\r\nMore about 21 Cakes:\r\n\r\nInitially starting as a wholesale business, owner and baker Linda Schneider wanted to share her love of baking with a wider audience.  21 Cakes opened in August 2011 offering fresh desserts and pastries made daily. A perfectionist in her kitchen, Linda insists on using the highest quality ingredients from the United States and Europe, ensuring delectable, one-of-a-kind desserts, unmatched in the Scottsdale area.\r\n\r\nTo create their daily magic, Linda relies on family recipes that have been passed down from her grandmother; coupled with her professional training and her pastry chef’s professional training at Le Cordon Bleu in Scottsdale. Together, beautiful and delicious desserts are created that are a pleasure for the eyes and a sensation for the taste buds.\r\n\r\nLinda’s specialty is her traditional Parisian macaron. Not to be confused with the coconut covered cookies by a similar name, Linda’s macarons are made from her time-tested traditional French recipe that took her over a year and hundreds of\r\n\r\nmacarons to perfect.  They have been compared to the true Parisian macarons of France. The Parisian Macarons from 21 Cakes is a process that takes days to create, with the finished product only available from Thursday–Sunday, (if they last that long).\r\n\r\nIn addition to the retail store offerings, 21 Cakes creates custom occasion desserts, perfect for any wedding, anniversary, birthday, or special event. Whether a simple or elaborate design, only the freshest and finest ingredients go into each masterpiece. Customers are ensured that the pastry made for their event will not only be the most beautiful work of art, but also the most delicious anyone has tasted.\r\n\r\n21 Cakes was named after the 21 Club in New York City, during the 1920’s Art Deco era, when life seemed to be more decadent and glamorous, and people appreciated the finer things. In today’s fast paced world, finding and experiencing glamor and decadence is harder to do. Luckily, people can add a little bit of luxury in their lives when they come to 21 Cakes and experience the delicious and beautiful works of art that are created there daily\r\n\r\n</div>\r\n</div>\r\n<img src=\"http://i2.cdn.turner.com/cnn/2012/images/11/26/ireport_travelleisure.gray.png\" alt=\"\" border=\"0\" />\r\n\r\n</div>\r\n<h6>This iReport is part of an assignment that we created with Travel + Leisure:  <a href=\"http://ireport.cnn.com/topics/862779\"> 100 places to eat like a local</a></h6>\r\n[/vc_column_text][/vc_column][/vc_row]", "Press", "", "inherit", "open", "open", "", "399-revision-v1", "", "", "2014-08-02 09:06:30", "2014-08-02 09:06:30", "", "399", "http://techno-sites.com/scotts/?p=944", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("946", "1", "2014-08-02 09:12:24", "2014-08-02 09:12:24", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cnniReport1.png\" image_width=\"205\" image_height=\"46\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"22\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour – 21 Cakes[/mk_title_box][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-11.jpg\" image_width=\"759\" image_height=\"504\" crop=\"true\" lightbox=\"false\" frame_style=\"rounded\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][/vc_column][vc_column width=\"1/2\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]A bakery that adheres to an overriding philosophy: if it’s edible, it must be made completely from scratch. Everyday.\r\n\r\n21 Cakes specializes in one-of-a-kind, made-fresh-daily cupcakes, cakes, Parisian macarons, and on-site fresh roasted coffee. Conveniently located in The Scottsdale Seville shopping center in Scottsdale, Ariz., 21 Cakes’ elegant desserts are perfect for special occasions, a mid-week luncheon or a little indulgence, anytime.\r\n\r\nTheir newest creation: The Skini Cupcake – It is vanilla cake with chocolate filling and marshmallow cream frosting. It is about half the fat and calories of\r\n\r\na regular cupcake. It will be offered in additonal flavors as well. And FYI…it does not conatin any artificial sweeteners! Perfect in time for your new years resolution of eating healthier! Have your cake and eat it too![/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"18\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]More about 21 Cakes:[/mk_title_box][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]Initially starting as a wholesale business, owner and baker Linda Schneider wanted to share her love of baking with a wider audience. 21 Cakes opened in August 2011 offering fresh desserts and pastries made daily. A perfectionist in her kitchen, Linda insists on using the highest quality ingredients from the United States and Europe, ensuring delectable, one-of-a-kind desserts, unmatched in the Scottsdale area.\r\n\r\nTo create their daily magic, Linda relies on family recipes that have been passed down from her grandmother; coupled with her professional training and her pastry chef’s professional training at Le Cordon Bleu in Scottsdale. Together, beautiful and delicious desserts are created that are a pleasure for the eyes and a sensation for the taste buds.\r\n\r\nLinda’s specialty is her traditional Parisian macaron. Not to be confused with the coconut covered cookies by a similar name, Linda’s macarons are made from her time-tested traditional French recipe that took her over a year and hundreds of\r\n\r\nmacarons to perfect. They have been compared to the true Parisian macarons of France. The Parisian Macarons from 21 Cakes is a process that takes days to create, with the finished product only available from Thursday–Sunday, (if they last that long).\r\n\r\nIn addition to the retail store offerings, 21 Cakes creates custom occasion desserts, perfect for any wedding, anniversary, birthday, or special event. Whether a simple or elaborate design, only the freshest and finest ingredients go into each masterpiece. Customers are ensured that the pastry made for their event will not only be the most beautiful work of art, but also the most delicious anyone has tasted.\r\n\r\n21 Cakes was named after the 21 Club in New York City, during the 1920’s Art Deco era, when life seemed to be more decadent and glamorous, and people appreciated the finer things. In today’s fast paced world, finding and experiencing glamor and decadence is harder to do. Luckily, people can add a little bit of luxury in their lives when they come to 21 Cakes and experience the delicious and beautiful works of art that are created there daily[/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/ireport_travelleisure.gray_.png\" image_width=\"176\" image_height=\"28\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"10\"]THIS IREPORT IS PART OF AN ASSIGNMENT THAT WE CREATED WITH TRAVEL + LEISURE: 100 PLACES TO EAT LIKE A LOCAL[/vc_column_text][/vc_column][/vc_row]", "Press", "", "inherit", "open", "open", "", "399-revision-v1", "", "", "2014-08-02 09:12:24", "2014-08-02 09:12:24", "", "399", "http://techno-sites.com/scotts/?p=946", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("945", "1", "2014-08-02 09:08:20", "2014-08-02 09:08:20", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cnniReport1.png\" image_width=\"205\" image_height=\"46\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"22\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour – 21 Cakes[/mk_title_box][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-11.jpg\" image_width=\"759\" image_height=\"504\" crop=\"true\" lightbox=\"false\" frame_style=\"rounded\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][/vc_column][vc_column width=\"1/2\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]A bakery that adheres to an overriding philosophy: if it’s edible, it must be made completely from scratch. Everyday.\r\n\r\n21 Cakes specializes in one-of-a-kind, made-fresh-daily cupcakes, cakes, Parisian macarons, and on-site fresh roasted coffee. Conveniently located in The Scottsdale Seville shopping center in Scottsdale, Ariz., 21 Cakes’ elegant desserts are perfect for special occasions, a mid-week luncheon or a little indulgence, anytime.\r\n\r\nTheir newest creation: The Skini Cupcake – It is vanilla cake with chocolate filling and marshmallow cream frosting. It is about half the fat and calories of\r\n\r\na regular cupcake. It will be offered in additonal flavors as well. And FYI…it does not conatin any artificial sweeteners! Perfect in time for your new years resolution of eating healthier! Have your cake and eat it too![/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"18\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]More about 21 Cakes:[/mk_title_box][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]Initially starting as a wholesale business, owner and baker Linda Schneider wanted to share her love of baking with a wider audience. 21 Cakes opened in August 2011 offering fresh desserts and pastries made daily. A perfectionist in her kitchen, Linda insists on using the highest quality ingredients from the United States and Europe, ensuring delectable, one-of-a-kind desserts, unmatched in the Scottsdale area.\r\n\r\nTo create their daily magic, Linda relies on family recipes that have been passed down from her grandmother; coupled with her professional training and her pastry chef’s professional training at Le Cordon Bleu in Scottsdale. Together, beautiful and delicious desserts are created that are a pleasure for the eyes and a sensation for the taste buds.\r\n\r\nLinda’s specialty is her traditional Parisian macaron. Not to be confused with the coconut covered cookies by a similar name, Linda’s macarons are made from her time-tested traditional French recipe that took her over a year and hundreds of\r\n\r\nmacarons to perfect. They have been compared to the true Parisian macarons of France. The Parisian Macarons from 21 Cakes is a process that takes days to create, with the finished product only available from Thursday–Sunday, (if they last that long).\r\n\r\nIn addition to the retail store offerings, 21 Cakes creates custom occasion desserts, perfect for any wedding, anniversary, birthday, or special event. Whether a simple or elaborate design, only the freshest and finest ingredients go into each masterpiece. Customers are ensured that the pastry made for their event will not only be the most beautiful work of art, but also the most delicious anyone has tasted.\r\n\r\n21 Cakes was named after the 21 Club in New York City, during the 1920’s Art Deco era, when life seemed to be more decadent and glamorous, and people appreciated the finer things. In today’s fast paced world, finding and experiencing glamor and decadence is harder to do. Luckily, people can add a little bit of luxury in their lives when they come to 21 Cakes and experience the delicious and beautiful works of art that are created there daily[/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/ireport_travelleisure.gray_.png\" image_width=\"176\" image_height=\"28\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"10\"]THIS IREPORT IS PART OF AN ASSIGNMENT THAT WE CREATED WITH TRAVEL + LEISURE: 100 PLACES TO EAT LIKE A LOCAL[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<div style=\"background-image: url(\'http://www.scottsdaleseville.com/wp-content/uploads/2011/11/Sbg.png\'); background-repeat: no-repeat; height: 600px;\">\r\n<h1 style=\"text-align: center;\">Press</h1>\r\n<div id=\"ir_sitelogo\"><a href=\"http://ireport.cnn.com/\"><img src=\"http://ireport.cnn.com/themes/custom/resources/redesign/cnniReport.jpg\" alt=\"\" /></a></div>\r\n<h2><a href=\"http://ireport.cnn.com/docs/DOC-907608\" target=\"_blank\">In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour - 21 Cakes</a></h2>\r\n<h6 style=\"text-align: center;\"><a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\" target=\"_blank\"><img class=\"aligncenter size-full wp-image-658\" title=\"crystalwhitecakejpg-2349427_p9-1\" src=\"http://www.scottsdaleseville.com/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-1.jpg\" alt=\"21 cakes cnn top places to eat\" width=\"759\" height=\"504\" /></a>By <a title=\"Click to view jennygirl31\'s profile\" href=\"http://ireport.cnn.com/people/jennygirl31\">jennygirl31</a> |  Posted January 9, 2013  |  Scottsdale, Arizona</h6>\r\n</div>\r\n<div>\r\n<div id=\"story-desc\">\r\n<div>\r\n\r\n&nbsp;\r\n\r\nA bakery that adheres to an overriding philosophy: if it’s edible, it must be made completely from scratch. Everyday.\r\n\r\n21 Cakes specializes in one-of-a-kind, made-fresh-daily cupcakes, cakes, Parisian macarons, and on-site fresh roasted coffee. Conveniently located in The Scottsdale Seville shopping center in Scottsdale, Ariz., 21 Cakes’ elegant desserts are perfect for special occasions, a mid-week luncheon or a little indulgence, anytime.\r\n\r\nTheir newest creation: The Skini Cupcake - It is vanilla cake with chocolate filling and marshmallow cream frosting.  It is about half the fat and calories of\r\n\r\na regular cupcake.  It will be offered in additonal flavors as well. And FYI...it does not conatin any artificial sweeteners!  Perfect in time for your new years resolution of eating healthier!  Have your cake and eat it too!\r\n\r\nMore about 21 Cakes:\r\n\r\nInitially starting as a wholesale business, owner and baker Linda Schneider wanted to share her love of baking with a wider audience.  21 Cakes opened in August 2011 offering fresh desserts and pastries made daily. A perfectionist in her kitchen, Linda insists on using the highest quality ingredients from the United States and Europe, ensuring delectable, one-of-a-kind desserts, unmatched in the Scottsdale area.\r\n\r\nTo create their daily magic, Linda relies on family recipes that have been passed down from her grandmother; coupled with her professional training and her pastry chef’s professional training at Le Cordon Bleu in Scottsdale. Together, beautiful and delicious desserts are created that are a pleasure for the eyes and a sensation for the taste buds.\r\n\r\nLinda’s specialty is her traditional Parisian macaron. Not to be confused with the coconut covered cookies by a similar name, Linda’s macarons are made from her time-tested traditional French recipe that took her over a year and hundreds of\r\n\r\nmacarons to perfect.  They have been compared to the true Parisian macarons of France. The Parisian Macarons from 21 Cakes is a process that takes days to create, with the finished product only available from Thursday–Sunday, (if they last that long).\r\n\r\nIn addition to the retail store offerings, 21 Cakes creates custom occasion desserts, perfect for any wedding, anniversary, birthday, or special event. Whether a simple or elaborate design, only the freshest and finest ingredients go into each masterpiece. Customers are ensured that the pastry made for their event will not only be the most beautiful work of art, but also the most delicious anyone has tasted.\r\n\r\n21 Cakes was named after the 21 Club in New York City, during the 1920’s Art Deco era, when life seemed to be more decadent and glamorous, and people appreciated the finer things. In today’s fast paced world, finding and experiencing glamor and decadence is harder to do. Luckily, people can add a little bit of luxury in their lives when they come to 21 Cakes and experience the delicious and beautiful works of art that are created there daily\r\n\r\n</div>\r\n</div>\r\n<img src=\"http://i2.cdn.turner.com/cnn/2012/images/11/26/ireport_travelleisure.gray.png\" alt=\"\" border=\"0\" />\r\n\r\n</div>\r\n<h6>This iReport is part of an assignment that we created with Travel + Leisure:  <a href=\"http://ireport.cnn.com/topics/862779\"> 100 places to eat like a local</a></h6>\r\n[/vc_column_text][/vc_column][/vc_row]", "Press", "", "inherit", "open", "open", "", "399-revision-v1", "", "", "2014-08-02 09:08:20", "2014-08-02 09:08:20", "", "399", "http://techno-sites.com/scotts/?p=945", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("952", "1", "2014-08-02 09:30:15", "2014-08-02 09:30:15", "[vc_row][vc_column width=\"1/2\"][mk_contact_form style=\"modern\" skin=\"dark\" email=\"lgrace@mattesonrealty.com\" phone=\"false\"][/vc_column][vc_column width=\"1/2\"][mk_contact_info phone=\"480 998 4774\" email=\"lgrace@mattesonrealty.com\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\" person=\"Lisa Grace\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d3325.539795244858!2d-111.92605416932483!3d33.53934888149613!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!1i0!3e6!4m0!4m5!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253%2C+USA!3m2!1d33.5393489!2d-111.9239084!5e0!3m2!1sen!2sus!4v1406971661370\" width=\"400\" height=\"250\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row]", "Contact", "", "inherit", "open", "open", "", "330-revision-v1", "", "", "2014-08-02 09:30:15", "2014-08-02 09:30:15", "", "330", "http://techno-sites.com/scotts/?p=952", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("950", "1", "2014-08-02 09:28:05", "2014-08-02 09:28:05", "[vc_row][vc_column width=\"1/2\"][mk_contact_form style=\"modern\" skin=\"dark\" email=\"lgrace@mattesonrealty.com\" phone=\"false\"][/vc_column][vc_column width=\"1/2\"][mk_contact_info phone=\"480 998 4774\" email=\"lgrace@mattesonrealty.com\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\" person=\"Lisa Grace\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d3325.539795244858!2d-111.92605416932483!3d33.53934888149613!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!1i0!3e6!4m0!4m5!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253%2C+USA!3m2!1d33.5393489!2d-111.9239084!5e0!3m2!1sen!2sus!4v1406971661370\" width=\"400\" height=\"450\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<div style=\"background-image: url(\'http://www.scottsdaleseville.com/wp-content/uploads/2011/11/Sbg.png\'); background-repeat: no-repeat; height: 600px;\">\r\n<h1 style=\"text-align: center;\">Contact</h1>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #000000;\">Leasing information:</span></strong>\r\n<em>contact:</em> Lisa Grace\r\nlgrace@mattesonrealty.com\r\n480 998 4774</p>\r\n<p style=\"text-align: center;\">7001 N. Scottsdale Rd.\r\nScottsdale, AZ 85253\r\n<a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">directions</a></p>\r\n&nbsp;\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row]", "Contact", "", "inherit", "open", "open", "", "330-revision-v1", "", "", "2014-08-02 09:28:05", "2014-08-02 09:28:05", "", "330", "http://techno-sites.com/scotts/?p=950", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("951", "1", "2014-08-02 09:29:17", "2014-08-02 09:29:17", "[vc_row][vc_column width=\"1/2\"][mk_contact_form style=\"modern\" skin=\"dark\" email=\"lgrace@mattesonrealty.com\" phone=\"false\"][/vc_column][vc_column width=\"1/2\"][mk_contact_info phone=\"480 998 4774\" email=\"lgrace@mattesonrealty.com\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\" person=\"Lisa Grace\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d3325.539795244858!2d-111.92605416932483!3d33.53934888149613!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!1i0!3e6!4m0!4m5!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253%2C+USA!3m2!1d33.5393489!2d-111.9239084!5e0!3m2!1sen!2sus!4v1406971661370\" width=\"400\" height=\"250\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<div style=\"background-image: url(\'http://www.scottsdaleseville.com/wp-content/uploads/2011/11/Sbg.png\'); background-repeat: no-repeat; height: 600px;\">\r\n<h1 style=\"text-align: center;\">Contact</h1>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #000000;\">Leasing information:</span></strong>\r\n<em>contact:</em> Lisa Grace\r\nlgrace@mattesonrealty.com\r\n480 998 4774</p>\r\n<p style=\"text-align: center;\">7001 N. Scottsdale Rd.\r\nScottsdale, AZ 85253\r\n<a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">directions</a></p>\r\n&nbsp;\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row]", "Contact", "", "inherit", "open", "open", "", "330-revision-v1", "", "", "2014-08-02 09:29:17", "2014-08-02 09:29:17", "", "330", "http://techno-sites.com/scotts/?p=951", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("953", "1", "2014-08-02 09:41:13", "2014-08-02 09:41:13", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cnniReport1.png\" image_width=\"205\" image_height=\"46\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"22\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour – 21 Cakes[/mk_title_box][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-11.jpg\" image_width=\"759\" image_height=\"504\" crop=\"true\" lightbox=\"false\" frame_style=\"rounded\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][/vc_column][vc_column width=\"1/2\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]A bakery that adheres to an overriding philosophy: if it’s edible, it must be made completely from scratch. Everyday.\r\n\r\n21 Cakes specializes in one-of-a-kind, made-fresh-daily cupcakes, cakes, Parisian macarons, and on-site fresh roasted coffee. Conveniently located in The Scottsdale Seville shopping center in Scottsdale, Ariz., 21 Cakes’ elegant desserts are perfect for special occasions, a mid-week luncheon or a little indulgence, anytime.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]Their newest creation: The Skini Cupcake – It is vanilla cake with chocolate filling and marshmallow cream frosting. It is about half the fat and calories of a regular cupcake. It will be offered in additonal flavors as well. And FYI…it does not conatin any artificial sweeteners! Perfect in time for your new years resolution of eating healthier! Have your cake and eat it too![/vc_column_text][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"18\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]More about 21 Cakes:[/mk_title_box][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]Initially starting as a wholesale business, owner and baker Linda Schneider wanted to share her love of baking with a wider audience. 21 Cakes opened in August 2011 offering fresh desserts and pastries made daily. A perfectionist in her kitchen, Linda insists on using the highest quality ingredients from the United States and Europe, ensuring delectable, one-of-a-kind desserts, unmatched in the Scottsdale area.\r\n\r\nTo create their daily magic, Linda relies on family recipes that have been passed down from her grandmother; coupled with her professional training and her pastry chef’s professional training at Le Cordon Bleu in Scottsdale. Together, beautiful and delicious desserts are created that are a pleasure for the eyes and a sensation for the taste buds.\r\n\r\nLinda’s specialty is her traditional Parisian macaron. Not to be confused with the coconut covered cookies by a similar name, Linda’s macarons are made from her time-tested traditional French recipe that took her over a year and hundreds of\r\n\r\nmacarons to perfect. They have been compared to the true Parisian macarons of France. The Parisian Macarons from 21 Cakes is a process that takes days to create, with the finished product only available from Thursday–Sunday, (if they last that long).\r\n\r\nIn addition to the retail store offerings, 21 Cakes creates custom occasion desserts, perfect for any wedding, anniversary, birthday, or special event. Whether a simple or elaborate design, only the freshest and finest ingredients go into each masterpiece. Customers are ensured that the pastry made for their event will not only be the most beautiful work of art, but also the most delicious anyone has tasted.\r\n\r\n21 Cakes was named after the 21 Club in New York City, during the 1920’s Art Deco era, when life seemed to be more decadent and glamorous, and people appreciated the finer things. In today’s fast paced world, finding and experiencing glamor and decadence is harder to do. Luckily, people can add a little bit of luxury in their lives when they come to 21 Cakes and experience the delicious and beautiful works of art that are created there daily[/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/ireport_travelleisure.gray_.png\" image_width=\"176\" image_height=\"28\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"10\"]THIS IREPORT IS PART OF AN ASSIGNMENT THAT WE CREATED WITH TRAVEL + LEISURE: 100 PLACES TO EAT LIKE A LOCAL[/vc_column_text][/vc_column][/vc_row]", "Press", "", "inherit", "open", "open", "", "399-revision-v1", "", "", "2014-08-02 09:41:13", "2014-08-02 09:41:13", "", "399", "http://techno-sites.com/scotts/?p=953", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("954", "1", "2014-08-02 09:42:40", "2014-08-02 09:42:40", "[vc_row][vc_column width=\"1/1\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cnniReport1.png\" image_width=\"205\" image_height=\"46\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"22\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]In Scottsdale, AZ? Your fast paced life deserves some decadence and glamour – 21 Cakes[/mk_title_box][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/crystalwhitecakejpg-2349427_p9-11.jpg\" image_width=\"759\" image_height=\"504\" crop=\"true\" lightbox=\"false\" frame_style=\"rounded\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][/vc_column][vc_column width=\"1/2\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]A bakery that adheres to an overriding philosophy: if it’s edible, it must be made completely from scratch. Everyday.\r\n\r\n21 Cakes specializes in one-of-a-kind, made-fresh-daily cupcakes, cakes, Parisian macarons, and on-site fresh roasted coffee. Conveniently located in The Scottsdale Seville shopping center in Scottsdale, Ariz., 21 Cakes’ elegant desserts are perfect for special occasions, a mid-week luncheon or a little indulgence, anytime.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"10\"]Their newest creation: The Skini Cupcake – It is vanilla cake with chocolate filling and marshmallow cream frosting. It is about half the fat and calories of a regular cupcake. It will be offered in additonal flavors as well. And FYI…it does not conatin any artificial sweeteners! Perfect in time for your new years resolution of eating healthier! Have your cake and eat it too![/vc_column_text][mk_title_box color=\"#393836\" highlight_color=\"#000\" highlight_opacity=\"0\" size=\"18\" line_height=\"34\" font_weight=\"inherit\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]More about 21 Cakes:[/mk_title_box][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]Initially starting as a wholesale business, owner and baker Linda Schneider wanted to share her love of baking with a wider audience. 21 Cakes opened in August 2011 offering fresh desserts and pastries made daily. A perfectionist in her kitchen, Linda insists on using the highest quality ingredients from the United States and Europe, ensuring delectable, one-of-a-kind desserts, unmatched in the Scottsdale area.\r\n\r\nTo create their daily magic, Linda relies on family recipes that have been passed down from her grandmother; coupled with her professional training and her pastry chef’s professional training at Le Cordon Bleu in Scottsdale. Together, beautiful and delicious desserts are created that are a pleasure for the eyes and a sensation for the taste buds.\r\n\r\nLinda’s specialty is her traditional Parisian macaron. Not to be confused with the coconut covered cookies by a similar name, Linda’s macarons are made from her time-tested traditional French recipe that took her over a year and hundreds of\r\n\r\nmacarons to perfect. They have been compared to the true Parisian macarons of France. The Parisian Macarons from 21 Cakes is a process that takes days to create, with the finished product only available from Thursday–Sunday, (if they last that long).\r\n\r\nIn addition to the retail store offerings, 21 Cakes creates custom occasion desserts, perfect for any wedding, anniversary, birthday, or special event. Whether a simple or elaborate design, only the freshest and finest ingredients go into each masterpiece. Customers are ensured that the pastry made for their event will not only be the most beautiful work of art, but also the most delicious anyone has tasted.\r\n\r\n21 Cakes was named after the 21 Club in New York City, during the 1920’s Art Deco era, when life seemed to be more decadent and glamorous, and people appreciated the finer things. In today’s fast paced world, finding and experiencing glamor and decadence is harder to do. Luckily, people can add a little bit of luxury in their lives when they come to 21 Cakes and experience the delicious and beautiful works of art that are created there daily[/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/ireport_travelleisure.gray_.png\" image_width=\"176\" image_height=\"28\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"10\"]THIS IREPORT IS PART OF AN ASSIGNMENT THAT WE CREATED WITH TRAVEL + LEISURE: 100 PLACES TO EAT LIKE A LOCAL[/vc_column_text][/vc_column][/vc_row]", "Press", "", "inherit", "open", "open", "", "399-revision-v1", "", "", "2014-08-02 09:42:40", "2014-08-02 09:42:40", "", "399", "http://techno-sites.com/scotts/?p=954", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("955", "1", "2014-08-02 10:14:07", "2014-08-02 10:14:07", "", "palmumbrellagreen3", "", "inherit", "open", "open", "", "palmumbrellagreen3", "", "", "2014-08-02 10:14:07", "2014-08-02 10:14:07", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/palmumbrellagreen3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("956", "1", "2014-08-02 10:59:22", "2014-08-02 10:59:22", "", "bg2", "", "inherit", "open", "open", "", "bg2", "", "", "2014-08-02 10:59:22", "2014-08-02 10:59:22", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/bg2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("957", "1", "2014-08-02 11:01:21", "2014-08-02 11:01:21", "", "bg3", "", "inherit", "open", "open", "", "bg3", "", "", "2014-08-02 11:01:21", "2014-08-02 11:01:21", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/bg3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("958", "1", "2014-08-02 11:03:12", "2014-08-02 11:03:12", "", "bg4", "", "inherit", "open", "open", "", "bg4", "", "", "2014-08-02 11:03:12", "2014-08-02 11:03:12", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/bg4.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("959", "1", "2014-08-02 11:11:36", "2014-08-02 11:11:36", "", "logo", "", "inherit", "open", "open", "", "logo", "", "", "2014-08-02 11:11:36", "2014-08-02 11:11:36", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("960", "1", "2014-08-02 11:13:28", "2014-08-02 11:13:28", "", "logo", "", "inherit", "open", "open", "", "logo-3", "", "", "2014-08-02 11:13:28", "2014-08-02 11:13:28", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/logo1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("968", "1", "2014-08-04 06:48:40", "2014-08-04 06:48:40", "<img class=\"aligncenter size-full wp-image-761\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/01/image003.gif\" alt=\"image003\" width=\"144\" height=\"128\" />\r\n<p style=\"text-align: center;\"><span style=\"color: #ff0000;\">Discover unique treasures and custom gift baskets</span>\r\n<span style=\"color: #ff0000;\">For your special Valentine</span>\r\n<span style=\"color: #ff0000;\">at</span>\r\n<strong><span style=\"color: #ff0000;\">ACCEL’s Gifted Hands Boutique!</span></strong></p>\r\n<p style=\"text-align: center;\"><span style=\"color: #ff0000;\">Enjoy Tax Free Shopping Every Day!</span></p>\r\n<p style=\"text-align: center;\"><span style=\"color: #ff0000;\">Scottsdale Seville Shopping Plaza</span>\r\n<span style=\"color: #ff0000;\">7001 North Scottsdale Road, Suite # 107</span>\r\n<span style=\"color: #ff0000;\">Scottsdale, AZ 85253</span></p>\r\n<p style=\"text-align: center;\"><span style=\"color: #ff0000;\">Hours:  10:00 am – 6:00 pm Monday – Saturday</span>\r\n<strong><span style=\"color: #ff0000;\"><span id=\"skype_c2c_container\" class=\"skype_c2c_container notranslate\" dir=\"ltr\" style=\"font-weight: normal !important; color: #00affd !important;\" tabindex=\"-1\" data-numbertocall=\"+14802927959\" data-isfreecall=\"false\" data-isrtl=\"false\" data-ismobile=\"false\"><span class=\"skype_c2c_highlighting_inactive_common\" dir=\"ltr\"><span id=\"non_free_num_ui\" class=\"skype_c2c_textarea_span\"><img class=\"skype_c2c_logo_img\" src=\"chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/call_skype_logo.png\" alt=\"\" width=\"0\" height=\"0\" /><span class=\"skype_c2c_text_span\">480-292-7959</span></span></span></span></span></strong>\r\n<span style=\"color: #ff0000;\">All proceeds benefit special needs children and adults at ACCEL</span></p>\r\n<img class=\"aligncenter size-full wp-image-762\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/01/image004.jpg\" alt=\"image004\" width=\"384\" height=\"118\" />", "Valentines Special Gifted Hands", "", "inherit", "open", "open", "", "967-revision-v1", "", "", "2014-08-04 06:48:40", "2014-08-04 06:48:40", "", "967", "http://techno-sites.com/scotts/?p=968", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("969", "1", "2014-08-04 06:52:04", "2014-08-04 06:52:04", "", "Longfellow Fine Art Festival", "", "publish", "open", "open", "", "longfellow-fine-art-festival-2", "", "", "2014-08-04 06:52:04", "2014-08-04 06:52:04", "", "0", "http://techno-sites.com/scotts/?p=969", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("970", "1", "2014-08-04 06:51:51", "2014-08-04 06:51:51", "", "Poster_Seville.ai", "", "inherit", "open", "open", "", "poster_seville-ai-2", "", "", "2014-08-04 06:51:51", "2014-08-04 06:51:51", "", "969", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/wildhorsesofarizona.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("971", "1", "2014-08-04 06:52:04", "2014-08-04 06:52:04", "", "Longfellow Fine Art Festival", "", "inherit", "open", "open", "", "969-revision-v1", "", "", "2014-08-04 06:52:04", "2014-08-04 06:52:04", "", "969", "http://techno-sites.com/scotts/?p=971", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("972", "1", "2014-08-04 06:53:01", "2014-08-04 06:53:01", "", "Bee-Dazzle Your Queen Bee this Mothers Day", "", "publish", "open", "open", "", "bee-dazzle-your-queen-bee-this-mothers-day-2", "", "", "2014-08-04 06:53:01", "2014-08-04 06:53:01", "", "0", "http://techno-sites.com/scotts/?p=972", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("973", "1", "2014-08-04 06:53:01", "2014-08-04 06:53:01", "", "Bee-Dazzle Your Queen Bee this Mothers Day", "", "inherit", "open", "open", "", "972-revision-v1", "", "", "2014-08-04 06:53:01", "2014-08-04 06:53:01", "", "972", "http://techno-sites.com/scotts/?p=973", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("974", "1", "2014-08-04 06:55:32", "2014-08-04 06:55:32", "<img class=\"aligncenter size-full wp-image-823\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" alt=\"logo_mail\" width=\"550\" height=\"124\" />\r\n<h1 style=\"color: #000000; text-align: center;\">Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10</h1>\r\n<img class=\"aligncenter size-full wp-image-824\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" alt=\"New-ScottsdaleGOEB\" width=\"400\" height=\"231\" />\r\n\r\nWe are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale!", "Sole Sports Scottsdale New Location Grand Opening Party Saturday, May 10", "", "publish", "open", "open", "", "sole-sports-scottsdale-new-location-grand-opening-party-saturday-may-10-2", "", "", "2014-08-04 07:36:30", "2014-08-04 07:36:30", "", "0", "http://techno-sites.com/scotts/?p=974", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("975", "1", "2014-08-04 06:55:32", "2014-08-04 06:55:32", "<img class=\"aligncenter size-full wp-image-823\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" alt=\"logo_mail\" width=\"550\" height=\"124\" />\r\n<h1 style=\"color: #000000; text-align: center;\">Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10</h1>\r\n<img class=\"aligncenter size-full wp-image-824\" src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" alt=\"New-ScottsdaleGOEB\" width=\"400\" height=\"231\" />\r\n\r\nWe are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale!", "Sole Sports Scottsdale New Location Grand Opening Party Saturday, May 10", "", "inherit", "open", "open", "", "974-revision-v1", "", "", "2014-08-04 06:55:32", "2014-08-04 06:55:32", "", "974", "http://techno-sites.com/scotts/?p=975", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("976", "1", "2014-08-04 07:06:58", "2014-08-04 07:06:58", "", "arc", "", "inherit", "open", "open", "", "arc", "", "", "2014-08-04 07:06:58", "2014-08-04 07:06:58", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/arc.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("977", "1", "2014-08-04 07:12:36", "2014-08-04 07:12:36", "", "Shop", "", "publish", "open", "open", "", "shop", "", "", "2014-08-06 07:41:21", "2014-08-06 07:41:21", "", "0", "http://techno-sites.com/scotts/?p=977", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("978", "1", "2014-08-04 07:12:36", "2014-08-04 07:12:36", " ", "", "", "publish", "open", "open", "", "978", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=978", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("979", "1", "2014-08-04 07:12:36", "2014-08-04 07:12:36", " ", "", "", "publish", "open", "open", "", "979", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=979", "7", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("980", "1", "2014-08-04 07:12:36", "2014-08-04 07:12:36", " ", "", "", "publish", "open", "open", "", "980", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=980", "8", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("981", "1", "2014-08-04 07:12:36", "2014-08-04 07:12:36", " ", "", "", "publish", "open", "open", "", "981", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=981", "9", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("982", "1", "2014-08-04 07:12:36", "2014-08-04 07:12:36", "", "Drapers & Damon\'s", "", "publish", "open", "open", "", "drapers-damons", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=982", "10", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("983", "1", "2014-08-04 07:12:36", "2014-08-04 07:12:36", " ", "", "", "publish", "open", "open", "", "983", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=983", "11", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("984", "1", "2014-08-04 07:12:36", "2014-08-04 07:12:36", "", "Leopard\'s Spot Boutique", "", "publish", "open", "open", "", "leopards-spot-boutique", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=984", "12", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("985", "1", "2014-08-04 07:12:36", "2014-08-04 07:12:36", " ", "", "", "publish", "open", "open", "", "985", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=985", "13", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("986", "1", "2014-08-04 07:12:37", "2014-08-04 07:12:37", " ", "", "", "publish", "open", "open", "", "986", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=986", "14", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("987", "1", "2014-08-04 07:12:37", "2014-08-04 07:12:37", " ", "", "", "publish", "open", "open", "", "987", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=987", "15", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("988", "1", "2014-08-04 07:12:37", "2014-08-04 07:12:37", " ", "", "", "publish", "open", "open", "", "988", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=988", "16", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("989", "1", "2014-08-04 07:12:37", "2014-08-04 07:12:37", " ", "", "", "publish", "open", "open", "", "989", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=989", "17", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("990", "1", "2014-08-04 07:23:04", "2014-08-04 07:23:04", "", "DINE", "", "publish", "open", "open", "", "dine", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=990", "18", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("991", "1", "2014-08-04 07:23:04", "2014-08-04 07:23:04", " ", "", "", "publish", "open", "open", "", "991", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=991", "19", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("992", "1", "2014-08-04 07:23:04", "2014-08-04 07:23:04", " ", "", "", "publish", "open", "open", "", "992", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=992", "20", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("993", "1", "2014-08-04 07:23:04", "2014-08-04 07:23:04", " ", "", "", "publish", "open", "open", "", "993", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=993", "21", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("994", "1", "2014-08-04 07:23:04", "2014-08-04 07:23:04", " ", "", "", "publish", "open", "open", "", "994", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=994", "23", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("995", "1", "2014-08-04 07:23:04", "2014-08-04 07:23:04", " ", "", "", "publish", "open", "open", "", "995", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=995", "24", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("996", "1", "2014-08-04 07:23:04", "2014-08-04 07:23:04", " ", "", "", "publish", "open", "open", "", "996", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=996", "25", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("997", "1", "2014-08-04 07:23:04", "2014-08-04 07:23:04", " ", "", "", "publish", "open", "open", "", "997", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=997", "26", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("998", "1", "2014-08-04 07:23:04", "2014-08-04 07:23:04", " ", "", "", "publish", "open", "open", "", "998", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=998", "27", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("999", "1", "2014-08-04 07:21:31", "2014-08-04 07:21:31", "<p style=\"text-align: center;\"><a href=\"http://www.ruthschris.com/\" target=\"_blank\">www.ruthschris.com</a></p>\r\n<p style=\"text-align: center;\"><strong>Hours:</strong>\r\nMonday – Thursday\r\n5:00 p.m. to 10:00 p.m.\r\nFriday – Saturday\r\n5:00 p.m. to 10:30 p.m.\r\nSunday\r\n4:30 p.m. to 9:30 p.m.</p>\r\n<p style=\"text-align: center;\">** HOLIDAY HOURS **\r\nThanksgiving Day\r\n12:00 p.m. – 8:00 p.m.</p>\r\n<p style=\"text-align: center;\"><strong>Location:</strong>\r\nSuite 290</p>\r\n<p style=\"text-align: center;\"><strong>Contact:</strong>\r\n480-991-5988</p>", "Ruth’s Chris Steakhouse", "", "publish", "open", "open", "", "ruths-chris-steakhouse-2", "", "", "2014-08-04 07:33:15", "2014-08-04 07:33:15", "", "0", "http://techno-sites.com/scotts/?page_id=999", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1000", "1", "2014-08-04 07:21:31", "2014-08-04 07:21:31", "<p style=\"text-align: center;\"><a href=\"http://www.ruthschris.com/\" target=\"_blank\">www.ruthschris.com</a></p>\r\n<p style=\"text-align: center;\"><strong>Hours:</strong>\r\nMonday – Thursday\r\n5:00 p.m. to 10:00 p.m.\r\nFriday – Saturday\r\n5:00 p.m. to 10:30 p.m.\r\nSunday\r\n4:30 p.m. to 9:30 p.m.</p>\r\n<p style=\"text-align: center;\">** HOLIDAY HOURS **\r\nThanksgiving Day\r\n12:00 p.m. – 8:00 p.m.</p>\r\n<p style=\"text-align: center;\"><strong>Location:</strong>\r\nSuite 290</p>\r\n<p style=\"text-align: center;\"><strong>Contact:</strong>\r\n480-991-5988</p>", "Ruth’s Chris Steakhouse", "", "inherit", "open", "open", "", "999-revision-v1", "", "", "2014-08-04 07:21:31", "2014-08-04 07:21:31", "", "999", "http://techno-sites.com/scotts/?p=1000", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1001", "1", "2014-08-04 07:23:04", "2014-08-04 07:23:04", " ", "", "", "publish", "open", "open", "", "1001", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=1001", "28", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1002", "1", "2014-08-04 07:23:04", "2014-08-04 07:23:04", " ", "", "", "publish", "open", "open", "", "1002", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=1002", "29", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1003", "1", "2014-08-04 07:25:00", "2014-08-04 07:25:00", " ", "", "", "publish", "open", "open", "", "1003", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=1003", "22", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1004", "1", "2014-08-04 07:31:27", "2014-08-04 07:31:27", "", "RELAX", "", "publish", "open", "open", "", "relax", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=1004", "30", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1005", "1", "2014-08-04 07:31:27", "2014-08-04 07:31:27", " ", "", "", "publish", "open", "open", "", "1005", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=1005", "31", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1006", "1", "2014-08-04 07:31:27", "2014-08-04 07:31:27", " ", "", "", "publish", "open", "open", "", "1006", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=1006", "32", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1007", "1", "2014-08-04 07:31:27", "2014-08-04 07:31:27", " ", "", "", "publish", "open", "open", "", "1007", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=1007", "33", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1008", "1", "2014-08-04 07:31:28", "2014-08-04 07:31:28", " ", "", "", "publish", "open", "open", "", "1008", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=1008", "34", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1009", "1", "2014-08-04 07:31:28", "2014-08-04 07:31:28", "", "SERVICES", "", "publish", "open", "open", "", "services", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=1009", "35", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1010", "1", "2014-08-04 07:31:28", "2014-08-04 07:31:28", " ", "", "", "publish", "open", "open", "", "1010", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=1010", "36", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1011", "1", "2014-08-04 07:31:28", "2014-08-04 07:31:28", " ", "", "", "publish", "open", "open", "", "1011", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=1011", "38", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1012", "1", "2014-08-04 07:31:28", "2014-08-04 07:31:28", " ", "", "", "publish", "open", "open", "", "1012", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=1012", "39", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1013", "1", "2014-08-04 07:31:28", "2014-08-04 07:31:28", " ", "", "", "publish", "open", "open", "", "1013", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=1013", "37", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1014", "1", "2014-08-04 08:22:51", "2014-08-04 08:22:51", "", "cream", "", "inherit", "open", "open", "", "cream", "", "", "2014-08-04 08:22:51", "2014-08-04 08:22:51", "", "16", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1015", "1", "2014-08-04 08:23:39", "2014-08-04 08:23:39", "", "darkpeach", "", "inherit", "open", "open", "", "darkpeach", "", "", "2014-08-04 08:23:39", "2014-08-04 08:23:39", "", "16", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1016", "1", "2014-08-04 08:24:08", "2014-08-04 08:24:08", "", "peach", "", "inherit", "open", "open", "", "peach", "", "", "2014-08-04 08:24:08", "2014-08-04 08:24:08", "", "16", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1017", "1", "2014-08-04 08:24:34", "2014-08-04 08:24:34", "", "purple", "", "inherit", "open", "open", "", "purple", "", "", "2014-08-04 08:24:34", "2014-08-04 08:24:34", "", "16", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1018", "1", "2014-08-04 08:24:45", "2014-08-04 08:24:45", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_padding_divider size=\"30\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-04 08:24:45", "2014-08-04 08:24:45", "", "16", "http://techno-sites.com/scotts/?p=1018", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1019", "1", "2014-08-04 08:25:32", "2014-08-04 08:25:32", "[vc_row][vc_column width=\"1/1\"][mk_padding_divider size=\"30\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-04 08:25:32", "2014-08-04 08:25:32", "", "16", "http://techno-sites.com/scotts/?p=1019", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1020", "1", "2014-08-04 08:27:20", "2014-08-04 08:27:20", "[vc_row][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-04 08:27:20", "2014-08-04 08:27:20", "", "16", "http://techno-sites.com/scotts/?p=1020", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1021", "1", "2014-08-04 08:31:41", "2014-08-04 08:31:41", "[vc_row][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"16\" font_weight=\"inhert\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-04 08:31:41", "2014-08-04 08:31:41", "", "16", "http://techno-sites.com/scotts/?p=1021", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1022", "1", "2014-08-04 08:33:51", "2014-08-04 08:33:51", "[vc_row][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"18\" font_weight=\"inhert\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"18\" font_weight=\"inhert\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"18\" font_weight=\"inhert\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"18\" font_weight=\"inhert\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-04 08:33:51", "2014-08-04 08:33:51", "", "16", "http://techno-sites.com/scotts/?p=1022", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1023", "1", "2014-08-04 08:35:47", "2014-08-04 08:35:47", "[vc_row][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-04 08:35:47", "2014-08-04 08:35:47", "", "16", "http://techno-sites.com/scotts/?p=1023", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1024", "1", "2014-08-04 11:30:29", "2014-08-04 11:30:29", "", "arc1", "", "inherit", "open", "open", "", "arc1", "", "", "2014-08-04 11:30:29", "2014-08-04 11:30:29", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/arc1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1025", "1", "2014-08-04 12:33:22", "2014-08-04 12:33:22", "", "arch1", "", "inherit", "open", "open", "", "arch1", "", "", "2014-08-04 12:33:22", "2014-08-04 12:33:22", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/arch1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1026", "1", "2014-08-04 12:33:25", "2014-08-04 12:33:25", "", "arch2", "", "inherit", "open", "open", "", "arch2", "", "", "2014-08-04 12:33:25", "2014-08-04 12:33:25", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/arch2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1027", "1", "2014-08-04 12:33:27", "2014-08-04 12:33:27", "", "arch3", "", "inherit", "open", "open", "", "arch3", "", "", "2014-08-04 12:33:27", "2014-08-04 12:33:27", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/arch3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1028", "1", "2014-08-04 12:33:29", "2014-08-04 12:33:29", "", "arch4", "", "inherit", "open", "open", "", "arch4", "", "", "2014-08-04 12:33:29", "2014-08-04 12:33:29", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/arch4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1029", "1", "2014-08-04 12:33:31", "2014-08-04 12:33:31", "", "arch5", "", "inherit", "open", "open", "", "arch5", "", "", "2014-08-04 12:33:31", "2014-08-04 12:33:31", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/arch5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1030", "1", "2014-08-04 12:33:33", "2014-08-04 12:33:33", "", "arch6", "", "inherit", "open", "open", "", "arch6", "", "", "2014-08-04 12:33:33", "2014-08-04 12:33:33", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/arch6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1031", "1", "2014-08-04 12:33:35", "2014-08-04 12:33:35", "", "arch7", "", "inherit", "open", "open", "", "arch7", "", "", "2014-08-04 12:33:35", "2014-08-04 12:33:35", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/arch7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1032", "1", "2014-08-04 12:37:47", "2014-08-04 12:37:47", "", "title", "", "inherit", "open", "open", "", "title", "", "", "2014-08-04 12:37:47", "2014-08-04 12:37:47", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/title.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1033", "1", "2014-08-04 12:38:51", "2014-08-04 12:38:51", "", "title", "", "inherit", "open", "open", "", "title-2", "", "", "2014-08-04 12:38:51", "2014-08-04 12:38:51", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/title1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1034", "1", "2014-08-05 05:54:06", "2014-08-05 05:54:06", "", "seville", "", "inherit", "open", "open", "", "seville", "", "", "2014-08-05 05:54:06", "2014-08-05 05:54:06", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/seville.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1035", "1", "2014-08-05 06:10:32", "2014-08-05 06:10:32", "[vc_row][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][mk_page_section bg_color=\"#000000\" predefined_bg=\"3\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"true\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" min_height=\"100\" full_height=\"false\" padding_top=\"20\" padding_bottom=\"20\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.\r\n\r\nThe Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .\r\n\r\n<strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\">Ruth\'s Chris Steak House</a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\">specialty cupcake shop</a> ends the day perfectly.\r\n\r\nA family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\">McCormick-Stillman Railroad Park</a>[/vc_column_text][/vc_column][/mk_page_section][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 06:10:32", "2014-08-05 06:10:32", "", "16", "http://techno-sites.com/scotts/?p=1035", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1036", "1", "2014-08-05 06:13:14", "2014-08-05 06:13:14", "[vc_row][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][mk_page_section bg_color=\"#000000\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"true\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" min_height=\"100\" full_height=\"false\" padding_top=\"60\" padding_bottom=\"60\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\" border_color=\"#000000\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong>Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong>Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong>Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong>relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/mk_page_section][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 06:13:14", "2014-08-05 06:13:14", "", "16", "http://techno-sites.com/scotts/?p=1036", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1037", "1", "2014-08-05 06:14:47", "2014-08-05 06:14:47", "[vc_row][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][mk_page_section bg_color=\"#000000\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"true\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" min_height=\"100\" full_height=\"false\" padding_top=\"60\" padding_bottom=\"60\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\" border_color=\"#000000\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/mk_page_section][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 06:14:47", "2014-08-05 06:14:47", "", "16", "http://techno-sites.com/scotts/?p=1037", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1039", "1", "2014-08-05 06:20:58", "2014-08-05 06:20:58", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 06:20:58", "2014-08-05 06:20:58", "", "16", "http://techno-sites.com/scotts/?p=1039", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1038", "1", "2014-08-05 06:18:17", "2014-08-05 06:18:17", "[vc_row fullwidth=\"true\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][mk_page_section bg_color=\"#000000\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"true\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" min_height=\"100\" full_height=\"false\" padding_top=\"60\" padding_bottom=\"60\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\" border_color=\"#000000\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/mk_page_section][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"rowbg\"][vc_column width=\"1/1\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 06:18:17", "2014-08-05 06:18:17", "", "16", "http://techno-sites.com/scotts/?p=1038", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1040", "1", "2014-08-05 06:40:07", "2014-08-05 06:40:07", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 06:40:07", "2014-08-05 06:40:07", "", "16", "http://techno-sites.com/scotts/?p=1040", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1041", "1", "2014-08-05 06:42:17", "2014-08-05 06:42:17", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"0\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 06:42:17", "2014-08-05 06:42:17", "", "16", "http://techno-sites.com/scotts/?p=1041", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1042", "1", "2014-08-05 06:43:11", "2014-08-05 06:43:11", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row fullwidth=\"true\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 06:43:11", "2014-08-05 06:43:11", "", "16", "http://techno-sites.com/scotts/?p=1042", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1043", "1", "2014-08-05 06:43:42", "2014-08-05 06:43:42", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 06:43:42", "2014-08-05 06:43:42", "", "16", "http://techno-sites.com/scotts/?p=1043", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1044", "1", "2014-08-05 06:46:30", "2014-08-05 06:46:30", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 06:46:30", "2014-08-05 06:46:30", "", "16", "http://techno-sites.com/scotts/?p=1044", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1045", "1", "2014-08-05 06:50:01", "2014-08-05 06:50:01", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 06:50:01", "2014-08-05 06:50:01", "", "16", "http://techno-sites.com/scotts/?p=1045", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1047", "1", "2014-08-05 06:56:45", "2014-08-05 06:56:45", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 06:56:45", "2014-08-05 06:56:45", "", "16", "http://techno-sites.com/scotts/?p=1047", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1046", "1", "2014-08-05 06:52:29", "2014-08-05 06:52:29", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"550\" image_height=\"124\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"center\" txt_transform=\"capitalize\"]Sole Sports Scottsdale New Location\r\nGRAND OPENING PARTY\r\nSaturday, May 10[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/New-ScottsdaleGOEB.jpg\" image_width=\"400\" image_height=\"231\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]We are happy to announce the Grand Opening of our new Scottsdale location in the Scottsdale Seville shopping plaza on North Scottsdale &amp; East Indian Bend roads. On Saturday, May 10 we’ll be having a Grand Opening party, with a morning group run followed by a full day of fun and festivities with gifts, raffles and more!\r\n\r\nThe Grand Opening event will be on Saturday, May 10 and will begin with a 6:00 A.M., free group run from the store, open to all. With complimentary snacks and beverages to follow throughout the day. Runners can then stick around for opportunities to win raffle prizes by shopping and checking in via social media. FREE gifts provided by a variety of running specialty vendors will be given with every purchase over $25.\r\n\r\nThis Grand Opening is a must-attend event, so clear your calendar, drop the kis with the sitter, feed the dogs and get your running shoes over to NEW Sole Sports Scottsdale![/vc_column_text][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/MomDay14GHB.png\" image_width=\"700\" image_height=\"1082\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]WELCOME OUR NEWEST TENANTS TO THE SEVILLE[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"505\" image_height=\"191\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"32\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]Burger 21 Heads West with Arizona Franchise Agreement[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]Burger 21®, a new better burger franchise founded by the owners of The Melting Pot® Restaurants, Inc., signed its first franchise agreement a year ago in Chandler, Arizona. Burger 21 restaurant is expanding now to Scottsdale, Ariz. To date, Burger 21 has nine open locations and 17 franchised restaurants in development across the country. Come welcome Burger 21 at Scottsdale Seville <a href=\"http://www.burger21.com/burger-21-heads-west-with-first-arizona-franchise-agreement/\" target=\"_blank\">read more</a>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 06:52:29", "2014-08-05 06:52:29", "", "16", "http://techno-sites.com/scotts/?p=1046", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1048", "1", "2014-08-05 07:06:28", "2014-08-05 07:06:28", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 07:06:28", "2014-08-05 07:06:28", "", "16", "http://techno-sites.com/scotts/?p=1048", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1049", "1", "2014-08-05 07:07:49", "2014-08-05 07:07:49", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 07:07:49", "2014-08-05 07:07:49", "", "16", "http://techno-sites.com/scotts/?p=1049", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1076", "1", "2014-08-05 09:39:56", "2014-08-05 09:39:56", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 09:39:56", "2014-08-05 09:39:56", "", "16", "http://techno-sites.com/scotts/?p=1076", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1050", "1", "2014-08-05 07:09:27", "2014-08-05 07:09:27", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/cream.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/darkpeach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/peach.png\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/purple.jpg\" image_width=\"370\" image_height=\"230\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 07:09:27", "2014-08-05 07:09:27", "", "16", "http://techno-sites.com/scotts/?p=1050", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1051", "1", "2014-08-05 07:25:03", "2014-08-05 07:25:03", "[mk_page_section predefined_bg=\"3\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"true\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"recent events\" min_height=\"100\" full_height=\"false\" padding_top=\"10\" padding_bottom=\"10\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\"][vc_column width=\"1/1\"][/vc_column][/mk_page_section]", "test", "", "publish", "open", "open", "", "test", "", "", "2014-08-05 07:25:03", "2014-08-05 07:25:03", "", "0", "http://techno-sites.com/scotts/?page_id=1051", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1052", "1", "2014-08-05 07:25:03", "2014-08-05 07:25:03", "[mk_page_section predefined_bg=\"3\" attachment=\"scroll\" bg_position=\"left top\" bg_repeat=\"repeat\" bg_stretch=\"false\" enable_3d=\"true\" speed_factor=\"4\" bg_video=\"no\" video_mask=\"false\" video_opacity=\"0.6\" top_shadow=\"false\" section_layout=\"full\" sidebar=\"recent events\" min_height=\"100\" full_height=\"false\" padding_top=\"10\" padding_bottom=\"10\" margin_bottom=\"0\" first_page=\"false\" last_page=\"false\"][vc_column width=\"1/1\"][/vc_column][/mk_page_section]", "test", "", "inherit", "open", "open", "", "1051-revision-v1", "", "", "2014-08-05 07:25:03", "2014-08-05 07:25:03", "", "1051", "http://techno-sites.com/scotts/?p=1052", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1053", "1", "2014-08-05 07:31:38", "2014-08-05 07:31:38", "", "shop", "", "inherit", "open", "open", "", "shop-2", "", "", "2014-08-05 07:31:38", "2014-08-05 07:31:38", "", "16", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1054", "1", "2014-08-05 07:33:54", "2014-08-05 07:33:54", "", "dine", "", "inherit", "open", "open", "", "dine-2", "", "", "2014-08-05 07:33:54", "2014-08-05 07:33:54", "", "16", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1055", "1", "2014-08-05 07:35:07", "2014-08-05 07:35:07", "", "relax", "", "inherit", "open", "open", "", "relax-2", "", "", "2014-08-05 07:35:07", "2014-08-05 07:35:07", "", "16", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1056", "1", "2014-08-05 07:36:00", "2014-08-05 07:36:00", "", "services", "", "inherit", "open", "open", "", "services-2", "", "", "2014-08-05 07:36:00", "2014-08-05 07:36:00", "", "16", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1057", "1", "2014-08-05 07:36:22", "2014-08-05 07:36:22", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 07:36:22", "2014-08-05 07:36:22", "", "16", "http://techno-sites.com/scotts/?p=1057", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1059", "1", "2014-08-05 07:44:48", "2014-08-05 07:44:48", "[vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d3325.539795248427!2d-111.92605953332553!3d33.53934888140348!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!1i0!3e6!4m0!4m5!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!3m2!1d33.5393489!2d-111.9239084!5e0!3m2!1sen!2sus!4v1407200074427\" width=\"1200\" height=\"300\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][mk_contact_form style=\"modern\" skin=\"dark\" email=\"lgrace@mattesonrealty.com\" phone=\"false\"][/vc_column][vc_column width=\"1/2\"][mk_contact_info phone=\"480 998 4774\" email=\"lgrace@mattesonrealty.com\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\" person=\"Lisa Grace\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">Get Driving Directions</a>[/vc_column_text][/vc_column][/vc_row]", "Contact Us", "", "inherit", "open", "open", "", "330-revision-v1", "", "", "2014-08-05 07:44:48", "2014-08-05 07:44:48", "", "330", "http://techno-sites.com/scotts/?p=1059", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1060", "1", "2014-08-05 07:45:39", "2014-08-05 07:45:39", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"20\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d3325.539795248427!2d-111.92605953332553!3d33.53934888140348!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!1i0!3e6!4m0!4m5!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!3m2!1d33.5393489!2d-111.9239084!5e0!3m2!1sen!2sus!4v1407200074427\" width=\"1200\" height=\"300\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][mk_contact_form style=\"modern\" skin=\"dark\" email=\"lgrace@mattesonrealty.com\" phone=\"false\"][/vc_column][vc_column width=\"1/2\"][mk_contact_info phone=\"480 998 4774\" email=\"lgrace@mattesonrealty.com\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\" person=\"Lisa Grace\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">Get Driving Directions</a>[/vc_column_text][/vc_column][/vc_row]", "Contact Us", "", "inherit", "open", "open", "", "330-revision-v1", "", "", "2014-08-05 07:45:39", "2014-08-05 07:45:39", "", "330", "http://techno-sites.com/scotts/?p=1060", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1062", "1", "2014-08-05 07:55:54", "2014-08-05 07:55:54", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"][mk_font_icons icon=\"icon-facebook-sign\" color=\"#3c599f\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"][mk_font_icons icon=\"icon-facebook-sign\" color=\"#3c599f\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"]\r\n\r\n[mk_font_icons icon=\"icon-facebook-sign\" color=\"#3c599f\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"][mk_font_icons icon=\"icon-facebook-sign\" color=\"#3c599f\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"][/vc_column_text][/vc_column_inner][vc_column_inner width=\"3/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 07:55:54", "2014-08-05 07:55:54", "", "16", "http://techno-sites.com/scotts/?p=1062", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1061", "1", "2014-08-05 07:54:44", "2014-08-05 07:54:44", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"][mk_font_icons icon=\"icon-facebook-sign\" color=\"#3c599f\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"][mk_font_icons icon=\"icon-facebook-sign\" color=\"#3c599f\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"]\r\n\r\n[mk_font_icons icon=\"icon-facebook-sign\" color=\"#3c599f\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"][mk_font_icons icon=\"icon-facebook-sign\" color=\"#3c599f\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"][/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_font_icons icon=\"icon-facebook-sign\" color=\"#3c599f\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 07:54:44", "2014-08-05 07:54:44", "", "16", "http://techno-sites.com/scotts/?p=1061", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1065", "1", "2014-08-05 08:05:42", "2014-08-05 08:05:42", "", "test", "", "inherit", "open", "open", "", "test-3", "", "", "2014-08-05 08:05:42", "2014-08-05 08:05:42", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/test1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1063", "1", "2014-08-05 08:00:58", "2014-08-05 08:00:58", "", "test", "", "inherit", "open", "open", "", "test-2", "", "", "2014-08-05 08:00:58", "2014-08-05 08:00:58", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/test.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1074", "1", "2014-08-05 09:34:01", "2014-08-05 09:34:01", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 09:34:01", "2014-08-05 09:34:01", "", "16", "http://techno-sites.com/scotts/?p=1074", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1064", "1", "2014-08-05 08:01:48", "2014-08-05 08:01:48", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"][mk_font_icons icon=\"icon-facebook-sign\" color=\"#3c599f\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"][mk_font_icons icon=\"icon-twitter-sign\" color=\"#28A9E0\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"]\r\n\r\n[mk_font_icons icon=\"moon-mail\" color=\"#BFBFBF\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"][mk_font_icons icon=\"icon-pinterest-sign\" color=\"#CB2028\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" link=\"#\" target=\"_self\"][/vc_column_text][/vc_column_inner][vc_column_inner width=\"3/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_font_icons icon=\"moon-mail\" size=\"small\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 08:01:48", "2014-08-05 08:01:48", "", "16", "http://techno-sites.com/scotts/?p=1064", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1066", "1", "2014-08-05 08:09:20", "2014-08-05 08:09:20", "", "test2", "", "inherit", "open", "open", "", "test2", "", "", "2014-08-05 08:09:20", "2014-08-05 08:09:20", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/test2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1067", "1", "2014-08-05 08:14:37", "2014-08-05 08:14:37", "", "ar1", "", "inherit", "open", "open", "", "ar1", "", "", "2014-08-05 08:14:37", "2014-08-05 08:14:37", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/ar1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1068", "1", "2014-08-05 08:14:44", "2014-08-05 08:14:44", "", "ar2", "", "inherit", "open", "open", "", "ar2", "", "", "2014-08-05 08:14:44", "2014-08-05 08:14:44", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/ar2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1069", "1", "2014-08-05 08:14:58", "2014-08-05 08:14:58", "", "ar3", "", "inherit", "open", "open", "", "ar3", "", "", "2014-08-05 08:14:58", "2014-08-05 08:14:58", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/ar3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1070", "1", "2014-08-05 08:15:30", "2014-08-05 08:15:30", "", "ar4", "", "inherit", "open", "open", "", "ar4", "", "", "2014-08-05 08:15:30", "2014-08-05 08:15:30", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/ar4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1071", "1", "2014-08-05 08:15:41", "2014-08-05 08:15:41", "", "ar5", "", "inherit", "open", "open", "", "ar5", "", "", "2014-08-05 08:15:41", "2014-08-05 08:15:41", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/ar5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1072", "1", "2014-08-05 08:15:45", "2014-08-05 08:15:45", "", "ar6", "", "inherit", "open", "open", "", "ar6", "", "", "2014-08-05 08:15:45", "2014-08-05 08:15:45", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/ar6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1073", "1", "2014-08-05 08:15:52", "2014-08-05 08:15:52", "", "ar7", "", "inherit", "open", "open", "", "ar7", "", "", "2014-08-05 08:15:52", "2014-08-05 08:15:52", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/ar7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1075", "1", "2014-08-05 09:36:50", "2014-08-05 09:36:50", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 09:36:50", "2014-08-05 09:36:50", "", "16", "http://techno-sites.com/scotts/?p=1075", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1077", "1", "2014-08-05 09:41:41", "2014-08-05 09:41:41", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"20\" margin_bottom=\"20\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"20\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 09:41:41", "2014-08-05 09:41:41", "", "16", "http://techno-sites.com/scotts/?p=1077", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1078", "1", "2014-08-05 09:48:11", "2014-08-05 09:48:11", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 09:48:11", "2014-08-05 09:48:11", "", "16", "http://techno-sites.com/scotts/?p=1078", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1079", "1", "2014-08-05 09:48:53", "2014-08-05 09:48:53", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 09:48:53", "2014-08-05 09:48:53", "", "16", "http://techno-sites.com/scotts/?p=1079", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1080", "1", "2014-08-05 09:51:24", "2014-08-05 09:51:24", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"14\" margin_bottom=\"5\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][mk_padding_divider size=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 09:51:24", "2014-08-05 09:51:24", "", "16", "http://techno-sites.com/scotts/?p=1080", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1081", "1", "2014-08-05 09:52:17", "2014-08-05 09:52:17", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"14\" margin_bottom=\"5\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 09:52:17", "2014-08-05 09:52:17", "", "16", "http://techno-sites.com/scotts/?p=1081", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1082", "1", "2014-08-05 09:53:37", "2014-08-05 09:53:37", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"14\" margin_bottom=\"5\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"none\" align=\"center\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"20\" margin_bottom=\"0\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 09:53:37", "2014-08-05 09:53:37", "", "16", "http://techno-sites.com/scotts/?p=1082", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1104", "1", "2014-08-06 07:25:22", "2014-08-06 07:25:22", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p1.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p3.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p2.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p4.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"14\" margin_bottom=\"5\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"true\" color=\"#ffffff\" size=\"31\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"Copse\" align=\"center\" font_type=\"google\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"20\" margin_bottom=\"0\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-06 07:25:22", "2014-08-06 07:25:22", "", "16", "http://techno-sites.com/scotts/?p=1104", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1083", "1", "2014-08-05 10:00:06", "2014-08-05 10:00:06", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"14\" margin_bottom=\"5\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"Italiana\" align=\"center\" txt_transform=\"capitalize\" font_type=\"google\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"20\" margin_bottom=\"0\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 10:00:06", "2014-08-05 10:00:06", "", "16", "http://techno-sites.com/scotts/?p=1083", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1084", "1", "2014-08-05 11:39:24", "2014-08-05 11:39:24", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/shop.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/dine.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/relax.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/services.jpg\" image_width=\"350\" image_height=\"209\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"14\" margin_bottom=\"5\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"Courier New, Courier, monospace\" align=\"center\" txt_transform=\"capitalize\" font_type=\"safefont\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"20\" margin_bottom=\"0\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-05 11:39:24", "2014-08-05 11:39:24", "", "16", "http://techno-sites.com/scotts/?p=1084", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1085", "1", "2014-08-05 11:45:56", "2014-08-05 11:45:56", "", "Contact Us", "", "publish", "open", "open", "", "1085", "", "", "2014-08-06 07:41:22", "2014-08-06 07:41:22", "", "0", "http://techno-sites.com/scotts/?p=1085", "40", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1087", "1", "2014-08-05 11:55:46", "2014-08-05 11:55:46", "[vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d3325.539795248427!2d-111.92605953332553!3d33.53934888140348!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!1i0!3e6!4m0!4m5!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!3m2!1d33.5393489!2d-111.9239084!5e0!3m2!1sen!2sus!4v1407200074427\" width=\"1200\" height=\"300\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][mk_contact_info phone=\"(480) 998-4774\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">Get Driving Directions</a>[/vc_column_text][/vc_column][vc_column width=\"2/3\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d3325.539794532936!2d-111.92390840000002!3d33.53934889999999!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!5e0!3m2!1sen!2s!4v1406968588075\" width=\"400\" height=\"450\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row]", "Directions", "", "inherit", "open", "open", "", "328-revision-v1", "", "", "2014-08-05 11:55:46", "2014-08-05 11:55:46", "", "328", "http://techno-sites.com/scotts/?p=1087", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1088", "1", "2014-08-05 12:16:36", "2014-08-05 12:16:36", "[vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d3325.539795248427!2d-111.92605953332553!3d33.53934888140348!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!1i0!3e6!4m0!4m5!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!3m2!1d33.5393489!2d-111.9239084!5e0!3m2!1sen!2sus!4v1407200074427\" width=\"1200\" height=\"300\" frameborder=\"0\"></iframe>[/vc_column_text][mk_padding_divider size=\"30\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"setpadding\"][vc_column width=\"1/3\"][mk_contact_info phone=\"(480) 998-4774\" address=\"7001 N. Scottsdale Rd. Scottsdale, AZ 85253\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<a title=\"Directions\" href=\"http://maps.google.com/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;cid=0,0,64637975772581200&amp;fb=1&amp;hq=scottsdale+seville&amp;gl=us&amp;daddr=7001+North+Scottsdale+Road,+Scottsdale,+AZ+85253-3658&amp;geocode=0,33.539427,-111.924548&amp;sa=X&amp;ei=3BLATrfKILTSiAKbwtTHDg&amp;ved=0CBsQngIwAA\" target=\"_blank\">Get Driving Directions</a>[/vc_column_text][/vc_column][vc_column width=\"2/3\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d3325.539794532936!2d-111.92390840000002!3d33.53934889999999!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!5e0!3m2!1sen!2s!4v1406968588075\" width=\"400\" height=\"450\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][/vc_row]", "Directions", "", "inherit", "open", "open", "", "328-revision-v1", "", "", "2014-08-05 12:16:36", "2014-08-05 12:16:36", "", "328", "http://techno-sites.com/scotts/?p=1088", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1089", "1", "2014-08-05 12:32:07", "2014-08-05 12:32:07", "[vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d3325.539795248427!2d-111.92605953332553!3d33.53934888140348!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!1i0!3e6!4m0!4m5!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!3m2!1d33.5393489!2d-111.9239084!5e0!3m2!1sen!2sus!4v1407200074427\" width=\"1200\" height=\"300\" frameborder=\"0\"></iframe>[/vc_column_text][mk_padding_divider size=\"30\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"setpadding\"][vc_column width=\"1/3\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#b90e00\" size=\"22\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]Our Office[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]2125 S Priest , Suite 302\r\n\r\nTempe, AZ 85282\r\n\r\nEmail : info@SuntracSolar.com\r\n\r\nOffice : 1+ (480) 999-6091\r\n\r\nFax : 1+ (480) 999-6064[/vc_column_text][mk_font_icons icon=\"moon-twitter-3\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-facebook-4\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-google-plus-4\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"icon-instagram\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-stumbleupon-2\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-pinterest\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][/vc_column][vc_column width=\"2/3\"][mk_contact_form style=\"classic\" skin=\"dark\" phone=\"false\"][/vc_column][/vc_row]", "Directions", "", "inherit", "open", "open", "", "328-revision-v1", "", "", "2014-08-05 12:32:07", "2014-08-05 12:32:07", "", "328", "http://techno-sites.com/scotts/?p=1089", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1090", "1", "2014-08-05 12:33:34", "2014-08-05 12:33:34", "[vc_row][vc_column width=\"1/1\"][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m24!1m12!1m3!1d3325.539795248427!2d-111.92605953332553!3d33.53934888140348!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!4m9!1i0!3e6!4m0!4m5!1s0x872b0b3c4a4b682f%3A0xa12421dc74cca65a!2s7001+N+Scottsdale+Rd%2C+Scottsdale%2C+AZ+85253!3m2!1d33.5393489!2d-111.9239084!5e0!3m2!1sen!2sus!4v1407200074427\" width=\"1200\" height=\"300\" frameborder=\"0\"></iframe>[/vc_column_text][mk_padding_divider size=\"30\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\" el_class=\"setpadding\"][vc_column width=\"1/3\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#b90e00\" size=\"22\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]Our Office[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"left\" margin_bottom=\"0\"]2125 S Priest , Suite 302\r\nTempe, AZ 85282\r\nEmail : info@SuntracSolar.com\r\nOffice : 1+ (480) 999-6091\r\nFax : 1+ (480) 999-6064[/vc_column_text][mk_font_icons icon=\"moon-twitter-3\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-facebook-4\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-google-plus-4\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"icon-instagram\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-stumbleupon-2\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][mk_font_icons icon=\"moon-pinterest\" color=\"#000000\" size=\"medium\" padding_horizental=\"4\" padding_vertical=\"4\" circle=\"false\" align=\"none\" target=\"_self\"][/vc_column][vc_column width=\"2/3\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#b90e00\" size=\"22\" font_weight=\"normal\" txt_transform=\"capitalize\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"18\" font_family=\"none\" align=\"left\"]Contact Us[/mk_fancy_title][mk_contact_form style=\"classic\" skin=\"dark\" phone=\"false\"][/vc_column][/vc_row]", "Directions", "", "inherit", "open", "open", "", "328-revision-v1", "", "", "2014-08-05 12:33:34", "2014-08-05 12:33:34", "", "328", "http://techno-sites.com/scotts/?p=1090", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1091", "1", "2014-08-06 06:34:51", "2014-08-06 06:34:51", "", "title", "", "inherit", "open", "open", "", "title-3", "", "", "2014-08-06 06:34:51", "2014-08-06 06:34:51", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/title2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1092", "1", "2014-08-06 06:45:54", "2014-08-06 06:45:54", "", "p1", "", "inherit", "open", "open", "", "p1", "", "", "2014-08-06 06:45:54", "2014-08-06 06:45:54", "", "16", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/p1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1093", "1", "2014-08-06 06:46:56", "2014-08-06 06:46:56", "", "p3", "", "inherit", "open", "open", "", "p3", "", "", "2014-08-06 06:46:56", "2014-08-06 06:46:56", "", "16", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/p3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1094", "1", "2014-08-06 06:47:47", "2014-08-06 06:47:47", "", "p2", "", "inherit", "open", "open", "", "p2", "", "", "2014-08-06 06:47:47", "2014-08-06 06:47:47", "", "16", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/p2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1095", "1", "2014-08-06 06:48:40", "2014-08-06 06:48:40", "", "p4", "", "inherit", "open", "open", "", "p4", "", "", "2014-08-06 06:48:40", "2014-08-06 06:48:40", "", "16", "http://techno-sites.com/scotts/wp-content/uploads/2011/11/p4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1096", "1", "2014-08-06 06:49:46", "2014-08-06 06:49:46", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p1.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p3.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p2.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p4.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"14\" margin_bottom=\"5\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"Courier New, Courier, monospace\" align=\"center\" txt_transform=\"capitalize\" font_type=\"safefont\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"20\" margin_bottom=\"0\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-06 06:49:46", "2014-08-06 06:49:46", "", "16", "http://techno-sites.com/scotts/?p=1096", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1097", "1", "2014-08-06 06:54:09", "2014-08-06 06:54:09", "", "bottom2", "", "inherit", "open", "open", "", "bottom2", "", "", "2014-08-06 06:54:09", "2014-08-06 06:54:09", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/bottom2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1098", "1", "2014-08-06 06:54:12", "2014-08-06 06:54:12", "", "estyle", "", "inherit", "open", "open", "", "estyle", "", "", "2014-08-06 06:54:12", "2014-08-06 06:54:12", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/estyle.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1100", "1", "2014-08-06 07:00:29", "2014-08-06 07:00:29", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p1.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p3.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p2.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p4.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"14\" margin_bottom=\"5\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"31\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"Chivo\" align=\"center\" txt_transform=\"capitalize\" font_type=\"google\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"20\" margin_bottom=\"0\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-06 07:00:29", "2014-08-06 07:00:29", "", "16", "http://techno-sites.com/scotts/?p=1100", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1099", "1", "2014-08-06 06:54:44", "2014-08-06 06:54:44", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p1.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p3.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p2.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p4.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"14\" margin_bottom=\"5\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"22\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"Courier New, Courier, monospace\" align=\"center\" txt_transform=\"capitalize\" font_type=\"safefont\"]\r\n<h3>Scottsdale Seville Shopping Center</h3>\r\n[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"20\" margin_bottom=\"0\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-06 06:54:44", "2014-08-06 06:54:44", "", "16", "http://techno-sites.com/scotts/?p=1099", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1103", "1", "2014-08-06 07:19:49", "0000-00-00 00:00:00", "[vc_row][vc_column width=\"1/1\"][mk_image image_width=\"800\" image_height=\"350\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"left\" margin_bottom=\"10\"][/vc_column][/vc_row]", "", "", "draft", "open", "open", "", "", "", "", "2014-08-06 07:19:49", "2014-08-06 07:19:49", "", "0", "http://techno-sites.com/scotts/?page_id=1103", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1105", "1", "2014-08-06 07:26:59", "2014-08-06 07:26:59", "[vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#106b93\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Shop[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p1.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#c3281a\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Dine[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p3.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#3e4ec7\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Relax[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p2.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][vc_column_inner width=\"1/4\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#1e8017\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"14\" font_family=\"none\" align=\"center\"]Services[/mk_fancy_title][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"0\" margin_bottom=\"10\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2011/11/p4.jpg\" image_width=\"204\" image_height=\"131\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column_inner][/vc_row_inner][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"14\" margin_bottom=\"5\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"true\" padding=\"12\" el_class=\"parallax-true rowbg\"][vc_column width=\"1/1\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ffffff\" size=\"31\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"0\" margin_bottom=\"20\" font_family=\"Copse\" align=\"center\" font_type=\"google\"]Scottsdale Seville Shopping Center[/mk_fancy_title][vc_column_text disable_pattern=\"true\" align=\"center\" margin_bottom=\"18\"]<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Scottsdale Seville</strong> is a destination that offers only the best in restaurants, bars, boutiques and luxury services.</span>\r\n\r\n<span style=\"color: #ffffff;\">The Scottsdale Seville is located in the beautiful Scottsdale/Paradise Valley corridor boasting views of both the scenic Camelback Mountain and amazing floral colors of the desert .</span>\r\n\r\n<span style=\"color: #ffffff;\"><strong style=\"color: #ffffff;\">Dine</strong> at the quaint bistro\'s or enjoy fine dining at <a title=\"Ruth’s Chris Steakhouse\" href=\"http://www.scottsdaleseville.com/ruths-chris-steakhouse/\"><span style=\"color: #ffffff;\">Ruth\'s Chris Steak House</span></a>. <strong style=\"color: #ffffff;\">Shop</strong> at the many luxurious shops offering everything from fine jewelry and bridal wear to the latest trends in resort wear.  When your shopping urges are satisfied, <strong style=\"color: #ffffff;\">relax</strong> in one of our luxurious spas and salons.  Coffee shops and the cocktail bars are always popular meeting places.  A visit to our <a title=\"21 Cakes\" href=\"http://www.scottsdaleseville.com/21-cakes-cupcakery/\"><span style=\"color: #ffffff;\">specialty cupcake shop</span></a> ends the day perfectly.</span>\r\n\r\n<span style=\"color: #ffffff;\">A family friendly place conveniently located across the street from the <a title=\"McCormick Stillman Railroad Park\" href=\"http://therailroadpark.com/index1.htm\" target=\"_blank\"><span style=\"color: #ffffff;\">McCormick-Stillman Railroad Park</span></a></span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"single_dotted\" divider_width=\"full_width\" border_color=\"#545454\" margin_top=\"10\" margin_bottom=\"20\"][/vc_column][/vc_row][vc_row fullwidth=\"false\" attached=\"false\" padding=\"0\"][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]UPCOMING EVENTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_custom_sidebar sidebar=\"recent events\"][/vc_column][vc_column width=\"1/2\"][mk_font_icons icon=\"moon-calendar-2\" color=\"#ffffff\" size=\"medium\" padding_horizental=\"8\" padding_vertical=\"8\" circle=\"true\" circle_color=\"#ed1c24\" align=\"left\" target=\"_self\"][mk_fancy_title tag_name=\"h2\" style=\"false\" color=\"#ed1c24\" size=\"20\" font_weight=\"normal\" letter_spacing=\"0\" margin_top=\"16\" margin_bottom=\"20\" font_family=\"none\" align=\"left\"]NEWEST TENANTS[/mk_fancy_title][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"2\" margin_bottom=\"20\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/03/Burger21.png\" image_width=\"300\" image_height=\"113\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][mk_padding_divider size=\"30\"][mk_image src=\"http://techno-sites.com/scotts/wp-content/uploads/2014/05/logo_mail.jpg\" image_width=\"300\" image_height=\"67\" crop=\"true\" lightbox=\"false\" frame_style=\"simple\" target=\"_self\" caption_location=\"inside-image\" align=\"center\" margin_bottom=\"10\" animation=\"scale-up\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][mk_divider style=\"thin_solid\" divider_width=\"full_width\" border_color=\"#231f20\" margin_top=\"20\" margin_bottom=\"0\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "16-revision-v1", "", "", "2014-08-06 07:26:59", "2014-08-06 07:26:59", "", "16", "http://techno-sites.com/scotts/?p=1105", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1106", "1", "2014-08-06 07:31:07", "2014-08-06 07:31:07", "", "im1", "", "inherit", "open", "open", "", "im1", "", "", "2014-08-06 07:31:07", "2014-08-06 07:31:07", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/im1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1107", "1", "2014-08-06 07:31:14", "2014-08-06 07:31:14", "", "im2", "", "inherit", "open", "open", "", "im2", "", "", "2014-08-06 07:31:14", "2014-08-06 07:31:14", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/im2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1108", "1", "2014-08-06 07:31:18", "2014-08-06 07:31:18", "", "im3", "", "inherit", "open", "open", "", "im3", "", "", "2014-08-06 07:31:18", "2014-08-06 07:31:18", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/im3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1109", "1", "2014-08-06 07:31:24", "2014-08-06 07:31:24", "", "im4", "", "inherit", "open", "open", "", "im4", "", "", "2014-08-06 07:31:24", "2014-08-06 07:31:24", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/im4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1110", "1", "2014-08-06 07:31:31", "2014-08-06 07:31:31", "", "im5", "", "inherit", "open", "open", "", "im5", "", "", "2014-08-06 07:31:31", "2014-08-06 07:31:31", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/im5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1111", "1", "2014-08-06 07:31:42", "2014-08-06 07:31:42", "", "im6", "", "inherit", "open", "open", "", "im6", "", "", "2014-08-06 07:31:42", "2014-08-06 07:31:42", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/im6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1112", "1", "2014-08-06 07:31:46", "2014-08-06 07:31:46", "", "im7", "", "inherit", "open", "open", "", "im7", "", "", "2014-08-06 07:31:46", "2014-08-06 07:31:46", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/im7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1113", "1", "2014-08-06 07:38:57", "2014-08-06 07:38:57", "<p>Your Name (required)<br />\r\n    [text* your-name] </p>\r\n\r\n<p>Your Email (required)<br />\r\n    [email* your-email] </p>\r\n\r\n<p>[submit \"Sign Up\"]</p>\nNew Enquiry\n[your-name] <[your-email]>\nFrom: [your-name] <[your-email]>\r\nSubject: New Enquiry\r\n\r\nMessage Body:\r\n[your-name] has generated Enquiry.\r\n\r\n--\r\nThis e-mail was sent from a contact form on techno-sites.com (http://techno-sites.com/scotts)\ntechnosites@live.com\n\n\n\n\n\n[your-subject]\n[your-name] <[your-email]>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on techno-sites.com (http://techno-sites.com/scotts)\n[your-email]\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill the required field.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.", "Sign Up", "", "publish", "open", "open", "", "sign-up", "", "", "2014-08-06 07:40:04", "2014-08-06 07:40:04", "", "0", "http://techno-sites.com/scotts/?post_type=wpcf7_contact_form&#038;p=1113", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("1115", "1", "2014-08-06 12:07:43", "2014-08-06 12:07:43", "", "a2", "", "inherit", "open", "open", "", "a2", "", "", "2014-08-06 12:07:43", "2014-08-06 12:07:43", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/a2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1116", "1", "2014-08-06 12:07:49", "2014-08-06 12:07:49", "", "a3", "", "inherit", "open", "open", "", "a3", "", "", "2014-08-06 12:07:49", "2014-08-06 12:07:49", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/a3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1117", "1", "2014-08-06 12:07:54", "2014-08-06 12:07:54", "", "a4", "", "inherit", "open", "open", "", "a4", "", "", "2014-08-06 12:07:54", "2014-08-06 12:07:54", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/a4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1118", "1", "2014-08-06 12:07:58", "2014-08-06 12:07:58", "", "a5", "", "inherit", "open", "open", "", "a5", "", "", "2014-08-06 12:07:58", "2014-08-06 12:07:58", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/a5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1119", "1", "2014-08-06 12:08:02", "2014-08-06 12:08:02", "", "a6", "", "inherit", "open", "open", "", "a6", "", "", "2014-08-06 12:08:02", "2014-08-06 12:08:02", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/a6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1120", "1", "2014-08-06 12:08:08", "2014-08-06 12:08:08", "", "a7", "", "inherit", "open", "open", "", "a7", "", "", "2014-08-06 12:08:08", "2014-08-06 12:08:08", "", "0", "http://techno-sites.com/scotts/wp-content/uploads/2014/08/a7.jpg", "0", "attachment", "image/jpeg", "0");

/* INSERT TABLE DATA: wp_revslider_css */
INSERT INTO `wp_revslider_css` VALUES("1", ".tp-caption.medium_grey", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("2", ".tp-caption.small_text", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("3", ".tp-caption.medium_text", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("4", ".tp-caption.large_text", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("5", ".tp-caption.very_large_text", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}");
INSERT INTO `wp_revslider_css` VALUES("6", ".tp-caption.very_big_white", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}");
INSERT INTO `wp_revslider_css` VALUES("7", ".tp-caption.very_big_black", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}");
INSERT INTO `wp_revslider_css` VALUES("8", ".tp-caption.modern_medium_fat", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("9", ".tp-caption.modern_medium_fat_white", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("10", ".tp-caption.modern_medium_light", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("11", ".tp-caption.modern_big_bluebg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}");
INSERT INTO `wp_revslider_css` VALUES("12", ".tp-caption.modern_big_redbg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}");
INSERT INTO `wp_revslider_css` VALUES("13", ".tp-caption.modern_small_text_dark", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("14", ".tp-caption.boxshadow", NULL, NULL, "{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}");
INSERT INTO `wp_revslider_css` VALUES("15", ".tp-caption.black", NULL, NULL, "{\"color\":\"#000\",\"text-shadow\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("16", ".tp-caption.noshadow", NULL, NULL, "{\"text-shadow\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("17", ".tp-caption.thinheadline_dark", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}");
INSERT INTO `wp_revslider_css` VALUES("18", ".tp-caption.thintext_dark", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}");
INSERT INTO `wp_revslider_css` VALUES("19", ".tp-caption.largeblackbg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}");
INSERT INTO `wp_revslider_css` VALUES("20", ".tp-caption.largepinkbg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}");
INSERT INTO `wp_revslider_css` VALUES("21", ".tp-caption.largewhitebg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}");
INSERT INTO `wp_revslider_css` VALUES("22", ".tp-caption.largegreenbg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}");
INSERT INTO `wp_revslider_css` VALUES("23", ".tp-caption.excerpt", NULL, NULL, "{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("24", ".tp-caption.large_bold_grey", NULL, NULL, "{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("25", ".tp-caption.medium_thin_grey", NULL, NULL, "{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("26", ".tp-caption.small_thin_grey", NULL, NULL, "{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("27", ".tp-caption.lightgrey_divider", NULL, NULL, "{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("28", ".tp-caption.large_bold_darkblue", NULL, NULL, "{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("29", ".tp-caption.medium_bg_darkblue", NULL, NULL, "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("30", ".tp-caption.medium_bold_red", NULL, NULL, "{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("31", ".tp-caption.medium_light_red", NULL, NULL, "{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("32", ".tp-caption.medium_bg_red", NULL, NULL, "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("33", ".tp-caption.medium_bold_orange", NULL, NULL, "{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("34", ".tp-caption.medium_bg_orange", NULL, NULL, "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("35", ".tp-caption.grassfloor", NULL, NULL, "{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("36", ".tp-caption.large_bold_white", NULL, NULL, "{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("37", ".tp-caption.medium_light_white", NULL, NULL, "{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("38", ".tp-caption.mediumlarge_light_white", NULL, NULL, "{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("39", ".tp-caption.mediumlarge_light_white_center", NULL, NULL, "{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("40", ".tp-caption.medium_bg_asbestos", NULL, NULL, "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("41", ".tp-caption.medium_light_black", NULL, NULL, "{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("42", ".tp-caption.large_bold_black", NULL, NULL, "{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("43", ".tp-caption.mediumlarge_light_darkblue", NULL, NULL, "{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("44", ".tp-caption.small_light_white", NULL, NULL, "{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("45", ".tp-caption.roundedimage", NULL, NULL, "{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("46", ".tp-caption.large_bg_black", NULL, NULL, "{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("47", ".tp-caption.mediumwhitebg", NULL, NULL, "{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}");

/* INSERT TABLE DATA: wp_revslider_sliders */
INSERT INTO `wp_revslider_sliders` VALUES("1", "home", "home", "{\"title\":\"home\",\"alias\":\"home\",\"shortcode\":\"[rev_slider home]\",\"source_type\":\"gallery\",\"post_types\":\"post\",\"post_category\":\"category_1\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"slider_template_id\":\"\",\"posts_list\":\"\",\"slider_type\":\"fullwidth\",\"fullscreen_offset_container\":\"\",\"fullscreen_min_height\":\"\",\"full_screen_align_force\":\"off\",\"auto_height\":\"off\",\"force_full_width\":\"off\",\"width\":\"1350\",\"height\":\"387\",\"responsitive_w1\":\"940\",\"responsitive_sw1\":\"770\",\"responsitive_w2\":\"780\",\"responsitive_sw2\":\"500\",\"responsitive_w3\":\"510\",\"responsitive_sw3\":\"310\",\"responsitive_w4\":\"0\",\"responsitive_sw4\":\"0\",\"responsitive_w5\":\"0\",\"responsitive_sw5\":\"0\",\"responsitive_w6\":\"0\",\"responsitive_sw6\":\"0\",\"delay\":\"4000\",\"shuffle\":\"off\",\"lazy_load\":\"off\",\"use_wpml\":\"off\",\"stop_slider\":\"off\",\"stop_after_loops\":0,\"stop_at_slide\":2,\"load_googlefont\":\"false\",\"google_font\":[\"<link href=\\\\\'http:\\/\\/fonts.googleapis.com\\/css?family=PT+Sans+Narrow:400,700\\\\\' rel=\\\\\'stylesheet\\\\\' type=\\\\\'text\\/css\\\\\'>\"],\"position\":\"center\",\"margin_top\":0,\"margin_bottom\":0,\"margin_left\":0,\"margin_right\":0,\"shadow_type\":\"3\",\"show_timerbar\":\"hide\",\"padding\":0,\"background_color\":\"#E9E9E9\",\"background_dotted_overlay\":\"none\",\"show_background_image\":\"false\",\"background_image\":\"\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"use_spinner\":\"0\",\"spinner_color\":\"#FFFFFF\",\"stop_on_hover\":\"on\",\"keyboard_navigation\":\"off\",\"navigaion_type\":\"bullet\",\"navigation_arrows\":\"solo\",\"navigation_style\":\"round\",\"navigaion_always_on\":\"false\",\"hide_thumbs\":200,\"navigaion_align_hor\":\"center\",\"navigaion_align_vert\":\"bottom\",\"navigaion_offset_hor\":\"0\",\"navigaion_offset_vert\":20,\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":20,\"leftarrow_offset_vert\":0,\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":20,\"rightarrow_offset_vert\":0,\"thumb_width\":100,\"thumb_height\":50,\"thumb_amount\":5,\"touchenabled\":\"on\",\"swipe_velocity\":0.7,\"swipe_min_touches\":1,\"swipe_max_touches\":1,\"drag_block_vertical\":\"false\",\"hide_slider_under\":0,\"hide_defined_layers_under\":0,\"hide_all_layers_under\":0,\"hide_thumbs_under_resolution\":0,\"hide_thumbs_delay_mobile\":1500,\"loop_slide\":\"loop\",\"start_with_slide\":\"1\",\"first_transition_type\":\"fade\",\"first_transition_duration\":300,\"first_transition_slot_amount\":7,\"reset_transitions\":\"\",\"reset_transition_duration\":0,\"0\":\"Execute settings on all slides\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"template\":\"false\"}");

/* INSERT TABLE DATA: wp_revslider_slides */
INSERT INTO `wp_revslider_slides` VALUES("5", "1", "2", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/techno-sites.com\\/scotts\\/wp-content\\/uploads\\/2014\\/08\\/a2.jpg\",\"image_id\":\"1115\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"0\":\"Remove\"}", "[]");
INSERT INTO `wp_revslider_slides` VALUES("6", "1", "1", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/techno-sites.com\\/scotts\\/wp-content\\/uploads\\/2014\\/08\\/a1.jpg\",\"image_id\":\"1114\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"0\":\"Remove\"}", "[]");
INSERT INTO `wp_revslider_slides` VALUES("7", "1", "3", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/techno-sites.com\\/scotts\\/wp-content\\/uploads\\/2014\\/08\\/a3.jpg\",\"image_id\":\"1116\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"0\":\"Remove\"}", "[]");
INSERT INTO `wp_revslider_slides` VALUES("8", "1", "4", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/techno-sites.com\\/scotts\\/wp-content\\/uploads\\/2014\\/08\\/a4.jpg\",\"image_id\":\"1117\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"0\":\"Remove\"}", "[]");
INSERT INTO `wp_revslider_slides` VALUES("9", "1", "5", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/techno-sites.com\\/scotts\\/wp-content\\/uploads\\/2014\\/08\\/a5.jpg\",\"image_id\":\"1118\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"0\":\"Remove\"}", "[]");
INSERT INTO `wp_revslider_slides` VALUES("10", "1", "6", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/techno-sites.com\\/scotts\\/wp-content\\/uploads\\/2014\\/08\\/a6.jpg\",\"image_id\":\"1119\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"0\":\"Remove\"}", "[]");
INSERT INTO `wp_revslider_slides` VALUES("11", "1", "7", "{\"background_type\":\"image\",\"image\":\"http:\\/\\/techno-sites.com\\/scotts\\/wp-content\\/uploads\\/2014\\/08\\/a7.jpg\",\"image_id\":\"1120\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"0\":\"Remove\"}", "[]");

/* INSERT TABLE DATA: wp_rg_form */
INSERT INTO `wp_rg_form` VALUES("1", "Sign Up", "2014-08-06 07:10:47", "1");

/* INSERT TABLE DATA: wp_rg_form_meta */
INSERT INTO `wp_rg_form_meta` VALUES("1", "a:36:{s:5:\"title\";s:7:\"Sign Up\";s:11:\"description\";s:0:\"\";s:14:\"labelPlacement\";s:9:\"top_label\";s:20:\"descriptionPlacement\";s:5:\"below\";s:6:\"button\";a:3:{s:4:\"type\";s:4:\"text\";s:4:\"text\";s:7:\"Sign Up\";s:8:\"imageUrl\";s:0:\"\";}s:6:\"fields\";a:2:{i:0;a:19:{s:2:\"id\";i:1;s:5:\"label\";s:4:\"Name\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:20:\"displayAllCategories\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:6:\"formId\";i:1;s:10:\"pageNumber\";i:1;s:20:\"descriptionPlacement\";s:5:\"below\";}i:1;a:20:{s:2:\"id\";i:2;s:5:\"label\";s:5:\"Email\";s:10:\"adminLabel\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:10:\"isRequired\";b:1;s:4:\"size\";s:6:\"medium\";s:12:\"errorMessage\";s:0:\"\";s:6:\"inputs\";N;s:18:\"calculationFormula\";s:0:\"\";s:19:\"calculationRounding\";s:0:\"\";s:17:\"enableCalculation\";s:0:\"\";s:15:\"disableQuantity\";b:0;s:20:\"displayAllCategories\";b:0;s:9:\"inputMask\";b:0;s:14:\"inputMaskValue\";s:0:\"\";s:17:\"allowsPrepopulate\";b:0;s:12:\"noDuplicates\";b:1;s:6:\"formId\";i:1;s:10:\"pageNumber\";i:1;s:20:\"descriptionPlacement\";s:5:\"below\";}}s:2:\"id\";i:1;s:22:\"useCurrentUserAsAuthor\";b:1;s:26:\"postContentTemplateEnabled\";b:0;s:24:\"postTitleTemplateEnabled\";b:0;s:17:\"postTitleTemplate\";s:0:\"\";s:19:\"postContentTemplate\";s:0:\"\";s:14:\"lastPageButton\";N;s:10:\"pagination\";N;s:17:\"firstPageCssClass\";N;s:13:\"notifications\";a:1:{s:13:\"53e1d4f7ae441\";a:7:{s:2:\"id\";s:13:\"53e1d4f7ae441\";s:2:\"to\";s:13:\"{admin_email}\";s:4:\"name\";s:18:\"Admin Notification\";s:5:\"event\";s:15:\"form_submission\";s:6:\"toType\";s:5:\"email\";s:7:\"subject\";s:32:\"New submission from {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";}}s:13:\"confirmations\";a:1:{s:13:\"53e1d4f7b514d\";a:8:{s:2:\"id\";s:13:\"53e1d4f7b514d\";s:4:\"name\";s:20:\"Default Confirmation\";s:9:\"isDefault\";b:1;s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";s:0:\"\";s:11:\"queryString\";s:0:\"\";}}s:8:\"cssClass\";s:0:\"\";s:14:\"enableHoneypot\";s:0:\"\";s:15:\"enableAnimation\";s:0:\"\";s:12:\"limitEntries\";s:0:\"\";s:17:\"limitEntriesCount\";s:0:\"\";s:18:\"limitEntriesPeriod\";s:0:\"\";s:19:\"limitEntriesMessage\";s:0:\"\";s:12:\"scheduleForm\";s:0:\"\";s:13:\"scheduleStart\";s:0:\"\";s:17:\"scheduleStartHour\";s:0:\"\";s:19:\"scheduleStartMinute\";s:0:\"\";s:17:\"scheduleStartAmpm\";s:0:\"\";s:11:\"scheduleEnd\";s:0:\"\";s:15:\"scheduleEndHour\";s:0:\"\";s:17:\"scheduleEndMinute\";s:0:\"\";s:15:\"scheduleEndAmpm\";s:0:\"\";s:15:\"scheduleMessage\";s:0:\"\";s:12:\"requireLogin\";s:0:\"\";s:19:\"requireLoginMessage\";s:0:\"\";}", "", "a:1:{s:13:\"53e1d4f7b514d\";a:8:{s:2:\"id\";s:13:\"53e1d4f7b514d\";s:4:\"name\";s:20:\"Default Confirmation\";s:9:\"isDefault\";b:1;s:4:\"type\";s:7:\"message\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:3:\"url\";s:0:\"\";s:6:\"pageId\";s:0:\"\";s:11:\"queryString\";s:0:\"\";}}", "a:1:{s:13:\"53e1d4f7ae441\";a:7:{s:2:\"id\";s:13:\"53e1d4f7ae441\";s:2:\"to\";s:13:\"{admin_email}\";s:4:\"name\";s:18:\"Admin Notification\";s:5:\"event\";s:15:\"form_submission\";s:6:\"toType\";s:5:\"email\";s:7:\"subject\";s:32:\"New submission from {form_title}\";s:7:\"message\";s:12:\"{all_fields}\";}}");

/* INSERT TABLE DATA: wp_term_relationships */
INSERT INTO `wp_term_relationships` VALUES("1", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("1", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("2", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("3", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("4", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("5", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("6", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("7", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("445", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("460", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("754", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("758", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("802", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("805", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("822", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("839", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("840", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("841", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("842", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("843", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("844", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("845", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("846", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("847", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("848", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("849", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("850", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("851", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("852", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("853", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("854", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("855", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("856", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("857", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("858", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("859", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("860", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("861", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("862", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("863", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("864", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("865", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("866", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("867", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("868", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("869", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("870", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("871", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("872", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("873", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("874", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("875", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("876", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("881", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("972", "9", "0");
INSERT INTO `wp_term_relationships` VALUES("969", "9", "0");
INSERT INTO `wp_term_relationships` VALUES("967", "9", "0");
INSERT INTO `wp_term_relationships` VALUES("965", "9", "0");
INSERT INTO `wp_term_relationships` VALUES("977", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("961", "9", "0");
INSERT INTO `wp_term_relationships` VALUES("892", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("893", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("1085", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("895", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("896", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("974", "9", "0");
INSERT INTO `wp_term_relationships` VALUES("978", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("979", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("980", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("981", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("982", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("983", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("984", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("985", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("986", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("987", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("988", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("989", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("990", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("991", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("992", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("993", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("994", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("995", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("996", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("997", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("998", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("1001", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("1002", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("1003", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("1004", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("1005", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("1006", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("1007", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("1008", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("1009", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("1010", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("1013", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("1011", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("1012", "8", "0");

/* INSERT TABLE DATA: wp_term_taxonomy */
INSERT INTO `wp_term_taxonomy` VALUES("1", "1", "category", "", "0", "9");
INSERT INTO `wp_term_taxonomy` VALUES("2", "2", "link_category", "", "0", "7");
INSERT INTO `wp_term_taxonomy` VALUES("3", "3", "nav_menu", "", "0", "7");
INSERT INTO `wp_term_taxonomy` VALUES("4", "4", "nav_menu", "", "0", "11");
INSERT INTO `wp_term_taxonomy` VALUES("5", "5", "nav_menu", "", "0", "12");
INSERT INTO `wp_term_taxonomy` VALUES("6", "6", "nav_menu", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("7", "7", "nav_menu", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("8", "8", "nav_menu", "", "0", "40");
INSERT INTO `wp_term_taxonomy` VALUES("9", "9", "category", "", "0", "6");

/* INSERT TABLE DATA: wp_terms */
INSERT INTO `wp_terms` VALUES("1", "Uncategorized", "uncategorized", "0");
INSERT INTO `wp_terms` VALUES("2", "Blogroll", "blogroll", "0");
INSERT INTO `wp_terms` VALUES("3", "top navigation", "top-navigation", "0");
INSERT INTO `wp_terms` VALUES("4", "DINE", "dine", "0");
INSERT INTO `wp_terms` VALUES("5", "SHOP", "shop", "0");
INSERT INTO `wp_terms` VALUES("6", "RELAX", "relax", "0");
INSERT INTO `wp_terms` VALUES("7", "SERVICES", "services", "0");
INSERT INTO `wp_terms` VALUES("8", "Main Navigation", "main-navigation", "0");
INSERT INTO `wp_terms` VALUES("9", "events", "events", "0");

/* INSERT TABLE DATA: wp_usermeta */
INSERT INTO `wp_usermeta` VALUES("1", "1", "first_name", "");
INSERT INTO `wp_usermeta` VALUES("2", "1", "last_name", "");
INSERT INTO `wp_usermeta` VALUES("3", "1", "nickname", "admin");
INSERT INTO `wp_usermeta` VALUES("4", "1", "description", "");
INSERT INTO `wp_usermeta` VALUES("5", "1", "rich_editing", "true");
INSERT INTO `wp_usermeta` VALUES("6", "1", "comment_shortcuts", "false");
INSERT INTO `wp_usermeta` VALUES("7", "1", "admin_color", "fresh");
INSERT INTO `wp_usermeta` VALUES("8", "1", "use_ssl", "0");
INSERT INTO `wp_usermeta` VALUES("9", "1", "show_admin_bar_front", "true");
INSERT INTO `wp_usermeta` VALUES("10", "1", "wp_capabilities", "a:1:{s:13:\"administrator\";s:1:\"1\";}");
INSERT INTO `wp_usermeta` VALUES("11", "1", "wp_user_level", "10");
INSERT INTO `wp_usermeta` VALUES("13", "1", "show_welcome_panel", "1");
INSERT INTO `wp_usermeta` VALUES("14", "1", "wp_dashboard_quick_press_last_post_id", "1121");
INSERT INTO `wp_usermeta` VALUES("15", "2", "first_name", "");
INSERT INTO `wp_usermeta` VALUES("16", "2", "last_name", "");
INSERT INTO `wp_usermeta` VALUES("17", "2", "nickname", "dummy");
INSERT INTO `wp_usermeta` VALUES("18", "2", "description", "");
INSERT INTO `wp_usermeta` VALUES("19", "2", "rich_editing", "true");
INSERT INTO `wp_usermeta` VALUES("20", "2", "comment_shortcuts", "false");
INSERT INTO `wp_usermeta` VALUES("21", "2", "admin_color", "fresh");
INSERT INTO `wp_usermeta` VALUES("22", "2", "use_ssl", "0");
INSERT INTO `wp_usermeta` VALUES("23", "2", "show_admin_bar_front", "true");
INSERT INTO `wp_usermeta` VALUES("24", "2", "wp_capabilities", "a:1:{s:10:\"subscriber\";b:1;}");
INSERT INTO `wp_usermeta` VALUES("25", "2", "wp_user_level", "0");
INSERT INTO `wp_usermeta` VALUES("26", "2", "dismissed_wp_pointers", "wp350_media,wp360_revisions,wp360_locks,wp390_widgets");
INSERT INTO `wp_usermeta` VALUES("27", "1", "nav_menu_recently_edited", "8");
INSERT INTO `wp_usermeta` VALUES("28", "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\";}");
INSERT INTO `wp_usermeta` VALUES("29", "1", "metaboxhidden_nav-menus", "a:5:{i:0;s:8:\"add-post\";i:1;s:8:\"add-news\";i:2;s:13:\"add-portfolio\";i:3;s:12:\"add-post_tag\";i:4;s:22:\"add-portfolio_category\";}");
INSERT INTO `wp_usermeta` VALUES("30", "1", "dismissed_wp_pointers", "wp350_media,wp360_revisions,wp390_widgets");
INSERT INTO `wp_usermeta` VALUES("31", "1", "wp_user-settings", "editor=tinymce&libraryContent=browse&imgsize=full&wplink=1&align=center&urlbutton=none&hidetb=1");
INSERT INTO `wp_usermeta` VALUES("32", "1", "wp_user-settings-time", "1407231410");
INSERT INTO `wp_usermeta` VALUES("33", "1", "tgmpa_dismissed_notice", "1");
INSERT INTO `wp_usermeta` VALUES("34", "1", "addthis_nag_username_ignore", "true");

/* INSERT TABLE DATA: wp_users */
INSERT INTO `wp_users` VALUES("1", "admin", "$P$Bi1ezS4HXUjqfsSJEsc/bpcKUb9XaK.", "", "technosites@live.com", "", "2014-08-01 23:59:49", "", "0", "");
INSERT INTO `wp_users` VALUES("2", "dummy", "$P$BhhlyYDG07wkj446Y.wmm9eZXPGjm.0", "dummy", "", "", "2014-08-02 05:33:53", "", "0", "dummy");

SET FOREIGN_KEY_CHECKS = 1;