-- MySQL dump 10.13  Distrib 5.6.35, for Linux (x86_64)
--
-- Host: localhost    Database: punjabyo_wp899
-- ------------------------------------------------------
-- Server version	5.6.35

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_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` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_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`),
  KEY `comment_author_email` (`comment_author_email`(10)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_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 utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=10385 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://punjabyouthclub.com','yes'),(2,'home','http://punjabyouthclub.com','yes'),(3,'blogname','Hacked by SyntaxError','yes'),(4,'blogdescription','Hacked by SyntaxError','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','greatwalsolutions@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','5','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','5','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:7:{i:0;s:19:\"akismet/akismet.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:39:\"easy-theme-and-plugin-upgrades/init.php\";i:3;s:35:\"js_composer_salient/js_composer.php\";i:4;s:27:\"woocommerce/woocommerce.php\";i:5;s:23:\"wordfence/wordfence.php\";i:6;s:41:\"wordpress-importer/wordpress-importer.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(37,'comment_max_links','2','yes'),(38,'gmt_offset','0','yes'),(39,'default_email_category','1','yes'),(40,'recently_edited','a:5:{i:0;s:63:\"/home/punjabyo/public_html/wp-content/themes/salient/footer.php\";i:1;s:60:\"/home/punjabyo/public_html/wp-content/themes/salient/404.php\";i:2;s:62:\"/home/punjabyo/public_html/wp-content/themes/salient/style.css\";i:3;s:68:\"/home/punjabyo/public_html/wp-content/themes/twentyseventeen/404.php\";i:4;s:70:\"/home/punjabyo/public_html/wp-content/themes/twentyseventeen/style.css\";}','no'),(41,'template','salient','yes'),(42,'stylesheet','salient','yes'),(43,'comment_whitelist','1','yes'),(44,'blacklist_keys','','no'),(45,'comment_registration','0','yes'),(46,'html_type','text/html','yes'),(47,'use_trackback','0','yes'),(48,'default_role','subscriber','yes'),(49,'db_version','38590','yes'),(50,'uploads_use_yearmonth_folders','1','yes'),(51,'upload_path','','yes'),(52,'blog_public','1','yes'),(53,'default_link_category','2','yes'),(54,'show_on_front','page','yes'),(55,'tag_base','','yes'),(56,'show_avatars','1','yes'),(57,'avatar_rating','G','yes'),(58,'upload_url_path','','yes'),(59,'thumbnail_size_w','150','yes'),(60,'thumbnail_size_h','150','yes'),(61,'thumbnail_crop','1','yes'),(62,'medium_size_w','300','yes'),(63,'medium_size_h','300','yes'),(64,'avatar_default','mystery','yes'),(65,'large_size_w','1024','yes'),(66,'large_size_h','1024','yes'),(67,'image_default_link_type','file','yes'),(68,'image_default_size','','yes'),(69,'image_default_align','','yes'),(70,'close_comments_for_old_posts','0','yes'),(71,'close_comments_days_old','14','yes'),(72,'thread_comments','1','yes'),(73,'thread_comments_depth','5','yes'),(74,'page_comments','0','yes'),(75,'comments_per_page','50','yes'),(76,'default_comments_page','newest','yes'),(77,'comment_order','asc','yes'),(78,'sticky_posts','a:0:{}','yes'),(79,'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'),(80,'widget_text','a:3:{i:1;a:0:{}i:2;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(81,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(82,'uninstall_plugins','a:0:{}','no'),(83,'timezone_string','','yes'),(84,'page_for_posts','0','yes'),(85,'page_on_front','2744','yes'),(86,'default_post_format','0','yes'),(87,'link_manager_enabled','0','yes'),(88,'initial_db_version','31535','yes'),(89,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:143:{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:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:31:\"vc_access_rules_post_types/post\";b:1;s:31:\"vc_access_rules_post_types/page\";b:1;s:34:\"vc_access_rules_post_types/product\";b:1;s:38:\"vc_access_rules_post_types/home_slider\";b:1;s:36:\"vc_access_rules_post_types/portfolio\";b:1;s:26:\"vc_access_rules_post_types\";s:6:\"custom\";s:30:\"vc_access_rules_backend_editor\";b:1;s:29:\"vc_access_rules_post_settings\";b:1;s:24:\"vc_access_rules_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:23:\"vc_access_rules_presets\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:42:{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:31:\"vc_access_rules_post_types/post\";b:1;s:31:\"vc_access_rules_post_types/page\";b:1;s:26:\"vc_access_rules_post_types\";s:6:\"custom\";s:30:\"vc_access_rules_backend_editor\";b:1;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:23:\"vc_access_rules_presets\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:18:{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:31:\"vc_access_rules_post_types/post\";b:1;s:31:\"vc_access_rules_post_types/page\";b:1;s:26:\"vc_access_rules_post_types\";s:6:\"custom\";s:30:\"vc_access_rules_backend_editor\";b:1;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:23:\"vc_access_rules_presets\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:13:{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:31:\"vc_access_rules_post_types/post\";b:1;s:31:\"vc_access_rules_post_types/page\";b:1;s:26:\"vc_access_rules_post_types\";s:6:\"custom\";s:30:\"vc_access_rules_backend_editor\";b:1;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:23:\"vc_access_rules_presets\";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;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop Manager\";s:12:\"capabilities\";a:118:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:15:\"unfiltered_html\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:31:\"vc_access_rules_post_types/post\";b:1;s:31:\"vc_access_rules_post_types/page\";b:1;s:26:\"vc_access_rules_post_types\";s:6:\"custom\";s:30:\"vc_access_rules_backend_editor\";b:1;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:23:\"vc_access_rules_presets\";b:1;}}}','yes'),(90,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(91,'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'),(92,'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'),(93,'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'),(94,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'sidebars_widgets','a:9:{s:18:\"orphaned_widgets_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:19:\"wp_inactive_widgets\";a:0:{}s:12:\"blog-sidebar\";a:0:{}s:12:\"page-sidebar\";a:0:{}s:19:\"woocommerce-sidebar\";a:0:{}s:13:\"footer-area-1\";a:1:{i:0;s:6:\"text-2\";}s:13:\"footer-area-2\";a:0:{}s:13:\"footer-area-3\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(98,'cron','a:15:{i:1500823192;a:2:{s:20:\"wordfence_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1500823374;a:2:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1500824775;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1500829450;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"642e7da04ee1e21629977248f80f7061\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3719;}}}}i:1500831704;a:1:{s:29:\"akismet_schedule_cron_recheck\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1500854400;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1500863470;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:1500863667;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:1500882085;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1500908473;a:1:{s:24:\"akismet_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:1500912000;a:1:{s:31:\"wordfence_email_activity_report\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1501004399;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"74e9475e068ea66bd8224d68604b77d3\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1501004399;}}}}i:1501263599;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"7821e9904919e92de4ff247c4a5782af\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1501263599;}}}}i:1501545600;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}s:7:\"version\";i:2;}','yes'),(110,'_transient_random_seed','0bfeab3306b6112155eb5a9768ff9d26','yes'),(121,'theme_mods_twentyfifteen','a:2:{s:18:\"nav_menu_locations\";a:1:{s:7:\"top_nav\";i:47;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1472367601;s:4:\"data\";a:2:{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\";}}}}','yes'),(122,'current_theme','Salient','yes'),(123,'theme_mods_snapshot','a:3:{i:0;b:0;s:17:\"version_activated\";s:3:\"1.3\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1436500325;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:11:\"site-footer\";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\";}}}}','yes'),(124,'theme_switched','','yes'),(128,'siteorigin_panels_initial_version','2.1.4','no'),(129,'recently_activated','a:0:{}','yes'),(130,'siteorigin_panels_settings','a:0:{}','yes'),(135,'_site_transient_client_key_d55e5','-----BEGIN RSA PRIVATE KEY-----\nMIIEpQIBAAKCAQEA1phZ04uFAKYlDqzA8ig1FRkWZzTJK7Ax+h+jq0JkKO7eb2mh\nadT0Ibb9elqaRCABfWd9t8O/qtGUCilUDyCgbJhCqd0ZLNm/f3awfUneFXjL1vIb\nt1lYCm/0ejbFOHWLi7RMykn//bV9VF2nH+mUWJE+S/c/wu0hDDVFncdo2erpWYWc\nnu0iRiKiFNvLAdpXs/K1LORmnCwMigrt5NMskRPybfVv9WUAHjr3/Mky3Diy4Pt7\n2P6CJ11ld7YtEB+9KcAPKgAfnrDiaE9/9YZRJpgn8XNJ3bDpsCUQiJvLhLfs+QDm\nLN/RwF/uXbykb6flGCPEJu0ZovklAm9OLnmCdQIDAQABAoIBADizIGjIoGe/fmMW\nOhTBkuT0L/ss80pbz5iq62/Apv45vwPpAQEZhzexReAiOEhvvHUJ9ymqyuWzYk4d\nBVzJ3hlTUanYBWLYVcSz84XnEorR0+oDJleXf6+iTRJNjmaQiEJtbSy1yLGcVnUI\nGbRQ3yVXmwIvXeV/ChBTswUxPv70mrdOiKccFtQXqMnOZbZldTdYLRshywpy6UZh\n/dPTUvaS6OSC04O9vm8acjdriwep8V7N+1NyQ2N25hwrU/8TbLTjmgJzKc9Aa2hj\nr8B/TdlVyhX1ZSdiNzURjActyXzyIF6AbkNAqkoA/QWqv7IpLhmpY/Fvo0UYZ2dd\nZ6oGPLECgYEA776+C3MpQryPkLhYwl96Q/iM6tsgAwH0sC7NS0LOpluu3e8Weauz\nE/v6VxOuRLoNC3FtqQBjo9hNpOQM6msbaGH8vKFjWhtaLaUE0PMMk/9gDlK5Qd0+\n4fR2gDWnPRTAx88Yh2tIRIU2cVmCNJXYUJi5hYP8MWGFkQhqO8FhxoMCgYEA5SUU\nkBULwQVAFj988yf51ijWfzoR4mL0TfebeymKXffOd+lwMyj5Yr+Klpfip9UaE0nz\n+q7Fszt0JFplbcdD59jZRzVU27ZmODXaBwBcUEY2N16DOaoduRe+3n2+M1PShUAh\nixzp9u1KYeSYB3ZUwChBiQwIMkh+VVrfaqpjgacCgYEAlCfX4dOFCAzm25RQpa3D\nLQYIb4qCudkXkVka3QuoEP5Pji8WQJJu1Ea/adhrtWUUcqHiFrJ64OHm+aNEqAkQ\nou0K9rb1YtXMYLC9zTKl7z+96JwOiDllhtU/9fMyKnkMuW2txuHxgwafomSiJkUD\nrKr02yG5U/rkQ8BjhhH3jmkCgYEAzlSpQ2PwBYo4vs/ELx8b9B8ppb4gRH1eBqai\ntjAdi6eLnqXwheCrTqOyow945C8bH6tDqcKd+lnaprFPC56WIro8S8ZV9tEzEgJL\npGpKtW3De+/6sX3g7b3X/He1QHqF4b5xddY/Rj088RDpZC7E+ZJGEKVo6/4i47DD\n5EQw/ZkCgYEA6i3v9yfp4Wcc4MC0dSQOV4v/DUQWJXzn8mhaGA9wHLN0KBan46/l\n4jbnRKQFlvlp61hebuxb8HW+zvK5Nk9V/0G98Sei3JwbGBjD5Qq0V8Hge1whx3gN\nlbxj3lnfuTwZee8vFEWzXfUfpqkHrj4Bas8DeBzpEcBFwm5OTr0NIwc=\n-----END RSA PRIVATE KEY-----\n','yes'),(136,'_site_transient_client_properties_d55e5','{\"data\":\"nXl4tN4H6IHGjPdyEIIk0TTSaw9bDL0GfBWgAURE\\/Y1WZ7+AjtF3ntNJNDFK0OVSuLWpbS7Yo+7Ngwi4sEZ0Rjn+\\/3xNuxQqxUTCm95RcA4rPW496pl6zoy5nk\\/AtWEto5qOjRNKPc9GRvIrFQddzfkKXwfFm1gJLni4EJCcqEV7rWOHqxclEoLcdHpzSFLuOmjUEVfyCczi5meFXuNRTlx5MhQNXuQOq\\/7f\\/F\\/CXz0ZEoj2o8zgKZz2cwtwPLRyAgITf857arbNb3PsOATz0rlM87XYx9\\/BNnKLBlXdWirG\\/KWB+ExdCW9aZBKJ0kDZdWnTpWf1bemO\\/2O\\/qY0VQ7tTV0ttI0dZPJOJphuhrZeoPoE4Fvcyah5JCZ4Wxu5Eu0kElz7GQ6tTFs+sdyi6gselPik\\/FRCcX5KgCBRd+3dBcg5HSpX5PCq9S5jTFoiOpOtcXQn7JDlgWJhGdkT6Lpm+91yQ4eKSpc\\/0+dnVHdO3zMf2Dj0Np3n\\/2qGF5TD3gzqZVq8LuYbELW0cVHQePIrppCCPjMtWqIqKUKW6yNImWx5xBL0EPFYAreegSBX4AB3gD9TRF2+djQlNkgiB3o0H56oTYbARHMvzrFb8+VsfVysBKivDatcanoz1PfLtXPcuXzxqTrnYL\\/grIgMLqmxe8ebK7ZaTG46W1IfCwgjEO8QyYUqbYJVPPqOnzsoWlteiFa\\/PqHCXOMn2pKUUn4x8g59hM9jdiFvESUxaB+LLExNt3kDsIgvfYTc5M5J6KP00ibbJm3J4Wg0piNKH4Ugy1fzNaQrcBn60rzhh0+KV6zCt\\/P\\/tMBBVclTT9luoTLLFcFdVWMCphw7cB1nDd7Bmk7dSEb9H+H1RmadyHQtYViBY2x583BjyPdzwprPqG2\\/Jvcj+dQ2nkBASDXcrnNM4z\\/59za83W4bMWZ5WOv78IW5NARJfI4riumPuG2QnYUfmztRdFX3M\\/MjwAAyHc\\/mJKR2om0zs+\\/P+wvlBRwD3mTvuJtv5en7KMb\\/n120Os6Ojwlr9nLCxkrnn+bMNn9kJo5c0XFKca+dGn0y0bG7Q9Zo4A2iNqi\\/eC+xOOXXoebLO8Pe92TfZ8aj\\/FgEbDlfk5Acrkya9Qy7vjZo54yKDtY9\\/Z59Nec0cWVaIHA7agRbzh5f2hHpmuabWoy+S27R9J5sgRrUXSwoFJ+kxqCh+kv6s+i9E00BHP6idZ2+pX5QVcryJRSF+gqCONMWGkkVBcFl+ix3FY1LyiIzyFck+mkElkgoSXgHh0ETAJoGk7sEcYWNsqESRmTcYoOX9lKf072vv63TfUU\\/qkMuckDBGi96kokUI72LBFTFA39v5HwJU0bBhlHQo3sBMi+aehnlfi3PP1xxLwLUX5ZJimf01aHewiA87JfWQH+i4egQMithEmHC+nGsDVuVLhiUBafT6FhbkzgqVk9zwExXy3FakLD+Un4DEaDWx3VxTAxzFpa3it0TzD+OTZbLiGC5bC1Q2oL3Z7iaEXYsPMSLU7SOvoYwXL9Qae3R6YVgnOT17KxBZuKDdwUxx5oe56AauUimbCOfjiboyWiXFc9idR73RQDH\\/RxoNbnJGDiwU4yGlKgbiew4T9HUn1Vty+vKwdrjtkLyiPHz20xx2LLMFfgZ\\/dvkusynNZIJzukxHCtLj2MSu7m3QKM23vo7D\\/RwbtUM6DxliDWR7cn0IxE8izbOGzmgP4tJ7cKREUrKLGT4wDfOQHG8ZuFexemcWwTqs6Qs+WjuBsBWBd5kPIhIP2fk1WANhWQDznj9A+HaXfuxd5zb2ke8BfHhfHXBS+gky5fUUevgGTTjYLsftQWk3rSiDpA5A6mJpbSO9IXBW04h4o8bad0ZIpj0OSHWy9imxRVcjNQ2kq9wCBSJFUkHUvRgr87WfO6vMdhUlH5EXlk\\/u030pulnZsL2CjlRCjhNru85+TbGScNmjMr6iFLhgfT8wji9p59xOq19KIO6nas9qxjqUIhvmgUrgTMW98hDzZdXuVHj+1YuaSVXf3Yhl1QBP3pZmk6gNUyen99Ra9bWkCX5Biv6kpsWEzsYjYaqEQixy+hVdakACGGWLnitWGPO3o2d1jEaIj1kGO\\/QwJyG0nmcCQi9Ll\\/6HBtvUPww4azL7puHa14s3reMqo6uMMqkPfSbxpyb\\/7o87UwndNg8WNUZnR+5LQdiXL5gw0mX+mIDrsAoVatYBj7I8LP8Ez+oDsA07TAvL8Rsgl6zyFtSCeYmKn+p4r2pc5vHA6mDsJjsdr73IyIMfHj0GW+n+TSueDbmZGu3o+eoEqeL26Z2XtUV75Jubh5aFhXF77jjTwsVLIObcRmfQrGg+6eM6xCEPKOhlSYwuI7wH1GrA7eYapG1wxrwFB8rXoDc5MkISYbTDcNoBU8VV6ev1x1kxwUDTv5a47nBVxnqaRAZvV8DthXAa1B2DFGjXkpe9A3Gne\\/s53hQiFs3tSMFQBcgRQ1Zjyn6V8hb8ge8WRGTHYaTQJwj6tLdrXVJrl79ecrvk3icrute7gnsKW6gyrFhB96I51f48+uMFbOHNTB81Q7xp+nIIGHIuPZMPPvD+ZpKSC3ejREpc4VeaFPGIKXux2JGpTUp5kohfOt4S8\\/Y5nWSXsk3NFT4khBtdoTIVZ46SCF0lHYqxLniPHZyCD2LqbKKFWPfVzepCCSnV0fzXt\\/O1h9ZJfHHG61gcJ6zztZk5BM8pqlKM4kpCbf788N+2DjKkiNipoXOtkAXdFqKzlyN4ba24b+U\\/DpDSFKQnIAomMA0axhLVxTPbHZzJ2vNJsF+cbn7QTEhTrBpcGyUc2BtiKbJo23xDOfSwBK\\/3Ji2XOINs7eNtUxGH2C0kFCSub6Nd5YMnwe5CUIboeZoyJGQXPVQuTxmvPlpb0brwquqfUD2+wSIkH+f7VMtgPADmET5mWBOS6fmqmdAnqyif1dcj0pHhIAtvkZv3mh2t5LwEEAAEXDA+PrEOI00\\/LLgPXdDhIDkHElOW8ypb1xeTWjj9oqVRl9\\/EPCiuvQKrKRNJvVEKCAehcqE0\\/GNlQBjHPP5E4n0Zm\\/v586duu0\\/chFOAN+MaG6vt5wTtJsYWa8QJlxVRSbJ6UKGdTDhLcTDT7OsZlKZVCpW6NPfV5Ct1o2k\\/yf4+bRowJQ569nIMHA+Rou9oE\\/wIlmgjUAs0ASSyBHcGfBmfq2cM0LSco3QgqmGlqv0NGOGwGtONe+O2Fvv3LFaNTrk95VY\\/VYDo6atYH94BhvPC+RoHg1xSMBPsD0xEHaEiSETLel7P2sdtcKCKRpT8VTsEn196h7AEslFU66rZUV2DbkS76mCaFB5szciKyiFoRtYO\\/8GDB9wH8oQCEXN9L4PzRoXzofJMgFg1jF564VWgVaeziKtXzVLgxsBDqxoRMWB8ULkbzTy8TPYW8VhTWsBABzEIgd04loXQJPX6sCdBAby+7zyRM8CFmjc81Bs40U5QyQsLX3Jbz5ai4K0U+YnbJhP17YV06agKtKkvOf1rmTjZafq6nsH7inih8U7WH8rAU9Fgo4i2cVwwvzKlkFYpAKhZQb6gle7p\\/v29vg6CJq4GMkR7C\\/pEVqsrbOqJr0pcoVrgeEOj3E8tXmqeMFU7puwxxVFMoZA4Df1W0A8gWdmDsAsW1TDXYLjl20zxghCX33glglyD6JysmyPj+g2nVSQX\\/5pVYQF7jfOU7SLke2h\\/XMxE5ulCjd0jB056NnfAnulCH3aH83QmhrCsQrU02gTzjZr8O2xsuvoU1NJONt\\/q8wC4bAkckKaHXwQOo1AE8LSGCX6tJ80W\\/0wqgcazoGKbwma7zQnNi8JsCVhIcjKRg1Oc79hmNREJoA+Bosd42wK4PkKuP8Gl8J2DrgxO2PRlg\\/SWRICO2+xLTtNuewwBZ+uMVwvXMiZPPhMetz9PuRhldunHFMRjwXS46S04NsIy7IjQzS1JQ9V+LjO1H7lTHelceawLdS0ciPDkWfGQa1rA6IzPWnlX3BCVc\\/nqXw2Tcya6dNnOlCfpBojJw\\/35LmfGQ+ZfuiUwpLUvhOL6YUCXy0IwEHjx2klqwZinXCk4wL8DjF\\/92irSbistaBUFMsc6RCkdNu9m6MkOu8D2+jgbTZYfKGwSBJwGdQV\\/pr47l0z4Kg4127n9Uuy1z4E6DRSmaZOgnnsbHlvNhxBvNT9mvT\\/CmLhv+PP3mODacqG8ItEKsFZAs3j4jwHm6QwzfIOZbv9woueh0HImyoU3web9Q4jP4XTv82IkUY95nL+k91AnIgPhBfgDF1X5nviCAagwAhCO2qk3WT9ov\\/NPW\\/MQgC2gxmHk8mdnqcqFEwvu4ASGUHeshc0AgngOUB6p+KSU\\/4fndDQAmoBzFW7s9TY8rM1URp\\/IedaJcalAedyZn67OlYL3MvzzQDoK6BytggOOjGncNAELpgnGEC452pAFf8TzSPY1LaTuiuxtUCzeNBxPjmfPd4jl2Pd4kSuuBSTn3ObOGqRaR9qOGLuKBTi4h\\/OrS3VSvx\\/O7y8mmvSg6adUCg2MgPujEojeoTeCRYJ8w6eKSKGzExDnax8VuhmicLnKl8nfpdHtAK3qSBhzmT7cjNdOhMV1lsl8DFrABYmA3B6eeRjqEIaLt4cdw50nyUxLT2R3edqEKbmi55bLSoSLJXLxsnadqXdyfqTeXt+U4XIaeNJPBMFt9ClEJHJjhPhJAfhj\\/606VP0ToggaXLYYzrTEB\\/SJ8ZJTyTYXgmdSM7fKh59zbUfu\\/hBv6K6LIsoxOhrjv4oVxCYSnKAH8t\\/83Pmui+bEZhs+UtnBE+bGhAZ7NfEZXxnTyZ0plEsHSLOIKshS49Ee0Up2KzLHx9DEyNBtg6qH\\/RdcHcr02dpNwZdYyP\\/ZQ8p4+Nnk0KVwfKY2BuUt+44jV2E3heWuoOjfsGN4WpWUXLmRO3ZqUKaqH\\/Ho8kvBV2ZVKnNAIrL9RV4JeyfkEWxfRy3CzL9R3EQAPNSqolB0mmmjx2LnrB74uBTJjvs642ygyBOU+I8hS21xIn\\/y0n1iXvNB\\/HZLxJTGUTun\\/4Qgq7SWcCaoiaS9xL9kaB+qK44ji74AbDsOr58Xnkp3jCECdbFB652zTNfhMV0JoyXnaRUlxKvM6dHSW\\/ACzAaz5lLZlRsLlmFUiv0wkV3ELCb2vyH3mtpVpgY3mzZdYCOJsN7KtdRTM\\/0wZ+IQ7Y2NdMl1yYn\\/weoqqr2hp2lWYGcNto64vRmGFtGDu8COAaiVR3hyl7WdexO3s83kbpiNqR3XxbxMOw2DdvAa2g4UayCPVyCkGHhnhEXJ01OG\\/Q+XlLAaHCf0VIp6Av75FFJ1EuivMfz0SQbNVb2Gli1FUIEuoOBwyOXZWQGpRxRK+rH4vHLvda2jx87v9w19We3EA82aXhkY+QLeD3XKL+7vBUEx9mlTwHFvK1+Fqy1xEAsYM\\/sF3TxBtv5gZuWBFpZe7A0lMhDitpbPujAGBwj06uOncHemn\\/\\/r5mA5oX4XKgWmPFZYU3cp9YAIaGWZak4\\/DxCCUy9wmBCO2U7iGObAkgq523NFtXmMrc2yzI6kyihwIXvjbQKeGY3gG5DuLuKNmSPdiuERbvWD9bNhaVK+oAaL+5hjiBBKS1hOs\\/6Ej4SkFbaCNqViH0\\/vnvvgW4nLf2jt8ghdBs9Nv3Vg0xZi41k2bVBctYt5Xbv\\/d5lmkXPr+iD6Keady5c+94RSnoiuIqJ1wQjCkFHlMa7Hv\\/huflZvMqu7kau1uhjuK7crVPuwjjf0e8qG0tlnFamLa4H\\/HKHsDxMQDP51CBQ4JWTr\\/CzoALx6UpWUqtkScEAIYv6s2mVMftM91sfK5jwrCuPLsuW7+4+hDQ0HFHXkCSVf+PXuM7a0kc5JqmZIs7SB2Op4YP+XWmP9Rg86DA+4GEx3BwixUvEe8IsjQ3ZG\\/xBqBtVTZoJks\\/z1xvhTdDBm9QLkI3zf69HoezXQJZZWvViPyDrsvyjWYGUQGNm3SfylpOcicVAa1pfwFiPjNiZI3JeyPvAlm5tbo9hpaZ9VMi656VEWYeVLpSqUtF47RW\\/Ow\\/6rlHibvbk\\/lBCMlygDW6kT9vYVh88+wzldYOiBvO0oi5A58D2tvbpGl1jogNzeaBPbJFjDqdHGiDCdqAdjGhmIqN+LtYq+8FEDEJ0PyZ9m406O5i0Pf7OlbC5tzuzmg2ilkKXPTVN60fZZ7J0gurxB8K0cBS\\/QmFAujZQFx5LR2+rKlMLBYp8N\\/PnwXDYpXZ5TDvzCeM+6jO3qhH8IQFwraOw1woRPzjR\\/\\/BVSVY+GZmecJyjv5UIYRtfIaW9RGYrKPU2lJqJjl6LMN0yvGdxjDScY+2sRwfSw1+LwfOn76PIvp7dMwxZ0JlF4LlmP9r1Wmw00rmUuzedM3olBkfX5MXUoKSJM3jnWKsRShYVkNFYxU5z6450aOTEwLQ+GySEprQ6TfHbGHuPiqVDF1TweJZpce143ZWe7ihv562NWQ3h7MnZDbCTj8u7Xc4tiq0KyX0gGZyFCvw9mQhmdIk2Dwfv65Jie3854ltKEIxG7beUQN04MG5e3QSpEvNb7zRMppdZ0gP6ISv\\/QukLn6q4k44g1kxKbfSZXx5+OzV6lmlLoDH2vWViL4s4NGSC62qz4LtVfBr1xanpJtrUf8v7CwZhnF6wPCaULW5gYRj9FKSo0QE4g+zOZauIFgDUn7b+u5NWcV5bLab170ltA2PghWfDklJb1q7T9mUHYL2Mr5QXvuphS1QaKpCX3LI4VMcMkPD24O717dgBSXWClxBfjIfhQPWiaKUiHspevJ83\\/J6HF+kxqUXNACDi9hv7\\/b4ddC41jZx2jpXlMf8L8gA4njKWM9pNNq7OOmC3hTbwtAD7MFT0vJ0eOKje9RjIQ91ebgpDaUXAQ\\/ev\\/r8bl2XnpcwsvKbVj5ZroZfeV+fqJIV1eu8fiKT0d0qWpgZI5M68O\\/5PhO3OynvGD\\/ZdZ6V9I2BqqSNO\\/wmjLlth6O62IbEWEcWJI6kJYt7Kh43X4pHyj4YjVVJlvhxM0X1DkGsHPobhC9sK58g3e199F7Z6yQnjxziQGkS2UY6kAu36oAsO\\/0iIzJXEMIN8yP5IoJod5tSWhZkKri74DuyXDAxPkGy88YXColpAdBTJGio+m5r27ThJ8nkO+sahYhr7woXh7+4qf7kXLsi8mYUZQxoqLBWwJj+xB27wG05Vzx6onjdN639nRxcHwHw1MYITAQfNf\\/53lNvFP+tF6x6vYMSwdECTwMsXEu3Zp4eE01JcaBCiHLZTpIHqZ0MQQu22WVnTdjX5+m3fum\\/fpebX2AiCrrOZEDhQJHiDCCEl\\/hOh0BFj3QQNvYe\\/4Fh6SuXERBPs5u1T9IstIsQJqxv\\/6IPDKsYsYa2J1cmg5OQZSM3U6ixm1gef681c4YeKZHtb9VDSqh33EG9d5o9CbuejdDFq7L55yv2VYDYd0cSIdWYW\\/X31gpG\\/L6sfiTkeAk9q1LVYIXUJs9sMs0ansy1VZJceH6voFrvQ+6\\/366eq6w\\/HGExEQeiRsM+6nsXGphj2LUfGWxbfIyN25a44wUJJMJoRn8hWD0XPzOgQEMDt\\/wxYGEHoWip19BxBRpBxxUpeFdQ5ZwTRLOmEqrBYxGjQmyTXQJQcZMY71x8KwK3RrVTK0FoVN0w0J28logGedUeFiH7mliLi50rvTeB12ItAVr6TT120RDke93YMFqK+45XXuwB\\/VBKqmqsb0\\/Brm3qyOrl4ZgrBitPXTd9ocZroOG5BV6wAL\\/NTy2rbOz2+s9HmCFmVFM4A9jcR4wPeIc\\/Xq5kzk3VTIIc7\\/VhirDnAR6F1YHqOKujDgDf4fEKVyWwvLZoZb6HGojRUWviWpQstDcmyhOTbLouMtwLQWUN6LUVY3vGYQyIgb0dm08\\/z9LswGyycn86+wS2pPOJ+6nsSKKf+nzTPpYn5Xv2CwOui9qR+pOOCCylLCXAZ+lI1ruZlsLXllSaEvndQH5yZ7PUsqoKLSLzeE1Y\\/ieCsY2zyBrbsQUhHGNYy+U81EmBpyIpr3rwuRZwK3DdIzVUDWYVHNQyS1PHuQrJPi7mojHK7kg7Ul98Jxg9vAAedJ4s9UVhq4E9hYG85iwcYcyWELu6IXzz1KdvmolNlutluBmE1eTjtRvskN+6QHFCzDLd57GW6zMH3OE5AwAGsomvQDZRIa5TEl9OlQW6DgUFk3da3vTjkC8IZ9e6OOl12uvqKcS2ZMVCUnmzJFzrYjfT9duH1pyg2B6nQ890c4docn7ZiGxRqMaGqOw+ivLArVQdfbtnxyd1PqjBQ\\/QRKM8mRcwKo4jwD0O6y0YgNtkhfN7SjvWUr3FDqZg9SILX\\/qSfFBVEELIn\\/p6BHambUAtDbSw5gyI11Xn5lArW3pfJ0aHB6Lln1F24XYkDIAq82MLjJBcYmuR5zy85DnE4GzLC1W7EBU537+bPtxAGAMXYmpN1zouusLaqBWlwFzyMmKey5KYSB2xZes4M9RUEJjUrmoAocCxxOo64W31wbRqNfoDFJFtvdRBYnwi6cpxZBndpL+xRkaHT\\/W03WmCmSvG9QzCq3AbyabJxOv0vtvxAsCCPUIh0Mi6f7FITy6Zx7nhKftXIHKJjeaq2kP\\/\\/Umpdaf3BHinpPyArySl\\/Oq0qjYbh+GcRDGRdjfIM\\/6wSuuAMZK4ZDUETFIxdTR5cjfGib7pndeH1EK5coAg73FxdYLFCVtIcAsnhFisCgjfLDT5fqhtD4OvMZfouo3AIIsZi7VoSA9uhHcJudMlmO3uLQMYzYGOOD4kHysJw3P32IOcG4Vs\\/O5az4iJNi3aGNHQTZqm6Q0oR8vqnvTndH3Rzdo\\/dxZ0DS8xkY3GKU47SFgwyIB63jb36SHrFOix+jkyJ6W2ia6SHcl9z9o81g+5mFzODQoQosGBKaBw1vCaUheNRaHgCrdSvHynSPkvDIofSjQL+OwvCUzJZR6aHUfBU1P2d8yj5UMFrKwAArIEV+hJ\\/kdxHmTv8j\\/\\/Sf27TdTW0OIIBBgpE1aEahWuGOMnoosk44sDBLLJWn7OITJjjfuJszsvNUKeQDQUqIoA7ZIbVko66uyEhuG\\/bIVM3GOqmj3Y78iA7xREHnJNn379Y1XtqqrGF4f8LtSelnsBtmZ1j3Qlw0kisqxDDQaJy4Y7QMVtm+nC19H44i28PAtSz1rG2i6Tue5s8o+YGhyMaO\\/ZZVHTyf2RCUVI1fvz1MnXje1UgvSy9e1MVrl73RfVGIPf0ccn2tb9tq91jQfAllrb97HuqLq9aZawRuXSpLMnDMGOnakrCek91kC0mUScqUeQQuJuysi3dO\\/\\/m1n2OVvGld+1ItzzxISHOEMlZzeqfPrWdOM598jQRQu44UcftuweB0hThTGpS1qewfro7zJDxZhqe8hfTniaQ4tVeF8s3z3XGfxWCIeM2pGvcVkGUh3rYmaebtI9DzfWDr9IYmDpjCcgKAwKRCNGuYxZSVrU7PCf9Rp3k3+x8UCnw8+CpwCZiFnBbap\\/1fATxe0m+HqYqsS45M7y2qYMlxqWKogle6ukWOE+tpPRz\\/QkkybXeTREWKItNPTmtOlnonv1fDXRnsZjeYDCzm3wUlxjHq0Eq7L4bR8aps4zBl5\\/bUbf1tNKdrt3yh9ttRxjLgFABYoJqOK4mA\\/0OBR76Yl8tRNNK19AuaJqSmocOsQjMKnbx0rV2NH72tnN7G+0gbpYy4iXDQtlP\\/Orn1tM1xKPWa+VEdLek6tbDOpi0HikJ1gSjTGNh9Cw9l5VFe98gSBLHMKXlUG+UUo9Kvgm98C78TInCiHpDpcT5X0fvWAodFUQOxdBp4y\\/qrlJJAHN5qaQKBPy1WFS+0wqRNtxNiL3BjLCe6t\\/WouNSL\\/R5i4BGbaH5jyWeSWrSfWOm0f+3+02kHbmPuDqX1ILB9g+KXs2zjKc4Su\\/PN2jSkccVRhKkdQxPqsUrNSygelArHkZFCnSoXwRMyRJTO18t1pcpC1WTYnbPGxHgIZK7yDovJRJxttwOlFxHDA1KHueRmpC25OaP+vUye6CmrBNSUgdQuMIVmlqkgtwdSSbHmYfGP\\/tABqNmQ1TveQeL5JTzjN7WS2i\\/9wQ4Ms2\\/WSMSgQcjgrpNE6W6ChW7eqWwPMlDR8+SUfNvGkNhtrH0O70vA1UtRduEzFSHBo14+4uKXAgWGF5WE66OtHPDVuIW+ijS1LH3EwxvfXxO5ADeaYd2nD0mahK85M3cOw11iKTVLwhPsEnxDBC5In2PHQS5Mbj\\/sxzVRy96MDkb7AT0QOZaC6gkZfoY3YgIIFm\\/V1aiKtJAYMyXFLGeO37gcnReRB0PiHB6KMr73wEU8ixeWc3ldARzOjKYxbl\\/g0Rlvq1m5Qv5TBT4OfJQx\\/SEaqtluCI+WgwyFQMbiYCyg1kNVevg2ZVWZR7sdmId5u5x79s0LyeDYb6tslPBOWgnBIlNwUbQOIB7EIoUtuMP0ltFDpNjn46jG0\\/9OZXNeTVcvd7om6ydfg4nAXzoR0C1JN\\/YpQ57Oskas9hOO0BfXG5KtqZYuoo9gvi1oOj1eQwiZTZkldg1GY3vlw9YE1ri8zsyxe2\\/mT9dEtMk522AWv9kuSnkHIq1YmlXXOv+dw8z\\/RD8xaqYrleN3Jj3X2FmDrkYmVWjBPSiDTU+ZHCgq767MtXCVeKw+dyHLlUI3MNSrzwthLRes3frdrYGh+FlqdS2Myn4\\/hmPPVvxJqlOok5VZE9k8kNbZSY1Z7DU1tSwDiU2biRr\\/b\\/uNEinSGmp3GiZF2tePy\\/Ewr5thw4Aafu8UGkvuDaBOSVHtbX9mfXRG1982qwH0mGwrmqO9BbC0A28qqVBHYlJRrkvgT\\/VE7ln2onoC7OeDFWoM0q4HnOA6VVdaRsbKQ5C8V1fB4TqPHQGZlA4bA2hrrPbHtarQ7vuy7m6GZq56ZTG505pAnhCKA6UySdq8rLiQ51lDnRFTVdaW+bKzYP4lakTnTxeMr0djFiQkQ4abU1uvnhhwZN4uS958THKVNXfI+C\\/TCJvWDZp1x11HCN8QZTGVc8aACX0mHnAgO6frSRnPOnOTNVeXCsoDeP0C92XiTSqwT8ETyK36llwTyZx+6FAtlwuY05AyHEXHztVWPg1xvwd+6aBKcDNzrOP+hPXfqcaG+Rn+1\\/dZtR0KuBlwhvKA\\/dLY93OiJ13zWq8R0g\\/wfhMxAmfiVujwrhWqSKVUpISG7idyb6vU5NrLZrDiDpCHw15BOxELAUPXkvzl3tmvHmY33U79MYoZD21yQmLHVofe3YQ4DqkgOybny8tqs778B3W8EvvdDgZ\\/6Hlj7Pp8rV2XU2nVKB\\/Oau3ytUCArIAC3macSMBb8itOiqsOCaCo5ZV2XLAuuKCjOipP6eZw3aUV\\/\\/2bj7e4RwzGRMceRBtddaK3ihMFkaYkQZIK56rZ636vs7MoUU0WwMLa6OIJIG8yV02YZAGYyuwDJ8WSPH\\/H5\\/PDILtZT84Q6az+hB2dyuIpMYwe+UXE3joo8fOJieq6HsO6JUbqBeYOFYyKS+OA3qSlgKKKdU0kiynKsXD4KTRhTYcGS9H0HPQ6z\\/Wc4\\/VMpCJ0gAFeWQcQOGwReiljq8V0MxWKn6X\\/0HWLtB3aLvYLAzpqi\\/t2KhtTjwUCDp+lFYehgGdhvI0EUpUCEljQpyrE2qif8MTs5koXyAkvk59yyOllT0mGOwjqq6XvD0j7mRxEAs5d98Hi1Lf3FuMp\\/Ojpbb1\\/PdztlCEi6tkZnrU+cCO\\/4WY8bjNWDAJwf7A+fbEKBRJSgoj0sXlJiOcRB2QvUnLifrJB68JCQSO7LyhpHi0VE7w4D88UjCjhG5fX5tsDbWix4egkwa+kdDEmesTgQa2pQeX+WT6hpjW7HaHmAGkxPPLHu06QCJ9hbzaHoys9DRyDhYdi2x0fXvgGpYpzI6n7t1fU1G5ZGL6BuXCfvy1ffYFJpP3mf49K+aDUfkKwf2d41J1z\\/vZURIyUv1Ey8ONYXU5qeysZyVqBQF5ja0CUGqZko52ueqWlRnCS8Hv+k2vU2lpneW6D1KK\\/V3qwAFRYCc++s0QgVAnT9Exi3FTEAwvmzjH6lg75Qgk+07\\/ORpAZ9OWmRGasz6rMrzNyvinT1IGtI7rDDdINHvcqaIvJwvrm\\/I+bYySxZFzjD1F5Le\\/SEUrdO34uM31sMYT2niWTigm0LVz4QGCu8rOfBwwBN\\/5S\\/k0ewfv5leLcyQuGqoGrwuyO7ZJ4IjvqvBaFRTnxZ3rHxKERB6noqGYQNimcqtY\\/IVs+k0dW+wSQ2eqiU9xpdKl2wYBg+Nu0SS5YmsRZ6ULT5gg\\/dvZ8h1T96QcFJb0WBhkLTg0nup8zksAU002EJfWSgCHmhibivqpUSzI7QA7hnU0eF0vg79ma1YY9mkWLv+xaef9IIxGORQIQ\\/Rw6TYOVLfjrKnbGMRmw5koA9tA5Wq9An0iJWl9FDPTn0N7BsYTrPrdLRn4CGGoOyQ8QqKeFx0A88lxNRoeP4HBY9yGL60JmAE904\\/TKgJpLZtTkxAbTbCLjaEJRMkRMMsk9+oxq2OQlOfjgCVZGm8wssYAKM9MV3E62OR3bhVcQOmBspwBzqTAAYYhopvW8KiPQORj7bYBViNo7dp67gw41P6cpmeaBpT7BLN\\/mfik1NC84M0sIgVsk94HM\\/92PzuLym2tGMhNCNNMWkP8vPfDKBCF2XhaX9\\/KHT17nAr9tLrKghHaxs+uKVhcgDrMHXK6DuGJ4SbXRRB4pTkx4riGVSPHm9DYgXYdjGp8nL9ZDthmDLWkoNat6I6\\/gf6VbFyJOMyCwSbBfIdjZpSWGynIVHHaME8IC0GH14nYTcZW9+vtZVTElhUrfrGL3HuxB07TNLbnV9zSaK2SHDHzvxHBQPJpSApW0MAFGVRimyw6DdXQG3pcMncQXZ0nJxhqZXSpN\\/0dLZGvsjA5jilqRgXJoK9RlpRBE7LgOJrvUER4lL0RsVMVzkZsix1uszmHB+ERcb+jQErSRGZXXt7ytVt9rMi2F4Jl0BVmymj6vRskTqVcQ57\\/7CBOjDZGhWhU021D3K7uYnt1DrcKt5FzlqpbIgAAcqqrU7pbouLSy3b5FbXI60B5dpMhUH90ce4d9zajaWVcL55R9ER\\/wDvB0rJ2FDuVlHGt2VNz7N7kUbexqyK1CNEp5ZwdwhrdfSwaLMQH0PvRUMjF8tXBnPrlVewAjGmQd2FIeWBMtIro2g6qfiD0vZWtndz3qo9ATEPXUBMeRgpd1Q5MeW3yjE3vUwg0qvjp13usvaPUz6mdHR56Ywh01IF1qgVuwFc1O6Dxf\\/cI\\/ez1I\\/I48ENaSxN2GhwQe8PK3JIkmOseCisgbl2zNRsovMZPciINR+6jqAJJbFhiH9LQpRfE7WmQ75TkHRX3PgHSHl\\/WOQVDYsX7q2FVk81LC+cBew9uA8FVx6ghZRd6PWjM7Oiy5+5LrR8USIBgccPoQopmY6NtVnDIpO4M3nY9140\\/t7v9YjC9Y9SfNAoh\\/phvi0YBFVPWaqenK\\/3uah6m1gbaMGQiSOWQdqggqxDltREkHAY8Ywf2XwGgTNUUWX9W0c5j6vhj3oSbS1A4ZqswZE3emMGOGtsN5ubMHJfrD2QoV4\\/\\/S9g2+1ai6DAu2P8rgGMLsWKOLlg1G\\/3vhuX4LtFsGqIt1bjljRgBbadNuF3F5jti4Avy+nfXsMEq1nYf\\/v\",\"key\":\"Zta9SEMrs0ONX2QPyJVNO3y1sL2arcSM+iWx9u10FxrJlse4H7nXyhzmfEVi\\/\\/vnaS+71Of05+pHbDR8fRBubRoeSXKfb2qCLkQtdlqO61lPgiNVJNLAXB90caOKVCNl1GFFWzCkAeCNu78+0PcZJ0MWafIiAzFHgHn8JgnAbKjvSL3ENunK8ftUePlT8oVdRkZDqTrVoXGuJhRG6oUvXlxliQFij+mKrixgoCJHp1Eq2ltEOaHYoHhQOVErVa0+2FPWMoW\\/U+0M1\\/qDsF0gK7sCT+dndcHYwMjnrtzgT3XMOIYVJE4XGfc4bfP2tErlN4SrjIBgWsLLJOmpf70fyg==\"}','yes'),(137,'_site_transient_client_properties_d55e51','1436532604','yes'),(138,'theme_mods_epic','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1436500800;s:4:\"data\";a:5:{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\";N;s:9:\"sidebar-3\";N;s:9:\"sidebar-4\";N;}}}','yes'),(144,'theme_mods_salient','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"top_nav\";i:47;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(145,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"375\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(146,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"630\";s:4:\"crop\";i:1;}','yes'),(147,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:3:\"130\";s:4:\"crop\";i:1;}','yes'),(148,'salient','a:331:{s:8:\"last_tab\";s:1:\"6\";s:10:\"theme-skin\";s:8:\"original\";s:7:\"favicon\";s:67:\"http://punjabyouthclub.com/wp-content/uploads/2015/07/favicon-6.ico\";s:11:\"back-to-top\";s:1:\"1\";s:16:\"smooth-scrolling\";s:1:\"1\";s:18:\"one-page-scrolling\";s:1:\"1\";s:10:\"responsive\";s:1:\"1\";s:14:\"ext_responsive\";s:1:\"1\";s:16:\"default-lightbox\";s:1:\"1\";s:16:\"google-analytics\";s:0:\"\";s:10:\"custom-css\";s:28:\"                            \";s:12:\"accent-color\";s:7:\"#0beae3\";s:13:\"extra-color-1\";s:7:\"#f6653c\";s:13:\"extra-color-2\";s:7:\"#2AC4EA\";s:13:\"extra-color-3\";s:7:\"#333333\";s:12:\"boxed_layout\";s:1:\"1\";s:16:\"background-color\";s:7:\"#f1f1f1\";s:16:\"background_image\";s:0:\"\";s:17:\"background-repeat\";s:9:\"no-repeat\";s:19:\"background-position\";s:8:\"left top\";s:21:\"background-attachment\";s:6:\"scroll\";s:16:\"use-custom-fonts\";s:1:\"1\";s:9:\"body_font\";s:1:\"-\";s:14:\"body_font_size\";s:1:\"-\";s:15:\"body_font_style\";s:1:\"-\";s:19:\"body_font_transform\";s:1:\"-\";s:17:\"body_font_spacing\";s:1:\"-\";s:16:\"body_font_subset\";s:6:\"subset\";s:15:\"navigation_font\";s:8:\"Aclonica\";s:20:\"navigation_font_size\";s:4:\"14px\";s:21:\"navigation_font_style\";s:1:\"-\";s:25:\"navigation_font_transform\";s:1:\"-\";s:23:\"navigation_font_spacing\";s:1:\"-\";s:22:\"navigation_font_subset\";s:6:\"subset\";s:24:\"navigation_dropdown_font\";s:1:\"-\";s:29:\"navigation_dropdown_font_size\";s:1:\"-\";s:30:\"navigation_dropdown_font_style\";s:1:\"-\";s:34:\"navigation_dropdown_font_transform\";s:9:\"uppercase\";s:32:\"navigation_dropdown_font_spacing\";s:1:\"-\";s:31:\"navigation_dropdown_font_subset\";s:6:\"subset\";s:26:\"nectar_slider_heading_font\";s:1:\"-\";s:31:\"nectar_slider_heading_font_size\";s:1:\"-\";s:32:\"nectar_slider_heading_font_style\";s:1:\"-\";s:36:\"nectar_slider_heading_font_transform\";s:1:\"-\";s:34:\"nectar_slider_heading_font_spacing\";s:1:\"-\";s:33:\"nectar_slider_heading_font_subset\";s:6:\"subset\";s:24:\"home_slider_caption_font\";s:1:\"-\";s:29:\"home_slider_caption_font_size\";s:1:\"-\";s:30:\"home_slider_caption_font_style\";s:1:\"-\";s:34:\"home_slider_caption_font_transform\";s:1:\"-\";s:32:\"home_slider_caption_font_spacing\";s:1:\"-\";s:31:\"home_slider_caption_font_subset\";s:6:\"subset\";s:16:\"testimonial_font\";s:1:\"-\";s:21:\"testimonial_font_size\";s:1:\"-\";s:22:\"testimonial_font_style\";s:1:\"-\";s:26:\"testimonial_font_transform\";s:1:\"-\";s:24:\"testimonial_font_spacing\";s:1:\"-\";s:23:\"testimonial_font_subset\";s:6:\"subset\";s:21:\"sidebar_footer_h_font\";s:1:\"-\";s:26:\"sidebar_footer_h_font_size\";s:1:\"-\";s:27:\"sidebar_footer_h_font_style\";s:1:\"-\";s:31:\"sidebar_footer_h_font_transform\";s:1:\"-\";s:29:\"sidebar_footer_h_font_spacing\";s:1:\"-\";s:28:\"sidebar_footer_h_font_subset\";s:6:\"subset\";s:17:\"page_heading_font\";s:1:\"-\";s:22:\"page_heading_font_size\";s:1:\"-\";s:23:\"page_heading_font_style\";s:1:\"-\";s:27:\"page_heading_font_transform\";s:1:\"-\";s:25:\"page_heading_font_spacing\";s:1:\"-\";s:24:\"page_heading_font_subset\";s:6:\"subset\";s:26:\"page_heading_subtitle_font\";s:1:\"-\";s:31:\"page_heading_subtitle_font_size\";s:1:\"-\";s:32:\"page_heading_subtitle_font_style\";s:1:\"-\";s:36:\"page_heading_subtitle_font_transform\";s:1:\"-\";s:34:\"page_heading_subtitle_font_spacing\";s:1:\"-\";s:33:\"page_heading_subtitle_font_subset\";s:6:\"subset\";s:18:\"team_member_h_font\";s:1:\"-\";s:23:\"team_member_h_font_size\";s:4:\"20px\";s:24:\"team_member_h_font_style\";s:1:\"-\";s:28:\"team_member_h_font_transform\";s:1:\"-\";s:26:\"team_member_h_font_spacing\";s:1:\"-\";s:25:\"team_member_h_font_subset\";s:6:\"subset\";s:7:\"h1_font\";s:1:\"-\";s:12:\"h1_font_size\";s:1:\"-\";s:13:\"h1_font_style\";s:1:\"-\";s:17:\"h1_font_transform\";s:1:\"-\";s:15:\"h1_font_spacing\";s:1:\"-\";s:14:\"h1_font_subset\";s:6:\"subset\";s:7:\"h2_font\";s:1:\"-\";s:12:\"h2_font_size\";s:1:\"-\";s:13:\"h2_font_style\";s:1:\"-\";s:17:\"h2_font_transform\";s:1:\"-\";s:15:\"h2_font_spacing\";s:1:\"-\";s:14:\"h2_font_subset\";s:6:\"subset\";s:7:\"h3_font\";s:1:\"-\";s:12:\"h3_font_size\";s:1:\"-\";s:13:\"h3_font_style\";s:1:\"-\";s:17:\"h3_font_transform\";s:1:\"-\";s:15:\"h3_font_spacing\";s:1:\"-\";s:14:\"h3_font_subset\";s:6:\"subset\";s:7:\"h4_font\";s:1:\"-\";s:12:\"h4_font_size\";s:1:\"-\";s:13:\"h4_font_style\";s:1:\"-\";s:17:\"h4_font_transform\";s:1:\"-\";s:15:\"h4_font_spacing\";s:1:\"-\";s:14:\"h4_font_subset\";s:6:\"subset\";s:7:\"h5_font\";s:1:\"-\";s:12:\"h5_font_size\";s:1:\"-\";s:13:\"h5_font_style\";s:1:\"-\";s:17:\"h5_font_transform\";s:1:\"-\";s:15:\"h5_font_spacing\";s:1:\"-\";s:14:\"h5_font_subset\";s:6:\"subset\";s:6:\"i_font\";s:1:\"-\";s:11:\"i_font_size\";s:1:\"-\";s:12:\"i_font_style\";s:1:\"-\";s:16:\"i_font_transform\";s:1:\"-\";s:14:\"i_font_spacing\";s:1:\"-\";s:13:\"i_font_subset\";s:6:\"subset\";s:13:\"header_format\";s:7:\"default\";s:8:\"use-logo\";s:1:\"1\";s:4:\"logo\";s:80:\"http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Banner_Logo_long-2.png\";s:11:\"retina-logo\";s:0:\"\";s:11:\"logo-height\";s:2:\"60\";s:14:\"header-padding\";s:2:\"10\";s:18:\"transparent-header\";s:1:\"1\";s:20:\"header-starting-logo\";s:75:\"http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Banner_Logo-2.png\";s:27:\"header-starting-retina-logo\";s:0:\"\";s:25:\"header-starting-logo-dark\";s:0:\"\";s:32:\"header-starting-retina-logo-dark\";s:0:\"\";s:21:\"header-starting-color\";s:7:\"#ffffff\";s:24:\"header-inherit-row-color\";s:1:\"1\";s:23:\"header-resize-on-scroll\";s:1:\"1\";s:34:\"header-resize-on-scroll-shrink-num\";s:0:\"\";s:21:\"header-disable-search\";s:1:\"1\";s:12:\"header-color\";s:5:\"light\";s:23:\"header-background-color\";s:7:\"#ffffff\";s:17:\"header-font-color\";s:7:\"#888888\";s:23:\"header-font-hover-color\";s:7:\"#27CCC0\";s:32:\"header-dropdown-background-color\";s:7:\"#1F1F1F\";s:38:\"header-dropdown-background-hover-color\";s:7:\"#313233\";s:26:\"header-dropdown-font-color\";s:7:\"#CCCCCC\";s:32:\"header-dropdown-font-hover-color\";s:7:\"#27CCC0\";s:33:\"secondary-header-background-color\";s:7:\"#F8F8F8\";s:27:\"secondary-header-font-color\";s:7:\"#666666\";s:33:\"secondary-header-font-hover-color\";s:7:\"#222222\";s:45:\"header-slide-out-widget-area-background-color\";s:7:\"#27CCC0\";s:41:\"header-slide-out-widget-area-header-color\";s:7:\"#ffffff\";s:34:\"header-slide-out-widget-area-color\";s:7:\"#eefbfa\";s:40:\"header-slide-out-widget-area-hover-color\";s:7:\"#ffffff\";s:13:\"header_layout\";s:8:\"standard\";s:23:\"enable_social_in_header\";s:1:\"1\";s:24:\"use-facebook-icon-header\";s:1:\"1\";s:14:\"footer_columns\";s:1:\"2\";s:23:\"footer-background-color\";s:7:\"#313233\";s:17:\"footer-font-color\";s:7:\"#CCCCCC\";s:27:\"footer-secondary-font-color\";s:7:\"#777777\";s:33:\"footer-copyright-background-color\";s:7:\"#1F1F1F\";s:27:\"footer-copyright-font-color\";s:7:\"#777777\";s:21:\"footer-copyright-text\";s:126:\"© Copyright 2015 Punjab Youth Club (Hong Kong) I Powered by <a href=\"http://www.greatwalsolutions.com\">GreAtwal Solutions</a>\";s:22:\"disable-auto-copyright\";s:1:\"1\";s:17:\"use-facebook-icon\";s:1:\"1\";s:17:\"transition-method\";s:4:\"ajax\";s:13:\"loading-image\";s:0:\"\";s:23:\"loading-image-animation\";s:4:\"none\";s:8:\"cta-text\";s:0:\"\";s:7:\"cta-btn\";s:0:\"\";s:12:\"cta-btn-link\";s:0:\"\";s:20:\"cta-background-color\";s:7:\"#ECEBE9\";s:14:\"cta-text-color\";s:7:\"#4B4F52\";s:13:\"cta-btn-color\";s:12:\"accent-color\";s:21:\"main_portfolio_layout\";s:1:\"3\";s:28:\"main_portfolio_project_style\";s:1:\"4\";s:16:\"portfolio_social\";s:1:\"1\";s:26:\"portfolio-facebook-sharing\";s:1:\"1\";s:25:\"portfolio-twitter-sharing\";s:1:\"1\";s:29:\"portfolio-google-plus-sharing\";s:1:\"1\";s:27:\"portfolio-pinterest-sharing\";s:1:\"1\";s:25:\"portfolio_pagination_type\";s:7:\"default\";s:27:\"portfolio_pagination_number\";s:0:\"\";s:22:\"portfolio_rewrite_slug\";s:0:\"\";s:14:\"carousel-title\";s:0:\"\";s:13:\"carousel-link\";s:0:\"\";s:23:\"portfolio-sortable-text\";s:0:\"\";s:19:\"main-portfolio-link\";s:0:\"\";s:9:\"blog_type\";s:16:\"std-blog-sidebar\";s:19:\"blog_excerpt_length\";s:0:\"\";s:16:\"blog_header_type\";s:7:\"default\";s:17:\"blog_hide_sidebar\";s:1:\"1\";s:24:\"blog_hide_featured_image\";s:1:\"1\";s:11:\"blog_social\";s:1:\"1\";s:21:\"blog-facebook-sharing\";s:1:\"1\";s:20:\"blog-twitter-sharing\";s:1:\"1\";s:22:\"blog-pinterest-sharing\";s:1:\"1\";s:12:\"display_tags\";s:1:\"1\";s:20:\"blog_pagination_type\";s:7:\"default\";s:18:\"recent-posts-title\";s:0:\"\";s:17:\"recent-posts-link\";s:0:\"\";s:10:\"zoom-level\";s:0:\"\";s:10:\"center-lat\";s:0:\"\";s:10:\"center-lng\";s:0:\"\";s:10:\"marker-img\";s:0:\"\";s:20:\"enable-map-animation\";s:1:\"1\";s:9:\"latitude1\";s:0:\"\";s:10:\"longitude1\";s:0:\"\";s:9:\"map-info1\";s:0:\"\";s:9:\"latitude2\";s:0:\"\";s:10:\"longitude2\";s:0:\"\";s:9:\"map-info2\";s:0:\"\";s:9:\"latitude3\";s:0:\"\";s:10:\"longitude3\";s:0:\"\";s:9:\"map-info3\";s:0:\"\";s:9:\"latitude4\";s:0:\"\";s:10:\"longitude4\";s:0:\"\";s:9:\"map-info4\";s:0:\"\";s:9:\"latitude5\";s:0:\"\";s:10:\"longitude5\";s:0:\"\";s:9:\"map-info5\";s:0:\"\";s:9:\"latitude6\";s:0:\"\";s:10:\"longitude6\";s:0:\"\";s:9:\"map-info6\";s:0:\"\";s:9:\"latitude7\";s:0:\"\";s:10:\"longitude7\";s:0:\"\";s:9:\"map-info7\";s:0:\"\";s:9:\"latitude8\";s:0:\"\";s:10:\"longitude8\";s:0:\"\";s:9:\"map-info8\";s:0:\"\";s:9:\"latitude9\";s:0:\"\";s:10:\"longitude9\";s:0:\"\";s:9:\"map-info9\";s:0:\"\";s:10:\"latitude10\";s:0:\"\";s:11:\"longitude10\";s:0:\"\";s:10:\"map-info10\";s:0:\"\";s:20:\"add-remove-locations\";s:0:\"\";s:9:\"map-color\";s:0:\"\";s:24:\"slider-caption-animation\";s:1:\"1\";s:23:\"slider-background-cover\";s:1:\"1\";s:15:\"slider-autoplay\";s:1:\"1\";s:20:\"slider-advance-speed\";s:0:\"\";s:22:\"slider-animation-speed\";s:0:\"\";s:13:\"slider-height\";s:0:\"\";s:15:\"slider-bg-color\";s:7:\"#000000\";s:24:\"sharing_btn_accent_color\";s:1:\"1\";s:12:\"facebook-url\";s:40:\"https://www.facebook.com/punjabyouthclub\";s:11:\"twitter-url\";s:0:\"\";s:15:\"google-plus-url\";s:0:\"\";s:9:\"vimeo-url\";s:0:\"\";s:12:\"dribbble-url\";s:0:\"\";s:13:\"pinterest-url\";s:0:\"\";s:11:\"youtube-url\";s:0:\"\";s:10:\"tumblr-url\";s:0:\"\";s:12:\"linkedin-url\";s:0:\"\";s:7:\"rss-url\";s:0:\"\";s:11:\"behance-url\";s:0:\"\";s:10:\"flickr-url\";s:0:\"\";s:11:\"spotify-url\";s:0:\"\";s:13:\"instagram-url\";s:0:\"\";s:10:\"github-url\";s:0:\"\";s:17:\"stackexchange-url\";s:0:\"\";s:14:\"soundcloud-url\";s:0:\"\";s:10:\"disable-vc\";i:0;s:20:\"external-dynamic-css\";i:0;s:16:\"background-cover\";i:0;s:19:\"extended-theme-font\";i:0;s:20:\"header-remove-border\";i:0;s:16:\"header-fullwidth\";i:0;s:28:\"header-slide-out-widget-area\";i:0;s:26:\"header-disable-ajax-search\";i:0;s:23:\"use-twitter-icon-header\";i:0;s:27:\"use-google-plus-icon-header\";i:0;s:21:\"use-vimeo-icon-header\";i:0;s:24:\"use-dribbble-icon-header\";i:0;s:25:\"use-pinterest-icon-header\";i:0;s:23:\"use-youtube-icon-header\";i:0;s:22:\"use-tumblr-icon-header\";i:0;s:24:\"use-linkedin-icon-header\";i:0;s:19:\"use-rss-icon-header\";i:0;s:23:\"use-behance-icon-header\";i:0;s:25:\"use-instagram-icon-header\";i:0;s:22:\"use-flickr-icon-header\";i:0;s:23:\"use-spotify-icon-header\";i:0;s:22:\"use-github-icon-header\";i:0;s:29:\"use-stackexchange-icon-header\";i:0;s:26:\"use-soundcloud-icon-header\";i:0;s:23:\"enable-main-footer-area\";i:0;s:19:\"footer-custom-color\";i:0;s:16:\"use-twitter-icon\";i:0;s:20:\"use-google-plus-icon\";i:0;s:14:\"use-vimeo-icon\";i:0;s:17:\"use-dribbble-icon\";i:0;s:18:\"use-pinterest-icon\";i:0;s:16:\"use-youtube-icon\";i:0;s:15:\"use-tumblr-icon\";i:0;s:17:\"use-linkedin-icon\";i:0;s:12:\"use-rss-icon\";i:0;s:16:\"use-behance-icon\";i:0;s:18:\"use-instagram-icon\";i:0;s:15:\"use-flickr-icon\";i:0;s:16:\"use-spotify-icon\";i:0;s:15:\"use-github-icon\";i:0;s:22:\"use-stackexchange-icon\";i:0;s:19:\"use-soundcloud-icon\";i:0;s:17:\"ajax-page-loading\";i:0;s:21:\"portfolio_use_masonry\";i:0;s:24:\"portfolio_inline_filters\";i:0;s:24:\"portfolio_sidebar_follow\";i:0;s:26:\"portfolio-linkedin-sharing\";i:0;s:14:\"portfolio_date\";i:0;s:20:\"portfolio_pagination\";i:0;s:26:\"portfolio_extra_pagination\";i:0;s:10:\"author_bio\";i:0;s:17:\"blog_auto_excerpt\";i:0;s:19:\"blog_next_post_link\";i:0;s:24:\"blog-google-plus-sharing\";i:0;s:21:\"blog-linkedin-sharing\";i:0;s:17:\"display_full_date\";i:0;s:16:\"extra_pagination\";i:0;s:15:\"enable-map-zoom\";i:0;s:14:\"use-marker-img\";i:0;s:11:\"map-point-1\";i:0;s:11:\"map-point-2\";i:0;s:11:\"map-point-3\";i:0;s:11:\"map-point-4\";i:0;s:11:\"map-point-5\";i:0;s:11:\"map-point-6\";i:0;s:11:\"map-point-7\";i:0;s:11:\"map-point-8\";i:0;s:11:\"map-point-9\";i:0;s:12:\"map-point-10\";i:0;s:13:\"map-greyscale\";i:0;s:14:\"map-ultra-flat\";i:0;s:21:\"map-dark-color-scheme\";i:0;}','yes'),(182,'wpcf7','a:1:{s:7:\"version\";s:3:\"4.8\";}','yes'),(184,'wpb_js_composer_templates_slashes_updated','yes','yes'),(224,'WPLANG','','yes'),(230,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(236,'project-attributes_children','a:0:{}','yes'),(259,'widget_calendar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(260,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(261,'widget_al_contact_form','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(262,'widget_al-flickr-widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(263,'widget_latest-tweets-widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(264,'widget_al-works-widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(265,'widget_al-blogposts-widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(266,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(267,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(268,'widget_recent-posts-extra','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(269,'widget_recent-projects','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(634,'category_children','a:0:{}','yes'),(636,'slider-locations_children','a:0:{}','yes'),(840,'project-type_children','a:0:{}','yes'),(1148,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:27:\"GreAtwalSolutions@gmail.com\";s:7:\"version\";s:5:\"4.7.5\";s:9:\"timestamp\";i:1494990098;}','no'),(1149,'db_upgraded','','yes'),(1157,'rewrite_rules','','yes'),(3381,'finished_splitting_shared_terms','1','yes'),(3382,'site_icon','0','yes'),(3383,'medium_large_size_w','768','yes'),(3384,'medium_large_size_h','0','yes'),(3481,'vc_version','5.0.1','yes'),(3492,'wpb_js_composer_license_activation_notified','yes','yes'),(3953,'_transient_twentyfifteen_categories','1','yes'),(3954,'wpb_js_content_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(3955,'wpb_js_groups_access_rules','a:4:{s:13:\"administrator\";a:1:{s:4:\"show\";s:3:\"all\";}s:6:\"editor\";a:1:{s:4:\"show\";s:3:\"all\";}s:6:\"author\";a:1:{s:4:\"show\";s:3:\"all\";}s:11:\"contributor\";a:1:{s:4:\"show\";s:3:\"all\";}}','yes'),(3956,'wpb_js_not_responsive_css','','yes'),(3957,'wpb_js_google_fonts_subsets','a:1:{i:0;s:5:\"latin\";}','yes'),(3964,'theme_mods_salient_','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"top_nav\";i:47;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1471959141;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"orphaned_widgets_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\";}}}}','yes'),(4041,'redux_version_upgraded_from','3.5.8.10','yes'),(4042,'_transient_timeout__redux_activation_redirect','1500740032','no'),(4043,'_transient__redux_activation_redirect','1','no'),(4044,'salient_redux','a:347:{s:8:\"last_tab\";s:2:\"30\";s:10:\"theme-skin\";s:6:\"ascend\";s:7:\"favicon\";a:5:{s:3:\"url\";s:67:\"http://punjabyouthclub.com/wp-content/uploads/2015/07/favicon-6.ico\";s:2:\"id\";s:4:\"3429\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:67:\"http://punjabyouthclub.com/wp-content/uploads/2015/07/favicon-6.ico\";}s:14:\"button-styling\";s:7:\"default\";s:16:\"theme-icon-style\";s:7:\"minimal\";s:16:\"overall-bg-color\";s:0:\"\";s:18:\"overall-font-color\";s:0:\"\";s:11:\"back-to-top\";s:1:\"1\";s:18:\"back-to-top-mobile\";s:1:\"1\";s:16:\"smooth-scrolling\";s:1:\"1\";s:18:\"one-page-scrolling\";s:1:\"1\";s:10:\"responsive\";s:1:\"1\";s:14:\"ext_responsive\";s:1:\"1\";s:15:\"lightbox_script\";s:12:\"pretty_photo\";s:16:\"default-lightbox\";s:1:\"1\";s:23:\"column_animation_easing\";s:6:\"linear\";s:23:\"column_animation_timing\";s:3:\"650\";s:20:\"external-dynamic-css\";s:1:\"0\";s:16:\"google-analytics\";s:0:\"\";s:10:\"custom-css\";s:0:\"\";s:12:\"accent-color\";s:7:\"#0beae3\";s:13:\"extra-color-1\";s:7:\"#f6653c\";s:13:\"extra-color-2\";s:7:\"#2AC4EA\";s:13:\"extra-color-3\";s:7:\"#333333\";s:12:\"boxed_layout\";s:1:\"1\";s:16:\"background-color\";s:7:\"#f1f1f1\";s:16:\"background_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:17:\"background-repeat\";s:9:\"no-repeat\";s:19:\"background-position\";s:8:\"left top\";s:21:\"background-attachment\";s:6:\"scroll\";s:16:\"background-cover\";s:1:\"0\";s:19:\"extended-theme-font\";s:1:\"0\";s:22:\"navigation_font_family\";a:10:{s:11:\"font-family\";s:8:\"Aclonica\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:4:\"10px\";s:11:\"line-height\";s:4:\"10px\";s:14:\"letter-spacing\";s:0:\"\";}s:31:\"navigation_dropdown_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:9:\"uppercase\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:24:\"page_heading_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:33:\"page_heading_subtitle_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:26:\"off_canvas_nav_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:34:\"off_canvas_nav_subtext_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:16:\"body_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:6:\"subset\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:14:\"h1_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:6:\"subset\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:14:\"h2_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:6:\"subset\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:14:\"h3_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:6:\"subset\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:14:\"h4_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:6:\"subset\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:14:\"h5_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:6:\"subset\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:14:\"h6_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:13:\"i_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:6:\"subset\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:17:\"label_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:33:\"nectar_slider_heading_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:6:\"subset\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:31:\"home_slider_caption_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:6:\"subset\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:23:\"testimonial_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:6:\"subset\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:28:\"sidebar_footer_h_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:6:\"subset\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:25:\"team_member_h_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:6:\"subset\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:26:\"nectar_dropcap_font_family\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:8:\"use-logo\";s:1:\"1\";s:4:\"logo\";a:5:{s:3:\"url\";s:80:\"http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Banner_Logo_long-2.png\";s:2:\"id\";s:4:\"2922\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:80:\"http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Banner_Logo_long-2.png\";}s:11:\"retina-logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"logo-height\";s:2:\"60\";s:18:\"mobile-logo-height\";s:0:\"\";s:14:\"header-padding\";s:2:\"10\";s:19:\"header-mobile-fixed\";s:1:\"1\";s:17:\"header-bg-opacity\";s:3:\"100\";s:12:\"header-color\";s:5:\"light\";s:23:\"header-background-color\";s:7:\"#ffffff\";s:17:\"header-font-color\";s:7:\"#888888\";s:23:\"header-font-hover-color\";s:7:\"#27CCC0\";s:32:\"header-dropdown-background-color\";s:7:\"#1F1F1F\";s:38:\"header-dropdown-background-hover-color\";s:7:\"#313233\";s:26:\"header-dropdown-font-color\";s:7:\"#CCCCCC\";s:32:\"header-dropdown-font-hover-color\";s:7:\"#27CCC0\";s:33:\"secondary-header-background-color\";s:7:\"#F8F8F8\";s:27:\"secondary-header-font-color\";s:7:\"#666666\";s:33:\"secondary-header-font-hover-color\";s:7:\"#222222\";s:45:\"header-slide-out-widget-area-background-color\";s:7:\"#27CCC0\";s:41:\"header-slide-out-widget-area-header-color\";s:7:\"#ffffff\";s:34:\"header-slide-out-widget-area-color\";s:7:\"#eefbfa\";s:40:\"header-slide-out-widget-area-hover-color\";s:7:\"#ffffff\";s:13:\"header_format\";s:7:\"default\";s:16:\"header-fullwidth\";s:1:\"0\";s:21:\"header-disable-search\";s:1:\"1\";s:26:\"header-disable-ajax-search\";s:1:\"0\";s:13:\"header_layout\";s:8:\"standard\";s:23:\"enable_social_in_header\";s:1:\"1\";s:24:\"use-facebook-icon-header\";s:1:\"1\";s:23:\"use-twitter-icon-header\";s:1:\"0\";s:27:\"use-google-plus-icon-header\";s:1:\"0\";s:21:\"use-vimeo-icon-header\";s:1:\"0\";s:24:\"use-dribbble-icon-header\";s:1:\"0\";s:25:\"use-pinterest-icon-header\";s:1:\"0\";s:23:\"use-youtube-icon-header\";s:1:\"0\";s:22:\"use-tumblr-icon-header\";s:1:\"0\";s:24:\"use-linkedin-icon-header\";s:1:\"0\";s:19:\"use-rss-icon-header\";s:1:\"0\";s:23:\"use-behance-icon-header\";s:1:\"0\";s:25:\"use-instagram-icon-header\";s:1:\"0\";s:22:\"use-flickr-icon-header\";s:1:\"0\";s:23:\"use-spotify-icon-header\";s:1:\"0\";s:22:\"use-github-icon-header\";s:1:\"0\";s:29:\"use-stackexchange-icon-header\";s:1:\"0\";s:26:\"use-soundcloud-icon-header\";s:1:\"0\";s:18:\"use-vk-icon-header\";s:0:\"\";s:20:\"use-vine-icon-header\";s:0:\"\";s:18:\"transparent-header\";s:1:\"1\";s:20:\"header-starting-logo\";a:5:{s:3:\"url\";s:80:\"http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Banner_Logo_long-2.png\";s:2:\"id\";s:4:\"2922\";s:6:\"height\";s:3:\"237\";s:5:\"width\";s:4:\"1872\";s:9:\"thumbnail\";s:88:\"http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Banner_Logo_long-2-150x150.png\";}s:27:\"header-starting-retina-logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:25:\"header-starting-logo-dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:32:\"header-starting-retina-logo-dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:21:\"header-starting-color\";s:7:\"#ffffff\";s:28:\"header-permanent-transparent\";s:1:\"0\";s:24:\"header-inherit-row-color\";s:1:\"1\";s:20:\"header-remove-border\";s:1:\"1\";s:19:\"header-hover-effect\";s:7:\"default\";s:24:\"header-hide-until-needed\";s:1:\"0\";s:23:\"header-resize-on-scroll\";s:1:\"1\";s:34:\"header-resize-on-scroll-shrink-num\";s:0:\"\";s:28:\"header-slide-out-widget-area\";s:1:\"0\";s:34:\"header-slide-out-widget-area-style\";s:20:\"slide-out-from-right\";s:35:\"header-slide-out-widget-area-social\";s:1:\"0\";s:40:\"header-slide-out-widget-area-bottom-text\";s:0:\"\";s:44:\"header-slide-out-widget-area-overlay-opacity\";s:4:\"dark\";s:46:\"header-slide-out-widget-area-top-nav-in-mobile\";s:1:\"0\";s:23:\"enable-main-footer-area\";s:1:\"1\";s:14:\"footer_columns\";s:1:\"3\";s:19:\"footer-custom-color\";s:1:\"0\";s:23:\"footer-background-color\";s:7:\"#313233\";s:17:\"footer-font-color\";s:7:\"#CCCCCC\";s:27:\"footer-secondary-font-color\";s:7:\"#777777\";s:33:\"footer-copyright-background-color\";s:7:\"#1F1F1F\";s:27:\"footer-copyright-font-color\";s:7:\"#777777\";s:21:\"footer-copyright-line\";s:1:\"1\";s:13:\"footer-reveal\";s:1:\"0\";s:20:\"footer-reveal-shadow\";s:4:\"none\";s:29:\"disable-copyright-footer-area\";s:0:\"\";s:21:\"footer-copyright-text\";s:126:\"© Copyright 2016 Punjab Youth Club (Hong Kong) I Powered by <a href=\"http://www.greatwalsolutions.com\">GreAtwal Solutions</a>\";s:22:\"disable-auto-copyright\";s:1:\"1\";s:17:\"use-facebook-icon\";s:1:\"1\";s:16:\"use-twitter-icon\";s:1:\"0\";s:20:\"use-google-plus-icon\";s:1:\"0\";s:14:\"use-vimeo-icon\";s:1:\"0\";s:17:\"use-dribbble-icon\";s:1:\"0\";s:18:\"use-pinterest-icon\";s:1:\"0\";s:16:\"use-youtube-icon\";s:1:\"0\";s:15:\"use-tumblr-icon\";s:1:\"0\";s:17:\"use-linkedin-icon\";s:1:\"0\";s:12:\"use-rss-icon\";s:1:\"0\";s:16:\"use-behance-icon\";s:1:\"0\";s:18:\"use-instagram-icon\";s:1:\"0\";s:15:\"use-flickr-icon\";s:1:\"0\";s:16:\"use-spotify-icon\";s:1:\"0\";s:15:\"use-github-icon\";s:1:\"0\";s:22:\"use-stackexchange-icon\";s:1:\"0\";s:19:\"use-soundcloud-icon\";s:1:\"0\";s:11:\"use-vk-icon\";s:0:\"\";s:13:\"use-vine-icon\";s:0:\"\";s:17:\"ajax-page-loading\";s:1:\"0\";s:17:\"transition-method\";s:4:\"ajax\";s:32:\"disable-transition-fade-on-click\";s:1:\"0\";s:17:\"transition-effect\";s:8:\"standard\";s:13:\"loading-image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:23:\"loading-image-animation\";s:4:\"none\";s:19:\"transition-bg-color\";s:0:\"\";s:24:\"header-animate-in-effect\";s:8:\"zoom-out\";s:10:\"form-style\";s:7:\"default\";s:17:\"form-fancy-select\";s:1:\"0\";s:8:\"cta-text\";s:0:\"\";s:7:\"cta-btn\";s:0:\"\";s:12:\"cta-btn-link\";s:0:\"\";s:20:\"cta-background-color\";s:7:\"#ECEBE9\";s:14:\"cta-text-color\";s:7:\"#4B4F52\";s:13:\"cta-btn-color\";s:12:\"accent-color\";s:21:\"main_portfolio_layout\";s:1:\"3\";s:28:\"main_portfolio_project_style\";s:1:\"4\";s:21:\"portfolio_use_masonry\";s:1:\"0\";s:24:\"portfolio_inline_filters\";s:1:\"0\";s:20:\"portfolio_single_nav\";s:13:\"after_project\";s:27:\"portfolio_loading_animation\";s:19:\"fade_in_from_bottom\";s:24:\"portfolio_sidebar_follow\";s:1:\"0\";s:16:\"portfolio_social\";s:1:\"1\";s:26:\"portfolio-facebook-sharing\";s:1:\"1\";s:25:\"portfolio-twitter-sharing\";s:1:\"1\";s:29:\"portfolio-google-plus-sharing\";s:1:\"1\";s:27:\"portfolio-pinterest-sharing\";s:1:\"1\";s:26:\"portfolio-linkedin-sharing\";s:1:\"0\";s:14:\"portfolio_date\";s:1:\"0\";s:20:\"portfolio_pagination\";s:1:\"0\";s:25:\"portfolio_pagination_type\";s:7:\"default\";s:26:\"portfolio_extra_pagination\";s:1:\"0\";s:27:\"portfolio_pagination_number\";s:0:\"\";s:22:\"portfolio_rewrite_slug\";s:0:\"\";s:14:\"carousel-title\";s:0:\"\";s:13:\"carousel-link\";s:0:\"\";s:23:\"portfolio-sortable-text\";s:0:\"\";s:19:\"main-portfolio-link\";s:0:\"\";s:34:\"portfolio_same_category_single_nav\";s:1:\"0\";s:9:\"blog_type\";s:16:\"std-blog-sidebar\";s:17:\"blog_masonry_type\";s:7:\"classic\";s:22:\"blog_loading_animation\";s:4:\"none\";s:16:\"blog_header_type\";s:7:\"default\";s:17:\"blog_hide_sidebar\";s:1:\"1\";s:24:\"blog_hide_featured_image\";s:1:\"1\";s:21:\"blog_archive_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:10:\"author_bio\";s:1:\"0\";s:17:\"blog_auto_excerpt\";s:1:\"0\";s:19:\"blog_excerpt_length\";s:0:\"\";s:19:\"blog_next_post_link\";s:1:\"0\";s:11:\"blog_social\";s:1:\"1\";s:21:\"blog-facebook-sharing\";s:1:\"1\";s:20:\"blog-twitter-sharing\";s:1:\"1\";s:24:\"blog-google-plus-sharing\";s:1:\"0\";s:22:\"blog-pinterest-sharing\";s:1:\"1\";s:21:\"blog-linkedin-sharing\";s:1:\"0\";s:12:\"display_tags\";s:1:\"1\";s:17:\"display_full_date\";s:1:\"0\";s:20:\"blog_pagination_type\";s:7:\"default\";s:16:\"extra_pagination\";s:1:\"0\";s:18:\"recent-posts-title\";s:0:\"\";s:17:\"recent-posts-link\";s:0:\"\";s:10:\"zoom-level\";s:0:\"\";s:15:\"enable-map-zoom\";s:1:\"0\";s:10:\"center-lat\";s:0:\"\";s:10:\"center-lng\";s:0:\"\";s:14:\"use-marker-img\";s:1:\"0\";s:10:\"marker-img\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"enable-map-animation\";s:1:\"1\";s:11:\"map-point-1\";s:1:\"0\";s:9:\"latitude1\";s:0:\"\";s:10:\"longitude1\";s:0:\"\";s:9:\"map-info1\";s:0:\"\";s:11:\"map-point-2\";s:1:\"0\";s:9:\"latitude2\";s:0:\"\";s:10:\"longitude2\";s:0:\"\";s:9:\"map-info2\";s:0:\"\";s:11:\"map-point-3\";s:1:\"0\";s:9:\"latitude3\";s:0:\"\";s:10:\"longitude3\";s:0:\"\";s:9:\"map-info3\";s:0:\"\";s:11:\"map-point-4\";s:1:\"0\";s:9:\"latitude4\";s:0:\"\";s:10:\"longitude4\";s:0:\"\";s:9:\"map-info4\";s:0:\"\";s:11:\"map-point-5\";s:1:\"0\";s:9:\"latitude5\";s:0:\"\";s:10:\"longitude5\";s:0:\"\";s:9:\"map-info5\";s:0:\"\";s:11:\"map-point-6\";s:1:\"0\";s:9:\"latitude6\";s:0:\"\";s:10:\"longitude6\";s:0:\"\";s:9:\"map-info6\";s:0:\"\";s:11:\"map-point-7\";s:1:\"0\";s:9:\"latitude7\";s:0:\"\";s:10:\"longitude7\";s:0:\"\";s:9:\"map-info7\";s:0:\"\";s:11:\"map-point-8\";s:1:\"0\";s:9:\"latitude8\";s:0:\"\";s:10:\"longitude8\";s:0:\"\";s:9:\"map-info8\";s:0:\"\";s:11:\"map-point-9\";s:1:\"0\";s:9:\"latitude9\";s:0:\"\";s:10:\"longitude9\";s:0:\"\";s:9:\"map-info9\";s:0:\"\";s:12:\"map-point-10\";s:1:\"0\";s:10:\"latitude10\";s:0:\"\";s:11:\"longitude10\";s:0:\"\";s:10:\"map-info10\";s:0:\"\";s:20:\"add-remove-locations\";s:0:\"\";s:13:\"map-greyscale\";s:1:\"0\";s:9:\"map-color\";s:0:\"\";s:14:\"map-ultra-flat\";s:1:\"0\";s:21:\"map-dark-color-scheme\";s:1:\"0\";s:24:\"slider-caption-animation\";s:1:\"1\";s:23:\"slider-background-cover\";s:1:\"1\";s:15:\"slider-autoplay\";s:1:\"1\";s:20:\"slider-advance-speed\";s:0:\"\";s:22:\"slider-animation-speed\";s:0:\"\";s:13:\"slider-height\";s:0:\"\";s:15:\"slider-bg-color\";s:7:\"#000000\";s:24:\"sharing_btn_accent_color\";s:1:\"1\";s:12:\"facebook-url\";s:40:\"https://www.facebook.com/punjabyouthclub\";s:11:\"twitter-url\";s:0:\"\";s:15:\"google-plus-url\";s:0:\"\";s:9:\"vimeo-url\";s:0:\"\";s:12:\"dribbble-url\";s:0:\"\";s:13:\"pinterest-url\";s:0:\"\";s:11:\"youtube-url\";s:0:\"\";s:10:\"tumblr-url\";s:0:\"\";s:12:\"linkedin-url\";s:0:\"\";s:7:\"rss-url\";s:0:\"\";s:11:\"behance-url\";s:0:\"\";s:10:\"flickr-url\";s:0:\"\";s:11:\"spotify-url\";s:0:\"\";s:13:\"instagram-url\";s:0:\"\";s:10:\"github-url\";s:0:\"\";s:17:\"stackexchange-url\";s:0:\"\";s:14:\"soundcloud-url\";s:0:\"\";s:6:\"vk-url\";s:0:\"\";s:8:\"vine-url\";s:0:\"\";s:11:\"enable-cart\";s:1:\"1\";s:16:\"main_shop_layout\";s:10:\"no-sidebar\";s:21:\"single_product_layout\";s:10:\"no-sidebar\";s:13:\"product_style\";s:7:\"classic\";s:27:\"single_product_gallery_type\";s:7:\"default\";s:20:\"product_tab_position\";s:10:\"in_sidebar\";s:10:\"woo_social\";s:1:\"1\";s:20:\"woo-facebook-sharing\";s:1:\"1\";s:19:\"woo-twitter-sharing\";s:1:\"1\";s:23:\"woo-google-plus-sharing\";s:1:\"1\";s:21:\"woo-pinterest-sharing\";s:1:\"1\";s:20:\"woo-linkedin-sharing\";s:1:\"0\";s:11:\"body-border\";s:1:\"0\";s:17:\"body-border-color\";s:7:\"#ffffff\";s:16:\"body-border-size\";s:4:\"20px\";s:19:\"max_container_width\";i:1425;s:19:\"google-maps-api-key\";s:0:\"\";s:11:\"disable_tgm\";s:1:\"0\";s:22:\"disable_home_slider_pt\";s:1:\"0\";s:24:\"disable_nectar_slider_pt\";s:1:\"0\";s:20:\"extra-color-gradient\";a:2:{s:4:\"from\";s:7:\"#3452ff\";s:2:\"to\";s:7:\"#ff1053\";}s:22:\"extra-color-gradient-2\";a:2:{s:4:\"from\";s:7:\"#2AC4EA\";s:2:\"to\";s:7:\"#32d6ff\";}s:29:\"portfolio_filters_font_family\";a:0:{}s:29:\"portfolio_caption_font_family\";a:0:{}s:19:\"header-remove-fixed\";s:1:\"0\";s:17:\"header-box-shadow\";s:5:\"small\";s:24:\"header-menu-item-spacing\";i:10;s:34:\"header-dropdown-heading-font-color\";s:7:\"#ffffff\";s:22:\"header-separator-color\";s:7:\"#eeeeee\";s:29:\"header-transparent-dark-color\";s:7:\"#000000\";s:21:\"header-dropdown-style\";s:7:\"classic\";s:23:\"header-dropdown-opacity\";i:100;s:21:\"header-megamenu-width\";s:9:\"contained\";s:34:\"header-megamenu-remove-transparent\";s:1:\"0\";s:43:\"header-slide-out-widget-area-icon-animation\";s:16:\"simple-transform\";s:33:\"footer-copyright-icon-hover-color\";s:7:\"#ffffff\";s:17:\"footer-full-width\";s:1:\"0\";s:31:\"footer-background-image-overlay\";d:0.8000000000000000444089209850062616169452667236328125;s:12:\"loading-icon\";s:8:\"material\";s:19:\"loading-icon-colors\";a:2:{s:4:\"from\";s:7:\"#3452ff\";s:2:\"to\";s:7:\"#3452ff\";}s:21:\"transition-bg-color-2\";s:0:\"\";s:23:\"header-down-arrow-style\";s:7:\"default\";s:21:\"form-submit-btn-style\";s:7:\"regular\";s:27:\"main_portfolio_item_spacing\";s:7:\"default\";s:29:\"portfolio_masonry_grid_sizing\";s:7:\"default\";s:22:\"portfolio_social_style\";s:7:\"default\";s:18:\"blog_standard_type\";s:7:\"classic\";s:17:\"blog_social_style\";s:7:\"default\";s:15:\"ajax-cart-style\";s:8:\"dropdown\";s:16:\"product_bg_color\";s:7:\"#ffffff\";s:24:\"product_archive_bg_color\";s:7:\"#f6f6f6\";s:23:\"product_hover_alt_image\";s:1:\"0\";}','yes'),(4045,'salient_redux-transients','a:2:{s:14:\"changed_values\";a:1:{s:20:\"header-remove-border\";s:1:\"0\";}s:9:\"last_save\";i:1500741390;}','yes'),(4050,'woocommerce_default_country','GB','yes'),(4051,'woocommerce_allowed_countries','all','yes'),(4052,'woocommerce_all_except_countries','','yes'),(4053,'woocommerce_specific_allowed_countries','','yes'),(4054,'woocommerce_ship_to_countries','','yes'),(4055,'woocommerce_specific_ship_to_countries','','yes'),(4056,'woocommerce_default_customer_address','geolocation','yes'),(4057,'woocommerce_calc_taxes','no','yes'),(4058,'woocommerce_demo_store','no','yes'),(4059,'woocommerce_demo_store_notice','This is a demo store for testing purposes &mdash; no orders shall be fulfilled.','no'),(4060,'woocommerce_currency','GBP','yes'),(4061,'woocommerce_currency_pos','left','yes'),(4062,'woocommerce_price_thousand_sep',',','yes'),(4063,'woocommerce_price_decimal_sep','.','yes'),(4064,'woocommerce_price_num_decimals','2','yes'),(4065,'woocommerce_weight_unit','kg','yes'),(4066,'woocommerce_dimension_unit','cm','yes'),(4067,'woocommerce_enable_review_rating','yes','yes'),(4068,'woocommerce_review_rating_required','yes','no'),(4069,'woocommerce_review_rating_verification_label','yes','no'),(4070,'woocommerce_review_rating_verification_required','no','no'),(4071,'woocommerce_shop_page_id','','yes'),(4072,'woocommerce_shop_page_display','','yes'),(4073,'woocommerce_category_archive_display','','yes'),(4074,'woocommerce_default_catalog_orderby','menu_order','yes'),(4075,'woocommerce_cart_redirect_after_add','no','yes'),(4076,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(4077,'woocommerce_enable_lightbox','yes','yes'),(4078,'woocommerce_manage_stock','yes','yes'),(4079,'woocommerce_hold_stock_minutes','60','no'),(4080,'woocommerce_notify_low_stock','yes','no'),(4081,'woocommerce_notify_no_stock','yes','no'),(4082,'woocommerce_stock_email_recipient','GreAtwalSolutions@gmail.com','no'),(4083,'woocommerce_notify_low_stock_amount','2','no'),(4084,'woocommerce_notify_no_stock_amount','0','yes'),(4085,'woocommerce_hide_out_of_stock_items','no','yes'),(4086,'woocommerce_stock_format','','yes'),(4087,'woocommerce_file_download_method','force','no'),(4088,'woocommerce_downloads_require_login','no','no'),(4089,'woocommerce_downloads_grant_access_after_payment','yes','no'),(4090,'woocommerce_prices_include_tax','no','yes'),(4091,'woocommerce_tax_based_on','shipping','yes'),(4092,'woocommerce_shipping_tax_class','inherit','yes'),(4093,'woocommerce_tax_round_at_subtotal','no','yes'),(4094,'woocommerce_tax_classes','Reduced Rate\nZero Rate','yes'),(4095,'woocommerce_tax_display_shop','excl','yes'),(4096,'woocommerce_tax_display_cart','excl','no'),(4097,'woocommerce_price_display_suffix','','yes'),(4098,'woocommerce_tax_total_display','itemized','no'),(4099,'woocommerce_enable_shipping_calc','yes','no'),(4100,'woocommerce_shipping_cost_requires_address','no','no'),(4101,'woocommerce_ship_to_destination','billing','no'),(4102,'woocommerce_enable_coupons','yes','yes'),(4103,'woocommerce_calc_discounts_sequentially','no','no'),(4104,'woocommerce_enable_guest_checkout','yes','no'),(4105,'woocommerce_force_ssl_checkout','no','yes'),(4106,'woocommerce_unforce_ssl_checkout','no','yes'),(4107,'woocommerce_cart_page_id','','yes'),(4108,'woocommerce_checkout_page_id','','yes'),(4109,'woocommerce_terms_page_id','','no'),(4110,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(4111,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(4112,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(4113,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(4114,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(4115,'woocommerce_myaccount_page_id','','yes'),(4116,'woocommerce_enable_signup_and_login_from_checkout','yes','no'),(4117,'woocommerce_enable_myaccount_registration','no','no'),(4118,'woocommerce_enable_checkout_login_reminder','yes','no'),(4119,'woocommerce_registration_generate_username','yes','no'),(4120,'woocommerce_registration_generate_password','no','no'),(4121,'woocommerce_myaccount_orders_endpoint','orders','yes'),(4122,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(4123,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(4124,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(4125,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(4126,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(4127,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(4128,'woocommerce_logout_endpoint','customer-logout','yes'),(4129,'woocommerce_email_from_name','Punjab Youth Club (HK)','no'),(4130,'woocommerce_email_from_address','GreAtwalSolutions@gmail.com','no'),(4131,'woocommerce_email_header_image','','no'),(4132,'woocommerce_email_footer_text','Punjab Youth Club (HK) - Powered by WooCommerce','no'),(4133,'woocommerce_email_base_color','#557da1','no'),(4134,'woocommerce_email_background_color','#f5f5f5','no'),(4135,'woocommerce_email_body_background_color','#fdfdfd','no'),(4136,'woocommerce_email_text_color','#505050','no'),(4137,'woocommerce_api_enabled','yes','yes'),(4148,'woocommerce_admin_notices','a:2:{i:0;s:6:\"update\";i:1;s:14:\"template_files\";}','yes'),(4151,'_transient_woocommerce_cache_excluded_uris','a:0:{}','yes'),(4152,'_transient_woocommerce_webhook_ids','a:0:{}','yes'),(4153,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4154,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4155,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4156,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4157,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4158,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4159,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4160,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4161,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4162,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4163,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4164,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4168,'woocommerce_meta_box_errors','a:0:{}','yes'),(5367,'woocommerce_permalinks','a:4:{s:13:\"category_base\";s:0:\"\";s:8:\"tag_base\";s:0:\"\";s:14:\"attribute_base\";s:0:\"\";s:12:\"product_base\";s:0:\"\";}','yes'),(5373,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:9:\"moderated\";s:2:\"33\";s:4:\"spam\";s:1:\"5\";s:5:\"trash\";s:2:\"40\";s:14:\"total_comments\";i:38;s:3:\"all\";i:38;s:8:\"approved\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(5376,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(5822,'akismet_spam_count','27','yes'),(8889,'_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:57:\"https://downloads.wordpress.org/release/wordpress-4.8.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-4.8.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-4.8-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.8-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"4.8\";s:7:\"version\";s:3:\"4.8\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1500822173;s:15:\"version_checked\";s:3:\"4.8\";s:12:\"translations\";a:0:{}}','no'),(9136,'_site_transient_timeout_browser_5d9a37c6a96acca914609d0251644dda','1496736443','no'),(9137,'_site_transient_browser_5d9a37c6a96acca914609d0251644dda','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"58.0.3029.110\";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;}','no'),(9146,'can_compress_scripts','1','no'),(9167,'_site_transient_timeout_browser_2bf78cb2f6f0604d5d237b451fa3d2f4','1496744946','no'),(9168,'_site_transient_browser_2bf78cb2f6f0604d5d237b451fa3d2f4','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"49.0.2623.112\";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;}','no'),(9170,'_site_transient_timeout_browser_65f14ba6e60447cc587d6db81bdf700e','1496745917','no'),(9171,'_site_transient_browser_65f14ba6e60447cc587d6db81bdf700e','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"52.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(9173,'_site_transient_timeout_browser_973b0af64fa9ae42ab017fa2edcf5878','1496747740','no'),(9174,'_site_transient_browser_973b0af64fa9ae42ab017fa2edcf5878','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"58.0.3029.110\";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;}','no'),(9259,'_site_transient_timeout_browser_699dfc46f2edc5d25d73bee60c1bf7b9','1497166694','no'),(9260,'_site_transient_browser_699dfc46f2edc5d25d73bee60c1bf7b9','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"58.0.3029.110\";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;}','no'),(9275,'_transient_timeout_plugin_slugs','1500828026','no'),(9276,'_transient_plugin_slugs','a:8:{i:0;s:19:\"akismet/akismet.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:39:\"easy-theme-and-plugin-upgrades/init.php\";i:3;s:9:\"hello.php\";i:4;s:35:\"js_composer_salient/js_composer.php\";i:5;s:27:\"woocommerce/woocommerce.php\";i:6;s:23:\"wordfence/wordfence.php\";i:7;s:41:\"wordpress-importer/wordpress-importer.php\";}','no'),(9432,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9433,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9434,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9587,'_site_transient_timeout_browser_7d9b07d7009e294a51c5a057f2e241c2','1498690475','no'),(9588,'_site_transient_browser_7d9b07d7009e294a51c5a057f2e241c2','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"58.0.3029.110\";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;}','no'),(9589,'_site_transient_timeout_community-events-8021dd4f48d2855467a2738e2c43c85a','1498128882','no'),(9590,'_site_transient_community-events-8021dd4f48d2855467a2738e2c43c85a','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"36.72.90.0\";}s:6:\"events\";a:0:{}}','no'),(9603,'theme_mods_twentyseventeen','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"top_nav\";i:47;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1500734316;s:4:\"data\";a:5:{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:18:\"orphaned_widgets_1\";a:1:{i:0;s:6:\"text-2\";}}}}','yes'),(10174,'_site_transient_timeout_browser_6aa1710f6cbdaeb3492b9b81a594db91','1501338863','no'),(10175,'_site_transient_browser_6aa1710f6cbdaeb3492b9b81a594db91','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"59.0.3071.115\";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;}','no'),(10176,'_site_transient_timeout_community-events-168cc09b77598fe5040ce7ec2d86d43c','1500777266','no'),(10177,'_site_transient_community-events-168cc09b77598fe5040ce7ec2d86d43c','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"49.248.107.0\";}s:6:\"events\";a:0:{}}','no'),(10188,'_transient_is_multi_author','0','yes'),(10191,'_site_transient_timeout_available_translations','1500744910','no'),(10192,'_site_transient_available_translations','a:108:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-23 21:35:47\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-09 03:55:46\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.5/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-22 18:59:07\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-17 20:31:44\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/4.8/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-18 19:16:01\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-04 16:58:43\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-05 09:44:12\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-04 20:20:28\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-16 11:47:56\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 08:46:26\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:12:\"Čeština‎\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-14 13:21:24\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-14 23:24:44\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-15 21:25:12\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-15 08:50:23\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.8/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-08 16:08:42\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-15 19:58:49\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/4.8/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-21 18:05:57\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-17 08:09:19\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-23 16:48:27\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-01-26 15:53:43\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-15 07:18:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-15 05:14:35\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-27 10:36:23\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-16 17:22:41\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-07 00:53:01\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/es_VE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-01-26 15:54:37\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/es_GT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-01-26 15:54:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/es_CO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-28 20:09:49\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-20 00:55:30\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/es_AR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-18 10:53:33\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 16:37:11\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-21 08:00:44\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-09 15:50:45\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-08 18:25:22\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-23 06:47:57\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-07 13:48:37\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-05 17:58:06\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-17 20:40:15\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-07 12:07:46\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-15 13:33:29\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-16 17:29:16\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-19 08:19:39\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:39\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-12 12:20:50\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-04-13 13:55:54\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-04 13:01:37\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-25 11:16:15\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-12 09:20:11\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-16 18:44:50\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/4.8/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-07 02:07:59\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-19 07:08:35\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:25\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-05 11:43:04\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-03-17 20:40:40\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.5/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-01-26 15:54:41\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-05 19:40:47\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-03-05 09:45:10\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.18\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.18/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-26 11:11:30\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-23 11:30:58\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-20 17:04:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-02-16 13:24:21\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.7.5/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-18 18:26:58\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-08 13:05:53\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-02 13:47:38\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-19 13:38:04\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.18\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.18/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-23 10:24:37\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-13 23:57:05\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-15 10:32:19\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-15 13:54:09\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-15 09:02:13\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-08 15:29:14\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-04-24 08:35:30\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.5/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-08 11:06:53\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-18 17:49:44\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:43\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-30 02:38:08\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-19 13:54:12\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-05 09:23:39\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-01 22:52:09\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-02 09:17:00\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-05-13 09:55:38\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-15 11:24:18\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-16 05:48:05\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-05 10:14:12\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-01-26 15:54:45\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}}','no'),(10193,'_site_transient_timeout_browser_8ce1bea2f653ca2ce71bdf6183bef333','1501339032','no'),(10194,'_site_transient_browser_8ce1bea2f653ca2ce71bdf6183bef333','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"59.0.3071.115\";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;}','no'),(10195,'_site_transient_timeout_community-events-f631ce1c15c0ddb09abd3418e6ab921d','1500777484','no'),(10196,'_site_transient_community-events-f631ce1c15c0ddb09abd3418e6ab921d','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"203.218.173.0\";}s:6:\"events\";a:1:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:49:\"WordPress Developer Meetup #9: WordPress Cron Job\";s:3:\"url\";s:67:\"https://www.meetup.com/Hong-Kong-WordPress-Meetup/events/241779097/\";s:6:\"meetup\";s:26:\"Hong Kong WordPress Meetup\";s:10:\"meetup_url\";s:50:\"https://www.meetup.com/Hong-Kong-WordPress-Meetup/\";s:4:\"date\";s:19:\"2017-07-27 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:20:\"Hong Kong, Hong Kong\";s:7:\"country\";s:2:\"hk\";s:8:\"latitude\";d:22.337119999999998753992258571088314056396484375;s:9:\"longitude\";d:114.1487350000000020600054995156824588775634765625;}}}}','no'),(10197,'_transient_timeout_select2-css_style_cdn_is_up','1500821219','no'),(10198,'_transient_select2-css_style_cdn_is_up','1','no'),(10199,'_transient_timeout_select2-js_script_cdn_is_up','1500821219','no'),(10200,'_transient_select2-js_script_cdn_is_up','1','no'),(10201,'_transient_timeout_ace-editor-js_script_cdn_is_up','1500821219','no'),(10202,'_transient_ace-editor-js_script_cdn_is_up','1','no'),(10212,'wordfence_version','6.3.14','yes'),(10213,'wordfenceActivated','1','yes'),(10214,'wf_plugin_act_error','','yes'),(10217,'woocommerce_enable_reviews','yes','yes'),(10218,'woocommerce_shipping_debug_mode','no','no'),(10219,'woocommerce_version','3.1.1','yes'),(10220,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(10222,'wordfence_syncAttackDataAttempts','0','no'),(10223,'wordfence_syncingAttackData','0','no'),(10225,'wordfence_lastSyncAttackData','1500822150','no'),(10226,'_site_transient_timeout_wporg_theme_feature_list','1500751445','no'),(10227,'_site_transient_wporg_theme_feature_list','a:3:{s:6:\"Layout\";a:7:{i:0;s:11:\"grid-layout\";i:1;s:10:\"one-column\";i:2;s:11:\"two-columns\";i:3;s:13:\"three-columns\";i:4;s:12:\"four-columns\";i:5;s:12:\"left-sidebar\";i:6;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:15:\"flexible-header\";i:10;s:14:\"footer-widgets\";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:9:{i:0;s:4:\"blog\";i:1;s:10:\"e-commerce\";i:2;s:9:\"education\";i:3;s:13:\"entertainment\";i:4;s:14:\"food-and-drink\";i:5;s:7:\"holiday\";i:6;s:4:\"news\";i:7;s:11:\"photography\";i:8;s:9:\"portfolio\";}}','no'),(10237,'theme_mods_twentyfourteen','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"top_nav\";i:47;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1500741422;s:4:\"data\";a:5:{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:18:\"orphaned_widgets_1\";a:1:{i:0;s:6:\"text-2\";}}}}','yes'),(10238,'widget_widget_twentyfourteen_ephemera','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10250,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1500821668;s:7:\"checked\";a:6:{s:7:\"salient\";s:3:\"8.0\";s:13:\"twentyfifteen\";s:3:\"1.8\";s:14:\"twentyfourteen\";s:3:\"2.0\";s:15:\"twentyseventeen\";s:3:\"1.3\";s:13:\"twentysixteen\";s:3:\"1.3\";s:14:\"twentythirteen\";s:3:\"2.2\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(10252,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1500822249;s:7:\"checked\";a:8:{s:19:\"akismet/akismet.php\";s:5:\"3.3.3\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:3:\"4.8\";s:39:\"easy-theme-and-plugin-upgrades/init.php\";s:5:\"2.0.0\";s:9:\"hello.php\";s:3:\"1.6\";s:35:\"js_composer_salient/js_composer.php\";s:5:\"5.0.1\";s:27:\"woocommerce/woocommerce.php\";s:5:\"3.1.1\";s:23:\"wordfence/wordfence.php\";s:6:\"6.3.14\";s:41:\"wordpress-importer/wordpress-importer.php\";s:5:\"0.6.3\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"3.3.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.3.3.zip\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:3:\"4.8\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.8.zip\";}s:39:\"easy-theme-and-plugin-upgrades/init.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:44:\"w.org/plugins/easy-theme-and-plugin-upgrades\";s:4:\"slug\";s:30:\"easy-theme-and-plugin-upgrades\";s:6:\"plugin\";s:39:\"easy-theme-and-plugin-upgrades/init.php\";s:11:\"new_version\";s:5:\"2.0.0\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/easy-theme-and-plugin-upgrades/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/easy-theme-and-plugin-upgrades.2.0.0.zip\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"3.1.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.1.1.zip\";}s:23:\"wordfence/wordfence.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:23:\"w.org/plugins/wordfence\";s:4:\"slug\";s:9:\"wordfence\";s:6:\"plugin\";s:23:\"wordfence/wordfence.php\";s:11:\"new_version\";s:6:\"6.3.14\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wordfence/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wordfence.6.3.14.zip\";}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:32:\"w.org/plugins/wordpress-importer\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:5:\"0.6.3\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.6.3.zip\";}}}','no'),(10259,'woocommerce_db_version','3.1.1','yes'),(10262,'_transient_timeout_wc_report_sales_by_date','1500908573','no'),(10263,'_transient_wc_report_sales_by_date','a:24:{s:32:\"f474ae2f2b228fa911ad9a2784006138\";a:0:{}s:32:\"965e6277f3f6affdc03a04458fdd7c0d\";a:0:{}s:32:\"f1d1e6f060cd23bc01ff4709564a080e\";a:0:{}s:32:\"b03707f87339f675e54767d45f55ab90\";N;s:32:\"a37a05410f607798d87eb056880239d5\";a:0:{}s:32:\"76cfa0b08f6fed3a8a706b15beb6b090\";a:0:{}s:32:\"8e1c131d42d74f0b04c46de64a19ba93\";a:0:{}s:32:\"c0ddefd433ae9ec8bd1c34b28e3d52a5\";a:0:{}s:32:\"f4d3366c0492a8aa90319691837aae54\";a:0:{}s:32:\"1fc38d34acbb29603a9e13af3d764f85\";a:0:{}s:32:\"e273506a2bb124d2a92e254b414812ba\";a:0:{}s:32:\"2ff1e26911a2159359fd7156c723593c\";N;s:32:\"e8522b68b722e19b8aadfce3d8b37060\";a:0:{}s:32:\"50eb183740d0ca91fca2501ca6fd18c8\";a:0:{}s:32:\"99babf370fcf0c81350639bf219e8fd5\";a:0:{}s:32:\"eb772067437e46a3ce4febf6db76d2e2\";a:0:{}s:32:\"8a8765dc5b2ac36a4ebbaad35f32963f\";a:0:{}s:32:\"7400489417fbcc6e8f7a80e93b1c49e1\";a:0:{}s:32:\"a35a96d4af159df21df7f662d9a749ad\";a:0:{}s:32:\"fe4ea4470907e0d909e4b2f6393ce21a\";N;s:32:\"d29f9e43cee693f2769a56c080d698db\";a:0:{}s:32:\"cc0486a3e34ee7567ea8c471bc7c93b8\";a:0:{}s:32:\"4748a1926d06665948d61a57c6d82980\";a:0:{}s:32:\"0ac35cc9749120f417ee2a3cf29d4877\";a:0:{}}','no'),(10264,'_transient_timeout_wc_admin_report','1500828978','no'),(10265,'_transient_wc_admin_report','a:1:{s:32:\"98aa17c1be8959b412c712b82077fc4a\";a:0:{}}','no'),(10266,'_transient_timeout_wc_low_stock_count','1503334578','no'),(10267,'_transient_wc_low_stock_count','0','no'),(10268,'_transient_timeout_wc_outofstock_count','1503334579','no'),(10269,'_transient_wc_outofstock_count','0','no'),(10273,'_transient_timeout_wflginfl_00000000000000000000ffff520d092d','1500758539','no'),(10274,'_transient_wflginfl_00000000000000000000ffff520d092d','2','no'),(10312,'_transient_timeout_external_ip_address_103.79.168.107','1501396899','no'),(10313,'_transient_external_ip_address_103.79.168.107','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(10316,'_transient_timeout_wflginfl_00000000000000000000ffff1b221066','1500807938','no'),(10317,'_transient_wflginfl_00000000000000000000ffff1b221066','2','no'),(10319,'_site_transient_timeout_community-events-8ab214e10b3bcd23fe621840c71900af','1500838812','no'),(10320,'_site_transient_community-events-8ab214e10b3bcd23fe621840c71900af','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"110.138.63.0\";}s:6:\"events\";a:1:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:41:\"WPJKT Meetup #11 - Clean Code Development\";s:3:\"url\";s:65:\"https://www.meetup.com/Jakarta-WordPress-Meetup/events/241747419/\";s:6:\"meetup\";s:24:\"Jakarta WordPress Meetup\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/Jakarta-WordPress-Meetup/\";s:4:\"date\";s:19:\"2017-07-25 17:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Jakarta, Indonesia\";s:7:\"country\";s:2:\"id\";s:8:\"latitude\";d:-6.23486299999999982190956870908848941326141357421875;s:9:\"longitude\";d:106.82085399999999708597897551953792572021484375;}}}}','no'),(10321,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1500838813','no'),(10322,'_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:49:\"\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:4:{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:26:\"https://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:\"Wed, 19 Jul 2017 19:50:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:40:\"https://wordpress.org/?v=4.9-alpha-41112\";s:7:\"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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: June 2017\";s:7:\"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/news/2017/07/the-month-in-wordpress-june-2017/\";s: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, 03 Jul 2017 11:42: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4865\";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:342:\"We&#8217;re starting a new regular feature on this blog today. We&#8217;d like to keep everyone up-to-date about the happenings all across the WordPress open source project and highlight how you can get involved, so we&#8217;ll be posting a roundup of all the major WordPress news at the end of every month. Aside from other general [&#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:\"Hugh Lashbrooke\";s: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:9225:\"<p><i>We&#8217;re starting a new regular feature on this blog today. We&#8217;d like to keep everyone up-to-date about the happenings all across the WordPress open source project and highlight how you can get involved, so we&#8217;ll be posting a roundup of all the major WordPress news at the end of every month.</i></p>\n<p>Aside from other general news, the three big events in June were the release of WordPress 4.8, WordCamp Europe 2017, and the WordPress Community Summit. Read on to hear more about these as well as other interesting stories from around the WordPress world.</p>\n<hr />\n<h2>WordPress 4.8</h2>\n<p>On June 8, a week before the Community Summit and WordCamp Europe,<a href=\"https://wordpress.org/news/2017/06/evans/\"> WordPress 4.8 was released</a>.You can read<a href=\"https://make.wordpress.org/core/2017/05/26/wordpress-4-8-field-guide/\"> the Field Guide</a> for a comprehensive overview of all the features of this release (the News and Events widget in the dashboard is one of the major highlights).</p>\n<p>Most people would either have their version auto-updated, or their hosts would have updated it for them. For the rest, the updates have gone smoothly with no major issues reported so far.</p>\n<p>This WordPress release saw contributions from 346 individuals; you can find their names in <a href=\"https://wordpress.org/news/2017/06/evans/\">the announcement post</a>. To get involved in building WordPress core, jump into the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n<h2>WordCamp Europe 2017</h2>\n<p><a href=\"https://2017.europe.wordcamp.org/\">WordCamp Europe 2017</a> was held in Paris between June 15-17. The event began with a Contributor Day, followed by two days of talks and community goodness. The talks were live-streamed, but you can still catch all the recordings <a href=\"http://wordpress.tv/event/wordcamp-europe-2017/\">on WordPress.tv</a>. The organisers also published <a href=\"https://2017.europe.wordcamp.org/2017/06/30/wordcamp-europe-2017-in-paris-its-a-wrap/\">a handy wrap-up of the event</a>.</p>\n<p>WordCamp Europe exists to bring together the WordPress community from all over the continent, as well as to inspire local communities everywhere to get their own events going — to that end, the event was a great success, as a host of new meetup groups have popped up in the weeks following WordCamp Europe.</p>\n<p>The work that Contributor Day participants accomplished was both varied and valuable, covering all aspects of the WordPress project — have a look through <a href=\"https://make.wordpress.org/\">the Make blogs</a> for updates from each team.</p>\n<p>Finally, we also learned during the event that <a href=\"https://2017.europe.wordcamp.org/2017/06/17/belgrade-serbia-to-host-wordcamp-europe-2018/\">WordCamp Europe 2018 will be held in Belgrade, Serbia</a>, continuing the tradition of exploring locations and communities across the continent.</p>\n<h2>WordPress Community Summit</h2>\n<p>The fourth WordPress Community Summit took place during the two days leading up to WordCamp Europe 2017. This event is an invite-only unconference where people from all over the WordPress community come together to discuss some of the more difficult issues in the community, as well as to make plans for the year ahead in each of the contribution teams.</p>\n<p>As the Summit is designed to be a safe space for all attendees, the notes from each discussion are in the process of being anonymized before we publish them on <a href=\"https://make.wordpress.org/summit/\">the Summit blog</a> (so stay tuned &#8211; they’ll show up there over the next few weeks).</p>\n<p>You can already see the final list of topics that were proposed for the event <a href=\"https://make.wordpress.org/summit/2017/06/10/community-summit-2017-final-list-of-topic/\">here</a> (although a few more were added during the course of the two day Summit).</p>\n<h2>WordPress marketing push continues apace</h2>\n<p>As part of the push to be more intentional in marketing WordPress (as per Matt Mullenweg&#8217;s <a href=\"http://wordpress.tv/2016/12/07/matt-mullenweg-state-of-the-word-2016/\">2016 State of the Word</a>), the Marketing team has launched two significant drives to obtain more information about who uses WordPress and how that information can shape their outreach and messaging efforts.</p>\n<p><a href=\"https://make.wordpress.org/marketing/2017/06/15/wordpress-case-studies-and-usage-survey/\">The team is looking for WordPress case studies</a> and is asking users, agencies, and freelancers to take a WordPress usage survey. This will go a long way towards establishing a marketing base for WordPress as a platform and as a community — and many people in the community are looking forward to seeing this area develop further.</p>\n<p>To get involved in the WordPress Marketing team, you can visit <a href=\"https://make.wordpress.org/marketing/\">their team blog</a>.</p>\n<h2>New Gutenberg editor available for testing</h2>\n<p>For some time now, the Core team has been hard at work on a brand-new text editor for WordPress — this project has been dubbed “Gutenberg.” The project’s ultimate goal is to replace the existing TinyMCE editor, but for now it is in beta and available for public testing — <a href=\"https://wordpress.org/plugins/gutenberg/\">you can download it here as a plugin</a> and install it on any WordPress site.</p>\n<p>This feature is still in beta, so we don’t recommend using it on a production site. If you test it out, though, you’ll find that it is a wholly different experience to what you are used to in WordPress. It’s a more streamlined, altogether cleaner approach to the text-editing experience than we’ve had before, and something that many people are understandably excited about. Matt Mullenweg discussed the purpose of Gutenberg in more detail during <a href=\"http://wordpress.tv/2017/07/01/interview-and-qanda-with-matt-mullenweg/\">his Q&amp;A at WordCamp Europe</a>.</p>\n<p>There are already a few reviews out from <a href=\"https://kinsta.com/blog/gutenberg-wordpress-editor/\">Brian Jackson at Kinsta</a>, <a href=\"https://daily.jorb.in/2017/06/random-thoughts-on-gutenberg/\">Aaron Jorbin</a>, and <a href=\"https://www.mattcromwell.com/gutenberg-first-impressions/\">Matt Cromwell</a> (among many others). Keep in mind that the project is in constant evolution at this stage; when it eventually lands in WordPress core (probably in v5.0), it could look very different from its current iteration — that’s what makes this beta stage and user testing so important.</p>\n<p>To get involved with shaping the future of Gutenberg, please <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">test it out</a>, and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>. You can also visit <a href=\"https://github.com/WordPress/gutenberg\">the project’s GitHub repository</a> to report issues and contribute to the codebase.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li style=\"font-weight: 400\">Bridget Willard <a href=\"https://make.wordpress.org/community/2017/06/21/proposed-wordcamp-editorial-calendar/\">has proposed an editorial calendar</a> to assist WordCamp organizers with publishing content for their event.</li>\n<li style=\"font-weight: 400\">A new kind of niche WordCamp, <a href=\"https://2017-denver.journalist.wordcamp.org/\">WordCamp for Publishers in Denver</a>, has opened ticket sales.</li>\n<li style=\"font-weight: 400\">The WordPress iOS app was updated with <a href=\"https://en.blog.wordpress.com/2017/06/21/an-all-new-media-library-for-the-wordpress-ios-app/\">a fresh, new media library</a> this month.</li>\n<li style=\"font-weight: 400\">It looks like <i>Underscores</i>, the popular WordPress starter theme, <a href=\"https://themeshaper.com/2017/06/26/the-future-of-underscores-and-a-new-committer/\">has a bright future ahead of it</a>, with a renewed vision and new committer.</li>\n<li style=\"font-weight: 400\">The always-inspiring Tom McFarlin <a href=\"https://tommcfarlin.com/simple-autoloader-for-wordpress\">has released a simple autoloader for WordPress</a> that looks very useful indeed.</li>\n<li style=\"font-weight: 400\">After a bit of a discussion on Twitter regarding the differences between WordPress.org, WordPress.com, and Jetpack, <a href=\"https://helen.wordpress.com/2017/06/21/restaurant-vs-meal-kit-vs-grocery-shopping-or-wordpress-com-vs-jetpack-vs-wordpress-org/\">Helen Hou-Sandí came up with a great analogy</a> and an interesting post about it all.</li>\n<li style=\"font-weight: 400\">If you’re interested in contributing specifically to the JavaScript or PHP areas of the WordPress core codebase, then the new #core-js and #core-php channels in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> are perfect for you.</li>\n</ul>\n<p><i>If you have a story we should consider including in the next “Month in WordPress” post, please </i><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><i>submit it here</i></a><i>.</i></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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4865\";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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 4.8 “Evans”\";s:7:\"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/news/2017/06/evans/\";s: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 Jun 2017 14:49: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: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:34:\"https://wordpress.org/news/?p=4770\";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:\"An Update with You in Mind Gear up for a more intuitive WordPress! Version 4.8 of WordPress, named &#8220;Evans&#8221; in honor of jazz pianist and composer William John &#8220;Bill&#8221; Evans, is available for download or update in your WordPress dashboard. New features in 4.8 add more ways for you to express yourself and represent your brand. Though some [&#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:42629:\"<h2 style=\"text-align: center\">An Update with You in Mind</h2>\n<p><img class=\"aligncenter size-large wp-image-4816\" src=\"https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=632%2C316&#038;ssl=1\" alt=\"\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=1024%2C512&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=300%2C150&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=768%2C384&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<h3>Gear up for a more intuitive WordPress!</h3>\n<p>Version 4.8 of WordPress, named &#8220;Evans&#8221; in honor of jazz pianist and composer William John &#8220;Bill&#8221; Evans, is available for download or update in your WordPress dashboard. New features in 4.8 add more ways for you to express yourself and represent your brand.</p>\n<p>Though some updates seem minor, they’ve been built by hundreds of contributors with <em>you</em> in mind. Get ready for new features you’ll welcome like an old friend: link improvements, <em>three</em> new media widgets covering images, audio, and video, an updated text widget that supports visual editing, and an upgraded news section in your dashboard which brings in nearby and upcoming WordPress events.</p>\n<hr />\n<h2 style=\"text-align: center\">Exciting Widget Updates</h2>\n<p><img class=\"size-large wp-image-4776 aligncenter\" src=\"https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=632%2C436&#038;ssl=1\" alt=\"\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=1024%2C706&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=300%2C207&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=768%2C530&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<h3>Image Widget</h3>\n<p>Adding an image to a widget is now a simple task that is achievable for any WordPress user without needing to know code. Simply insert your image right within the widget settings. Try adding something like a headshot or a photo of your latest weekend adventure — and see it appear automatically.</p>\n<h3>Video Widget</h3>\n<p>A welcome video is a great way to humanize the branding of your website. You can now add any video from the Media Library to a sidebar on your site with the new Video widget. Use this to showcase a welcome video to introduce visitors to your site or promote your latest and greatest content.</p>\n<h3>Audio Widget</h3>\n<p>Are you a podcaster, musician, or avid blogger? Adding a widget with your audio file has never been easier. Upload your audio file to the Media Library, go to the widget settings, select your file, and you’re ready for listeners. This would be a easy way to add a more personal welcome message, too!</p>\n<h3>Rich Text Widget</h3>\n<p>This feature deserves a parade down the center of town! Rich-text editing capabilities are now native for Text widgets. Add a widget anywhere and format away. Create lists, add emphasis, and quickly and easily insert links. Have fun with your newfound formatting powers, and watch what you can accomplish in a short amount of time.</p>\n<hr />\n<h2 style=\"text-align: center\">Link Boundaries</h2>\n<div id=\"v-8BDWH3QG-1\" class=\"video-player\"><video id=\"v-8BDWH3QG-1-video\" width=\"632\" height=\"342\" poster=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.original.jpg\" controls=\"true\" preload=\"metadata\" dir=\"ltr\" lang=\"en\"><source src=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.mp4\" type=\"video/mp4; codecs=&quot;avc1.64001E, mp4a.40.2&quot;\" /><source src=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_fmt1.ogv\" type=\"video/ogg; codecs=&quot;theora, vorbis&quot;\" /><div><img alt=\"Link Boundaries\" src=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.original.jpg?resize=632%2C342\" data-recalc-dims=\"1\" /></div><p>Link Boundaries</p></video></div>\n<p>Have you ever tried updating a link, or the text around a link, and found you can&#8217;t seem to edit it correctly? When you edit the text after the link, your new text also ends up linked. Or you edit the text in the link, but your text ends up outside of it. This can be frustrating! With link boundaries, a great new feature, the process is streamlined and your links will work well. You’ll be happier. We promise.</p>\n<hr />\n<h2 style=\"text-align: center\">Nearby WordPress Events</h2>\n<p><img class=\"aligncenter wp-image-4779 size-large\" src=\"https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=632%2C465&#038;ssl=1\" alt=\"\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=1024%2C753&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=300%2C221&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=768%2C565&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?w=1126&amp;ssl=1 1126w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Did you know that WordPress has a thriving offline community with groups meeting regularly in more than 400 cities around the world? WordPress now draws your attention to the events that help you continue improving your WordPress skills, meet friends, and, of course, publish!</p>\n<p>This is quickly becoming one of our favorite features. While you are in the dashboard (because you’re running updates and writing posts, right?) all upcoming WordCamps and official WordPress Meetups — local to you — will be displayed.</p>\n<p>Being part of the community can help you improve your WordPress skills and network with people you wouldn&#8217;t otherwise meet. Now you can easily find your local events just by logging in to your dashboard and looking at the new Events and News dashboard widget.</p>\n<hr />\n<h2 style=\"text-align: center\">Even More Developer Happiness <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f60a.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></h2>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/17/cleaner-headings-in-the-admin-screens/\">More Accessible Admin Panel Headings</a></h3>\n<p>New CSS rules mean extraneous content (like “Add New” links) no longer need to be included in admin-area headings. These panel headings improve the experience for people using assistive technologies.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/22/removal-of-core-embedding-support-for-wmv-and-wma-file-formats/\">Removal of Core Support for WMV and WMA Files</a></h3>\n<p>As fewer and fewer browsers support Silverlight, file formats which require the presence of the Silverlight plugin are being removed from core support. Files will still display as a download link, but will no longer be embedded automatically.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/22/multisite-focused-changes-in-4-8/\">Multisite Updates</a></h3>\n<p>New capabilities have been introduced to 4.8 with an eye towards removing calls to<br />\n<code>is_super_admin()</code>. Additionally, new hooks and tweaks to more granularly control site and user counts per network have been added.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/23/addition-of-tinymce-to-the-text-widget/\">Text-Editor JavaScript API</a></h3>\n<p>With the addition of TinyMCE to the text widget in 4.8 comes a new JavaScript API for instantiating the editor after page load. This can be used to add an editor instance to any text area, and customize it with buttons and functions. Great for plugin authors!</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/26/media-widgets-for-images-video-and-audio/\">Media Widgets API</a></h3>\n<p>The introduction of a new base media widget REST API schema to 4.8 opens up possibilities for even more media widgets (like galleries or playlists) in the future. The three new media widgets are powered by a shared base class that covers most of the interactions with the media modal. That class also makes it easier to create new media widgets and paves the way for more to come.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/16/customizer-sidebar-width-is-now-variable/\">Customizer Width Variable</a></h3>\n<p>Rejoice! New responsive breakpoints have been added to the customizer sidebar to make it wider on high-resolution screens. Customizer controls should use percentage-based widths instead of pixels.</p>\n<hr />\n<h2 style=\"text-align: center\">The Squad</h2>\n<p>This release was led by <a href=\"https://matt.blog\">Matt</a> and <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>, with the help of the following fabulous folks. There are 346 contributors with props in this release, with 106 of them contributing for the first time. Pull up some Bill Evans on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abrightclearweb\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed\">achbed</a>, <a href=\"https://profiles.wordpress.org/acmethemes\">Acme Themes</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adammacias\">adammacias</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>, <a href=\"https://profiles.wordpress.org/airesvsg\">airesvsg</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Bj&#246;rklund</a>, <a href=\"https://profiles.wordpress.org/akshayvinchurkar\">akshayvinchurkar</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/ironpaperweight\">Alex Hon</a>, <a href=\"https://profiles.wordpress.org/alex27\">alex27</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andrewp-2\">Andreas Panag</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/aniketpant\">Aniket Pant</a>, <a href=\"https://profiles.wordpress.org/anilbasnet\">Anil Basnet</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/antisilent\">antisilent</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/zuige\">Antti Kuosmanen</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/artoliukkonen\">artoliukkonen</a>, <a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>, <a href=\"https://profiles.wordpress.org/attitude\">attitude</a>, <a href=\"https://profiles.wordpress.org/backermann\">backermann</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/quasel\">Bernhard Gronau</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/binarymoon\">binarymoon</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boboudreau\">boboudreau</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/brainstormforce\">Brainstorm Force</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brianhogg\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/chaos-engine\">Chaos Engine</a>, <a href=\"https://profiles.wordpress.org/cheeserolls\">cheeserolls</a>, <a href=\"https://profiles.wordpress.org/chesio\">chesio</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chredd\">chredd</a>, <a href=\"https://profiles.wordpress.org/chrisjean\">Chris Jean</a>, <a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"https://profiles.wordpress.org/chris_d2d\">Chris Smith</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriswiegman\">Chris Wiegman</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/christian1012\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/cwpnolen\">Christian Nolen</a>, <a href=\"https://profiles.wordpress.org/needle\">Christian Wach</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/clarionwpdeveloper\">Clarion Technologies</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiosmweb\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiolabarbera\">ClaudioLaBarbera</a>, <a href=\"https://profiles.wordpress.org/codemovementpk\">codemovement.pk</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/codfish\">codfish</a>, <a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>, <a href=\"https://profiles.wordpress.org/curdin\">Curdin Krummenacher</a>, <a href=\"https://profiles.wordpress.org/cgrymala\">Curtiss Grymala</a>, <a href=\"https://profiles.wordpress.org/cdog\">Cătălin Dogaru</a>, <a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>, <a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>, <a href=\"https://profiles.wordpress.org/danielpietrasik\">Daniel Pietrasik</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/goto10\">Dave Romsey (goto10)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dglingren\">David Lingren</a>, <a href=\"https://profiles.wordpress.org/davidmosterd\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/davidbhayes\">davidbhayes</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/deeptiboddapati\">deeptiboddapati</a>, <a href=\"https://profiles.wordpress.org/delphinus\">delphinus</a>, <a href=\"https://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/derrickkoo\">Derrick Koo</a>, <a href=\"https://profiles.wordpress.org/dimchik\">dimchik</a>, <a href=\"https://profiles.wordpress.org/dineshc\">Dinesh Chouhan</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">Dipesh Kakadiya</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/doughamlin\">doughamlin</a>, <a href=\"https://profiles.wordpress.org/dreamon11\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/duncanjbrown\">duncanjbrown</a>, <a href=\"https://profiles.wordpress.org/dungengronovius\">dungengronovius</a>, <a href=\"https://profiles.wordpress.org/dylanauty\">DylanAuty</a>, <a href=\"https://profiles.wordpress.org/hurtige\">Eddie Hurtig</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/enshrined\">enshrined</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/pushred\">Eric Lanehart</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fencer04\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/fomenkoandrey\">fomenkoandrey</a>, <a href=\"https://profiles.wordpress.org/frankiet\">Francesco Taurino</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/akeif\">Fred</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/fuscata\">fuscata</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekysoft\">Geeky Software</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/goranseric\">Goran &#352;erić</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/grantderepas\">Grant Derepas</a>, <a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/hiddenpearls\">hiddenpearls</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hristo-sg\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianedington\">Ian Edington</a>, <a href=\"https://profiles.wordpress.org/idealien\">idealien</a>, <a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/implenton\">implenton</a>, <a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ivdimova\">ivdimova</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesacero\">jamesacero</a>, <a href=\"https://profiles.wordpress.org/japh\">Japh</a>, <a href=\"https://profiles.wordpress.org/jaredcobb\">Jared Cobb</a>, <a href=\"https://profiles.wordpress.org/jayarjo\">jayarjo</a>, <a href=\"https://profiles.wordpress.org/jdolan\">jdolan</a>, <a href=\"https://profiles.wordpress.org/jdoubleu\">jdoubleu</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jimt\">jimt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jmusal\">jmusal</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelcj91\">Joel James</a>, <a href=\"https://profiles.wordpress.org/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johanmynhardt\">johanmynhardt</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/zyphonic\">John Dittmar</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>, <a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/daggerhart\">Jonathan Daggerhart</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>, <a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorritschippers\">JorritSchippers</a>, <a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>, <a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshcummingsdesign\">joshcummingsdesign</a>, <a href=\"https://profiles.wordpress.org/joshkadis\">joshkadis</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jrgould\">JRGould</a>, <a href=\"https://profiles.wordpress.org/juanfra\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/justinbusa\">Justin Busa</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jshreve\">Justin Shreve</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kacperszurek\">kacperszurek</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kalenjohnson\">KalenJohnson</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/kellbot\">kellbot</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/khag7\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/koenschipper\">koenschipper</a>, <a href=\"https://profiles.wordpress.org/kokarn\">kokarn</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kouratoras\">Konstantinos Kouratoras</a>, <a href=\"https://profiles.wordpress.org/kuchenundkakao\">kuchenundkakao</a>, <a href=\"https://profiles.wordpress.org/kuldipem\">kuldipem</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leobaiano\">Leo Baiano</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">LittleBigThings (Csaba)</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/lyubomir_popov\">lyubomir_popov</a>, <a href=\"https://profiles.wordpress.org/mageshp\">mageshp</a>, <a href=\"https://profiles.wordpress.org/mahesh901122\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mangeshp\">Mangesh Parte</a>, <a href=\"https://profiles.wordpress.org/manishsongirkar36\">Manish Songirkar</a>, <a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>, <a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">Mario Valney</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">Mariyan Belchev</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markshep\">markshep</a>, <a href=\"https://profiles.wordpress.org/matveb\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/matrixik\">matrixik</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/jaworskimatt\">Matt Jaworski</a>, <a href=\"https://profiles.wordpress.org/mattking5000\">Matt King</a>, <a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/mckernanin\">mckernanin</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mhowell\">mhowell</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/stubgo\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeviele\">Mike Viele</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/deremohan\">Mohan Dere</a>, <a href=\"https://profiles.wordpress.org/monikarao\">monikarao</a>, <a href=\"https://profiles.wordpress.org/morettigeorgiev\">morettigeorgiev</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrbobbybryant\">mrbobbybryant</a>, <a href=\"https://profiles.wordpress.org/nnaimov\">Naim Naimov</a>, <a href=\"https://profiles.wordpress.org/natereist\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/natewr\">NateWr</a>, <a href=\"https://profiles.wordpress.org/nathanrice\">nathanrice</a>, <a href=\"https://profiles.wordpress.org/nazgul\">Nazgul</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/krstarica\">net</a>, <a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>, <a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/odie2\">odie2</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/orvils\">orvils</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/ottok\">Otto Kek&#228;l&#228;inen</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>, <a href=\"https://profiles.wordpress.org/imnok\">Pantip Treerattanapitak (Nok)</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patilvikasj\">patilvikasj</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/phh\">phh</a>, <a href=\"https://profiles.wordpress.org/php\">php</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/pippinsplugins\">pippinsplugins</a>, <a href=\"https://profiles.wordpress.org/pjgalbraith\">pjgalbraith</a>, <a href=\"https://profiles.wordpress.org/pkevan\">pkevan</a>, <a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pressionate\">Pressionate</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/procodewp\">procodewp</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiabraham\">ramiabraham</a>, <a href=\"https://profiles.wordpress.org/ranh\">ranh</a>, <a href=\"https://profiles.wordpress.org/redsand\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>, <a href=\"https://profiles.wordpress.org/iamjolly\">Robert Jolly</a>, <a href=\"https://profiles.wordpress.org/rnoakes3rd\">Robert Noakes</a>, <a href=\"https://profiles.wordpress.org/d4z_c0nf\">Rocco Aliberti</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>, <a href=\"https://profiles.wordpress.org/fronaldaraujo\">Ronald Ara&#250;jo</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/guavaworks\">Roy Sivan</a>, <a href=\"https://profiles.wordpress.org/ryankienstra\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ryanplas\">Ryan Plas</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/sandesh055\">Sandesh</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/sanketparmar\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/pollyplummer\">Sarah Gooding</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/schrapel\">schrapel</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scrappyhuborg\">scrappy@hub.org</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seancjones\">seancjones</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sgr33n\">Sergio De Falco</a>, <a href=\"https://profiles.wordpress.org/sfpt\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shayanys\">shayanys</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/shprink\">shprink</a>, <a href=\"https://profiles.wordpress.org/simonlampen\">simonlampen</a>, <a href=\"https://profiles.wordpress.org/skippy\">skippy</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snacking\">snacking</a>, <a href=\"https://profiles.wordpress.org/solal\">solal</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/sharkomatic\">Steph</a>, <a href=\"https://profiles.wordpress.org/sswells\">Steph Wells</a>, <a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/patilswapnilv\">Swapnil V. Patil</a>, <a href=\"https://profiles.wordpress.org/swapnild\">swapnild</a>, <a href=\"https://profiles.wordpress.org/szaqal21\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tapsboy\">tapsboy</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/team\">team</a>, <a href=\"https://profiles.wordpress.org/tg29359\">tg29359</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/the\">the</a>, <a href=\"https://profiles.wordpress.org/themeshaper\">themeshaper</a>, <a href=\"https://profiles.wordpress.org/thenbrent\">thenbrent</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"https://profiles.wordpress.org/tnash\">Tim Nash</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph\">timph</a>, <a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tnegri\">tnegri</a>, <a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/traversal\">traversal</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>, <a href=\"https://profiles.wordpress.org/trishasalas\">Trisha Salas</a>, <a href=\"https://profiles.wordpress.org/tristangemus\">tristangemus</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tsl143\">tsl143</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/valeriutihai\">Valeriu Tihai</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/vrundakansara-1\">Vrunda Kansara</a>, <a href=\"https://profiles.wordpress.org/webbgaraget\">webbgaraget</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design &#124; Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/wraithkenny\">WraithKenny</a>, <a href=\"https://profiles.wordpress.org/yale01\">yale01</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yogasukma\">Yoga Sukma</a>, <a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>, <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>, <a href=\"https://profiles.wordpress.org/zhildzik\">zhildzik</a>, and <a href=\"https://profiles.wordpress.org/zsusag\">zsusag</a>.\n<p>&nbsp;</p>\n<p>Finally, thanks to all the community translators who worked on WordPress 4.8. Their efforts bring WordPress 4.8 fully translated to 38 languages at release time with more on the way.</p>\n<p>Do you want to report on WordPress 4.8? <a href=\"https://s.w.org/images/core/4.8/wp-4-8_press-kit.zip\">We&#8217;ve compiled a press kit</a> featuring information about the release features, and some media assets to help you along.</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress — we hope you enjoy!</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4770\";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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 4.8 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:69:\"https://wordpress.org/news/2017/06/wordpress-4-8-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jun 2017 22:13: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: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:34:\"https://wordpress.org/news/?p=4765\";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:336:\"The second release candidate for WordPress 4.8 is now available. To test WordPress 4.8, you can use the WordPress Beta Tester plugin or you can download the release candidate here (zip). We&#8217;ve made a handful of changes since releasing RC 1 last week. For more details about what&#8217;s new in version 4.8, check out 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:10:\"Mel Choyce\";s: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:1173:\"<p>The second release candidate for WordPress 4.8 is now available.</p>\n<p>To test WordPress 4.8, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.8-RC2.zip\">download the release candidate here</a> (zip).</p>\n<p>We&#8217;ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=40866&amp;stop_rev=40847\">a handful of changes</a> since releasing RC 1 last week. For more details about what&#8217;s new in version 4.8, check out the <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-release-candidate/\">RC1</a> blog posts.</p>\n<p><strong>Think you&#8217;ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you&#8217;ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>Happy testing!</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4765\";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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.8 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:67:\"https://wordpress.org/news/2017/05/wordpress-4-8-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 May 2017 23:04: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: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:34:\"https://wordpress.org/news/?p=4758\";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:325:\"The release candidate for WordPress 4.8 is now available. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.8 on Thursday, June 8, but we need your help to get there. If you haven’t tested 4.8 yet, [&#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:10:\"Mel Choyce\";s: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:2365:\"<p>The release candidate for WordPress 4.8 is now available.</p>\n<p>RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.8 on <strong>Thursday, June 8</strong>, but we need <em>your</em> help to get there. If you haven’t tested 4.8 yet, now is the time!</p>\n<p>To test WordPress 4.8, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.8-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>We&#8217;ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=40840&amp;stop_rev=40821\">a handful of changes</a> since releasing Beta 2 earlier this week. For more details about what’s new in version 4.8, check out the <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-2/\">Beta 2</a> blog posts.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.8 and update your plugin’s <em>Tested up to</em> version in the readme to 4.8. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we work hard to avoid breaking things. An in-depth field guide to developer-focused changes is coming soon on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p>This release&#8217;s haiku is courtesy of <a href=\'https://profiles.wordpress.org/matveb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matveb</a>:</p>\n<p><em>Érrese uno</em><br />\n<em>Cien veces y más</em><br />\n<em>Erre ce dos</em></p>\n<p>Thanks for your continued help testing out the latest versions of WordPress.</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4758\";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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.8 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:56:\"https://wordpress.org/news/2017/05/wordpress-4-8-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 23 May 2017 00: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: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:34:\"https://wordpress.org/news/?p=4749\";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.8 Beta 2 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.8, 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:10:\"Mel Choyce\";s: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:1621:\"<p>WordPress 4.8 Beta 2 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.8, try the <a href=\"https://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.8-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.8, check out the <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\">Beta 1</a> blog post. Since then, we’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=40819&amp;stop_rev=40664&amp;limit=100&amp;sfp_email=&amp;sfph_mail=\">over 50 changes</a> in Beta 2.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://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 WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>WordPress four point eight<br />\nOne step closer to release<br />\nPlease test Beta 2!</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4749\";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:39:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.7.5 Security and 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:51:\"https://wordpress.org/news/2017/05/wordpress-4-7-5/\";s: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, 16 May 2017 22:39:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4734\";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:\"WordPress 4.7.5 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.4 and earlier are affected by six security issues: Insufficient redirect validation in the HTTP class. Reported by Ronni Skansing. Improper handling of post meta data values in the XML-RPC [&#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:\"Pascal Birchler\";s: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:2349:\"<p>WordPress 4.7.5 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.4 and earlier are affected by six security issues:</p>\n<ol>\n<li>Insufficient redirect validation in the HTTP class. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>Improper handling of post meta data values in the XML-RPC API. Reported by <a href=\"https://hackerone.com/jazzy2fives\">Sam Thomas</a>.</li>\n<li>Lack of capability checks for post meta data in the XML-RPC API. Reported by <a href=\"https://profiles.wordpress.org/vortfu\">Ben Bidner</a> of the WordPress Security Team.</li>\n<li>A Cross Site Request Forgery (CSRF)  vulnerability was discovered in the filesystem credentials dialog. Reported by <a href=\"https://twitter.com/yorickkoster\">Yorick Koster</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered when attempting to upload very large files. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered related to the Customizer. Reported by <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a> of the WordPress Security Team.</li>\n</ol>\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.5 contains 3 maintenance fixes to the 4.7 release series. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.5\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=4.7.5&amp;group=component&amp;col=id&amp;col=summary&amp;col=component&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=keywords&amp;order=priority\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.5</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.5.</p>\n<p>Thanks to everyone who contributed to 4.7.5.</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4734\";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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress Now on HackerOne\";s:7:\"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/news/2017/05/wordpress-now-on-hackerone/\";s: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, 15 May 2017 16:02:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;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:34:\"https://wordpress.org/news/?p=4730\";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:322:\"WordPress has grown a lot over the last thirteen years – it now powers more than 28% of the top ten million sites on the web. During this growth, each team has worked hard to continually improve their tools and processes. Today, the WordPress Security Team is happy to announce that WordPress is now officially [&#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:17:\"Aaron D. Campbell\";s: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:1715:\"<p>WordPress has grown a lot over the last thirteen years – it now powers more than 28% of the top ten million sites on the web. During this growth, each team has worked hard to continually improve their tools and processes. Today, the WordPress Security Team is happy to announce that <a href=\"https://hackerone.com/wordpress\">WordPress is now officially on HackerOne</a>!</p>\n<p><a href=\"https://www.hackerone.com/about\">HackerOne</a> is a platform for security researchers to securely and responsibly report vulnerabilities to our team. It provides tools that improve the quality and consistency of communication with reporters, and will reduce the time spent on responding to commonly reported issues. This frees our team to spend more time working on improving the security of WordPress.</p>\n<p>The security team has been working on this project for quite some time. Nikolay Bachiyski started the team working on it just over a year ago. We ran it as a private program while we worked out our procedures and processes, and are excited to finally make it public.</p>\n<p>With the announcement of the WordPress HackerOne program we are also introducing bug bounties. Bug bounties let us reward reporters for disclosing issues to us and helping us secure our products and infrastructure. We&#8217;ve already awarded more than $3,700 in bounties to seven different reporters! We are thankful to Automattic for paying the bounties on behalf of the WordPress project.</p>\n<p>The program and bounties cover all our projects including WordPress, BuddyPress, bbPress, GlotPress, and WP-CLI as well as all of our sites including WordPress.org, bbPress.org, WordCamp.org, BuddyPress.org, and GlotPress.org.</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4730\";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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.8 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:56:\"https://wordpress.org/news/2017/05/wordpress-4-8-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 13 May 2017 00:15: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: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:34:\"https://wordpress.org/news/?p=4727\";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:342:\"We&#8217;re planning a smaller WP release early next month, bringing in three major enhancements: An improved visual editor experience, with a new TinyMCE that allows you to navigate more intuitively in and out of inline elements like links. (Try it out to see, it&#8217;s hard to describe.) A revamp of the dashboard news widget to [&#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:1148:\"<p>We&#8217;re planning a smaller WP release early next month, bringing in three major enhancements:</p>\n<ul>\n<li>An improved visual editor experience, with a new TinyMCE that allows you to navigate more intuitively in and out of inline elements like links. (Try it out to see, it&#8217;s hard to describe.)</li>\n<li>A revamp of the dashboard news widget to bring in nearby and upcoming events including meetups and WordCamps.</li>\n<li>Several new media widgets covering images, audio, and video, and an enhancement to the text widget to support visual editing.</li>\n</ul>\n<p>The first beta of 4.8 is now available for testing. You can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">beta tester plugin</a> (or just run trunk) to try the latest and greatest, and each of these areas could use a ton of testing. Our goals are to make editing posts with links more intuitive, make widgets easier for new users and more convenient for existing ones, and get many more people aware of and attending our community events.</p>\n<p><em>Four point eight is here<br />\nSmall changes with a big punch<br />\nBig ones come later</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4727\";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:36:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 4.7.4 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:51:\"https://wordpress.org/news/2017/04/wordpress-4-7-4/\";s: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 Apr 2017 17:54: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: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:3:\"4.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4710\";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:376:\"After almost sixty million downloads of WordPress 4.7, we are pleased to announce the immediate availability of WordPress 4.7.4, a maintenance release. This release contains 47 bug fixes and enhancements, chief among them an incompatibility between the upcoming Chrome version and the visual editor, inconsistencies in media handling, and further improvements to the REST API.\";s: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:\"Pascal Birchler\";s: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:4518:\"<p>After almost sixty million downloads of WordPress 4.7, we are pleased to announce the immediate availability of WordPress 4.7.4, a maintenance release.</p>\n<p>This release contains 47 maintenance fixes and enhancements, chief among them an incompatibility between the upcoming Chrome version and the visual editor, inconsistencies in media handling, and further improvements to the REST API. For a full list of changes, consult the <a href=\"https://codex.wordpress.org/Version_4.7.4\">release notes</a> and the <a href=\"https://core.trac.wordpress.org/log/branches/4.7?rev=40487&amp;stop_rev=40224\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.4</a> or visit <strong>Dashboard → Updates</strong> and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.4.</p>\n<p>Thanks to everyone who contributed to 4.7.4:<br />\n<a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/aussieguy123/\">aussieguy123</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/boldwater/\">boldwater</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/chesio/\">chesio</a>, <a href=\"https://profiles.wordpress.org/curdin/\">Curdin Krummenacher</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy/\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/davidbenton/\">davidbenton</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/eclev91/\">eclev91</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/ghosttoast/\">Gustave F. Gerhardt</a>, <a href=\"https://profiles.wordpress.org/ig_communitysites/\">ig_communitysites</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/karinedo/\">karinedo</a>, <a href=\"https://profiles.wordpress.org/lukasbesch/\">lukasbesch</a>, <a href=\"https://profiles.wordpress.org/maguiar/\">maguiar</a>, <a href=\"https://profiles.wordpress.org/matheusgimenez/\">MatheusGimenez</a>, <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mayurk/\">Mayur Keshwani</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/delawski/\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/pratikshrestha/\">Pratik Shrestha</a>, <a href=\"https://profiles.wordpress.org/programmin/\">programmin</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/sagarkbhatt/\">sagarkbhatt</a>, <a href=\"https://profiles.wordpress.org/sagarprajapati/\">Sagar Prajapati</a>, <a href=\"https://profiles.wordpress.org/sboisvert/\">sboisvert</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford/\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4710\";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:39:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.7.3 Security and 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:84:\"https://wordpress.org/news/2017/03/wordpress-4-7-3-security-and-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Mar 2017 17:53: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:8:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4696\";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:396:\"WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.2 and earlier are affected by six security issues: Cross-site scripting (XSS) via media file metadata.  Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs. Control characters can trick redirect [&#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:11:\"James Nylen\";s: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:6191:\"<p>WordPress 4.7.3 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.2 and earlier are affected by six security issues:</p>\n<ol>\n<li>Cross-site scripting (XSS) via media file metadata.  Reported by <a href=\"https://www.securesolutions.no/\">Chris Andrè Dale</a>, <a href=\"https://twitter.com/yorickkoster\">Yorick Koster</a>, and Simon P. Briggs.</li>\n<li>Control characters can trick redirect URL validation.  Reported by <a href=\"http://www.danielchatfield.com/\">Daniel Chatfield</a>.</li>\n<li>Unintended files can be deleted by administrators using the plugin deletion functionality.  Reported by <a href=\"https://hackerone.com/triginc\">TrigInc</a> and <a href=\"http://b.360.cn/\">xuliang</a>.</li>\n<li>Cross-site scripting (XSS) via video URL in YouTube embeds.  Reported by <a href=\"https://twitter.com/marcs0h\">Marc Montpas</a>.</li>\n<li>Cross-site scripting (XSS) via taxonomy term names.  Reported by <a href=\"https://profiles.wordpress.org/deltamgm2\">Delta</a>.</li>\n<li>Cross-site request forgery (CSRF) in Press This leading to excessive use of server resources.  Reported by Sipke Mellema.</li>\n</ol>\n<p>Thank you to the reporters for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.3 contains 39 maintenance fixes to the 4.7 release series. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.3\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=4.7.3&amp;group=component&amp;col=id&amp;col=summary&amp;col=component&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=keywords&amp;order=priority\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.3</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.3.</p>\n<p>Thanks to everyone who contributed to 4.7.3: <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/asalce/\">asalce</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">blobfolio</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/bradyvercher/\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/drrobotnik/\">Brandon Lavigne</a>, <a href=\"https://profiles.wordpress.org/bhargavbhandari90/\">Bunty</a>, <a href=\"https://profiles.wordpress.org/ccprog/\">ccprog</a>, <a href=\"https://profiles.wordpress.org/ketuchetan/\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/davidakennedy/\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dhanendran/\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/drivingralle/\">Drivingralle</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jazbek/\">jazbek</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry/\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/matheusgimenez/\">MatheusGimenez</a>, <a href=\"https://profiles.wordpress.org/mnelson4/\">Mike Nelson</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/codegeass/\">Muhammet Arslan</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/reldev/\">reldev</a>, <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O&#8217;Rourke</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/sanketparmar/\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/triplejumper12/\">triplejumper12</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, and <a href=\"https://profiles.wordpress.org/wpfo/\">wpfo</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4696\";s: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:32:\"https://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:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"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\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 23 Jul 2017 07:40:15 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 19 Jul 2017 19:50:31 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}}s:5:\"build\";s:14:\"20170722143346\";}','no'),(10323,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1500838814','no'),(10324,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1500795614','no'),(10325,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1500838815','no'),(10326,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','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:101:\"WPTavern: Members 2.0 Adds Capability Registration System, Introduces New Settings Screen for Add-Ons\";s:7:\"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:29:\"https://wptavern.com/?p=73446\";s:7:\"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:111:\"https://wptavern.com/members-2-0-adds-capability-registration-system-introduces-new-settings-screen-for-add-ons\";s: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:6254:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/members.png?ssl=1\"><img /></a></p>\n<p>Eight years ago, Justin Tadlock moved back home to Alabama and was living in the spare bedroom of his grandparents&#8217; house with nothing more than a laptop and a suitcase. Over the course of a few months he started going deeper into learning about writing WordPress plugins and produced <a href=\"https://wordpress.org/plugins/members/\" target=\"_blank\">Members</a>, a role management plugin for WordPress. The first major overhaul of the plugin came in 2015 with version 1.0&#8217;s expansion of features and a new UI for editing roles.</p>\n<p>Members has built up a user base of more than 100,000 active installs since it first <a href=\"http://justintadlock.com/archives/2009/09/17/members-wordpress-plugin\" target=\"_blank\">launched in 2009</a>. Tadlock estimates that over the last couple years, 40% of <a href=\"https://themehybrid.com/\" target=\"_blank\">Theme Hybrid</a> customers are primarily there for support and small tweaks to the Members plugin. He decided it was time to begin investing more in the plugin and its community.</p>\n<p>Tadlock released <a href=\"https://themehybrid.com/weblog/members-version-2-0\" target=\"_blank\">Members 2.0</a> this week. The plugin manages core WordPress capabilities but 2.0 adds the ability for plugins to register custom capabilities. The labels for the capabilities can be internationalized so users can manage the plugin in their own languages in human-readable form.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/members-2-human-caps.png?ssl=1\"><img /></a></p>\n<p>This release also adds the ability to use the WordPress editor for writing custom post error messages, making it easy to direct visitors to registration or other important information regarding access to the content.</p>\n<p>Members 2.0 lets users add multiple roles when creating a new user from the Add User screen. It also introduces the ability to bulk add or remove roles from users, even when multiple roles have been enabled.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/members-2-bulk-users.png?ssl=1\"><img /></a></p>\n<p>This version of the plugin serves some of its data using the WP REST API and a new setting was added to authenticate users who are accessing the REST API endpoints. This protects content from being exposed on sites that have the &#8220;private site&#8221; setting enabled. Tadlock plans to write a tutorial about what he has learned in integrating the REST API with the plugin.</p>\n<h3>Tadlock Aims to Monetize Members with Add-Ons, Renews Efforts to Develop a Community of Add-On Developers</h3>\n<p>Members 2.0 introduces a new Settings screen that ties in with Tadlock&#8217;s future plans to monetize the plugin. The new screen includes a view for add-ons. Tadlock has two add-ons available currently and has written an API for third-party developers to register their own add-ons to be visible on this screen.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/members-2-addons.png?ssl=1\"><img /></a></p>\n<p>&#8220;The plan is to create some small add-on plugins,&#8221; Tadlock said. &#8220;There&#8217;s already two:  <a href=\"https://themehybrid.com/plugins/members-role-levels\" target=\"_blank\">Members &#8211; Role Levels</a>, which is paid, and <a href=\"https://themehybrid.com/plugins/members-role-hierarchy\" target=\"_blank\">Members &#8211; Role Hierarchy</a>, which I was hired to build and was allowed to release to the community for free. I&#8217;ve got a few small plugins like those in mind that&#8217;ll be in a lower price range.&#8221;</p>\n<p>Tadlock also plans to release a more robust version of the &#8220;Content Permissions&#8221; feature as another add-on. He has received numerous feature requests from users over the years about what they would like to see in this plugin. The add-on will offer a variety of different ways to show/hide content.</p>\n<p>I asked Tadlock if he has considered building payment gateway add-ons so users can charge for memberships. He said the idea is on the table.</p>\n<p>&#8220;I&#8217;m not sure if I&#8217;m going to build those or someone else,&#8221; Tadlock said. &#8220;I&#8217;ve mentioned it to some other developers. It would be a good place to start building add-ons.&#8221; His current setup uses Easy Digital Downloads with a couple of plugins to bridge it with Members and ThemeHybrid.com.</p>\n<p>A plugin like Members has the potential to have a large, third-party ecosystem of plugins for payments and additional features, but Tadlock was focused on other projects during the first few years after it launched.</p>\n<p>&#8220;I haven&#8217;t actively pursued the add-on angle,&#8221; Tadlock said. &#8220;Instead, I focused more on themes during most of that time. Now, I&#8217;m focusing more on plugin development. It&#8217;s my fault for not nurturing a community of add-on developers, which is something I&#8217;m trying to do more of now.&#8221;</p>\n<p>Tadlock said many of the developers he knows are working with Members because they like that it gives them a solid foundation to build on for client work. He hopes to persuade some of them to release some of that code back as commercial add-ons or free plugins in the WordPress plugin directory.</p>\n<p>Since launching the plugin eight years ago, Tadlock has aimed to make it behave as if it were a natural part of WordPress. At its core, Members is a role and capability management plugin and not a one-size-fits all membership plugin.</p>\n<p>&#8220;It&#8217;s more or less a UI over what you could do with code already,&#8221; Tadlock said. &#8220;Most of all, it tries not to get in your way. Every membership site has its own unique needs. It&#8217;s tough building something that suits everyone.  That&#8217;s why I&#8217;d rather have that foundation of Members just exposing the roles/caps system with third-party add-ons that suit various users&#8217; needs.</p>\n<p>&#8220;Other membership plugins often try to please everyone or pigeon-hole everything into their custom system. I like more to have a bit more flexibility without the bloat.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></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, 21 Jul 2017 21:37: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: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:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: WordPress 4.8.1 Adds a Dedicated Custom HTML Widget\";s:7:\"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:29:\"https://wptavern.com/?p=73470\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/wordpress-4-8-1-adds-a-dedicated-custom-html-widget\";s: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:2681:\"<p>When WordPress <a href=\"https://wptavern.com/wordpress-4-8-evans-released-featuring-nearby-wordpress-events-new-media-widgets-and-link-boundaries\">4.8 was released</a> last month, it introduced TinyMCE functionality to the Text widget. Unfortunately, this <a href=\"https://wordpress.org/support/topic/how-to-disable-visual-editor-in-the-text-widget/\">caused issues</a> for those who use Custom HTML as the Visual editor often strips out portions of the code.</p>\n<p>WordPress <a href=\"https://wordpress.org/download/release-archive/#beta-and-rc\">4.8.1 Beta 1</a> is available for testing and addresses this problem by including a dedicated Custom HTML widget.</p>\n<p>&#8220;For advanced users or any user who needs to paste in HTML snippets, there is now a dedicated &#8216;Custom HTML&#8217; widget that is specifically for adding arbitrary HTML to your sidebar,&#8221; Weston Ruter, said.</p>\n<p>&#8220;This widget will retain the application of the <code>widget_text</code> filters, in addition to having a new dedicated <code>widget_custom_html_content</code> filter.</p>\n<p>&#8220;For use cases that involve adding content to your sidebar, the Text widget will continue to feature the same Visual editing interface that the post editor has (TinyMCE).&#8221;</p>\n<p>Users who access Text widgets that have Custom HTML in WordPress 4.8.1, will see a note at the top of the widget that suggests using the Custom HTML widget.</p>\n<p><img /></p>\n<p>If a user pastes or types HTML into a text widget with the Visual editor active, WordPress displays an Admin Pointer suggesting that they use the Text tab instead or use the Custom HTML widget.</p>\n<img />Text Widget Admin Pointer\n<p>The Custom HTML widget works similar to the Text widget in WordPress 4.7 and below.</p>\n<img />Custom HTML Widget\n<p>Sites that have existing Text widgets containing custom HTML that may be modified by the Visual editor, are opened in a legacy mode.</p>\n<p>Legacy mode retains the old Text widget interface, including the checkbox on whether or not to automatically add paragraphs. This change prevents the Visual editor from altering code.</p>\n<p>Ruter says the ideal way to test these improvements is to install it on a staging site that has Text widgets containing HTML and are known to be problematic in WordPress 4.8. After upgrading, check to see if the widgets open in legacy mode.</p>\n<p>WordPress 4.8.1 is scheduled to be released on August 1st. Please report any bugs or errors you encounter in as much detail as possible to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">WordPress Alpha/Beta</a> section of the support forums.</p>\n<div id=\"epoch-width-sniffer\"></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, 21 Jul 2017 18:31: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: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: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:95:\"WPTavern: Petition to Re-License React has been Escalated to Facebook’s Engineering Directors\";s:7:\"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:29:\"https://wptavern.com/?p=73454\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/petition-to-re-license-react-has-been-escalated-to-facebooks-engineering-directors\";s: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:7983:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/flags.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/04XDXYUMGQ\">manu schwendener</a>\n<p>React users are <a href=\"https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies\" target=\"_blank\">petitioning Facebook to re-license React.js</a> after the Apache Software Foundation announced its decision to ban Apache PMC members from using any technology licensed with Facebook’s BSD+Patents License. So far the GitHub <a href=\"https://github.com/facebook/react/issues/10191\" target=\"_blank\">issue</a> has received 627 &#8220;thumbs up&#8221; emoji and 66 comments from concerned React users who are hoping for a change in licensing.</p>\n<p>Many respondents on the thread said that ASF&#8217;s decision affects their organizations&#8217; ability to continue using React in projects.</p>\n<p>&#8220;Apache CouchDB and others will switch away from React if we have to,&#8221; CouchDB committer Robert Newson <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-315596902\" target=\"_blank\">said</a>. &#8220;We&#8217;d rather not, it&#8217;s a lot of work for no real gain, but we don&#8217;t have a choice. Changing license can be simple (RocksDB completed that change in a day).&#8221;</p>\n<p>&#8220;My team, at LinkedIn, is also having legal troubles using React for our internal projects,&#8221; LinkedIn software Denis Ivanov <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316500996\" target=\"_blank\">said</a>. &#8220;We would love to see a change on this front.&#8221;</p>\n<p>Software developer Clark Evans <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-315607798\" target=\"_blank\">commented</a> on how React&#8217;s current licensing might affect medical research institutes, and suggested that Facebook consider an Apache 2.0 license because it includes equitable patent grants.</p>\n<blockquote><p>Since U.S. based universities rely upon patent licensing as part of their legislatively mandated technology transfer initiatives, they are growing far more cautious in their due diligence. For this reason, at some universities, software written with React may be shunned. Existing projects using React software may be asked to remove the React software software dependency. Please strongly consider this proposal, since our RexDB work is used at major universities, we do not wish to rework to use a React alternative.</p></blockquote>\n<p>Several participants in the discussion commented that they would like to use React but the licensing makes it impossible for their companies.</p>\n<p>&#8220;Other large companies such as mine (Adobe) can&#8217;t use React, Pop, etc. for the very same reason,&#8221; Corey Lucier <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316046522\" target=\"_blank\">said</a>. &#8220;We&#8217;d love to participate in the project, contribute to each, etc. but Facebook&#8217;s heavy-handed PATENTS clause is a showstopper.&#8221;</p>\n<p>&#8220;Even mid-size companies like mine (ViaSat) are starting to disallow the use of Facebook&#8217;s &#8216;open-source&#8217; projects for this reason,&#8221; software developer Aaron Yoshitake <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316102045\" target=\"_blank\">said</a>. &#8220;We&#8217;d like to build React web and native apps, but it seems that any sensible legal department will recommend against agreeing to Facebook&#8217;s asymmetric patent grant.&#8221;</p>\n<h3>Internal Discussions Continue at Facebook, Re-Licensing Issue has been Escalated to Engineering Directors</h3>\n<p>Dan Abramov, co-author of Redux, Create React App, and React Hot Loader, shared with participants that Facebook is having internal discussions about the re-licensing issue but cautioned them to temper their optimism. He returned to throw some ice on the conversation, which has grown more heated over the past few days, when he said it could only remain an open discussion if everyone involved remains civil. Many participants are concerned about the future of the React-based software that they have already invested thousands of hours of work into.</p>\n<p>&#8220;I understand that everyone is frustrated about this issue,&#8221; Abramov <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316223034\" target=\"_blank\">said</a>. &#8220;Personally I am just as frustrated to spend time, energy, and emotional wellbeing on legal mumbo jumbo that is preventing people from using React. I would much prefer to spend this time on working together to make it better.</p>\n<p>&#8220;But the reality of this situation is that the maintainers of React (people like me that you’re interacting on the issue tracker) are not the ones making these decisions. Each of us is doing what we can to show different perspectives on this issue to the people who can make those decisions, and we appreciate your feedback too. But we can only keep discussion open if everyone stays civil and respectful.&#8221;</p>\n<p>Abramov also pointed out in a follow-up update that a bug tracker isn&#8217;t the best avenue for a legal discussion, especially since most participants are software developers and not lawyers. Many have mistaken the thread as a way to communicate with Facebook but there are just a handful of software developers who are representing the React community&#8217;s concerns.</p>\n<p>&#8220;We have heard you very well, and we have passed on your concerns,&#8221; Abramov said. &#8220;But repeating the same points over and over in different threads does not help move this forward, and creates a lot of noise and stress for the maintainers who are already empathetic to your cause.&#8221;</p>\n<p>Several participants expressed frustration that the React community cannot participate in the discussions more directly. However, as React is both an open source project and a product of Facebook, the company&#8217;s leadership has the last word on licensing issues.</p>\n<p>&#8220;I understand that software developers like us are not the best people to discuss legal details,&#8221; software consultant Erik Doernenburg <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316318170\" target=\"_blank\">said</a>. &#8220;However, wouldn&#8217;t the logical consequence be that the Facebook Legal team, who make such decisions, become active in this forum? Shouldn&#8217;t it be possible that all relevant details pertaining to a piece of open source software are discussed in the open? It is incredibly frustrating to have such an important aspect of open software discussed behind closed doors.&#8221;</p>\n<p>It&#8217;s not known whether Facebook is considering another change to its Patents grant or a complete re-licensing. Participants in the discussion are also concerned about other Facebook open source projects like GraphQL, Relay, React Native, and Flow, which share the same BSD+Patents License and are widely used by the open source community.</p>\n<p>Dan Abramov left an <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316739812\" target=\"_blank\">update</a> today to let the community know that no resolution is available this week. However, the update seemed more positive than the first one, which discouraged participants from being optimistic about a change.</p>\n<p>&#8220;I want to point out that there is a real momentum behind this discussion internally,&#8221; Abramov said. &#8220;There are going to be more meetings next week escalating this up to the engineering directors. As you imagine they are quite busy, so this is taking more time than we thought.</p>\n<p>&#8220;Again, I can’t promise you any specific conclusion, and there is no clarity on where this will land. But please know there are people working on getting your voice heard.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></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, 20 Jul 2017 22:37:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:74:\"WPTavern: WPWeekly Episode 282 – Talking WooCommerce with Cody Landefeld\";s:7:\"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:58:\"https://wptavern.com?p=73448&preview=true&preview_id=73448\";s:7:\"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:\"https://wptavern.com/wpweekly-episode-282-talking-woocommerce-with-cody-landefield\";s: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:3381:\"<p>In this episode, <a href=\"http://jjj.me/\">John James Jacoby</a> and I are joined by <a href=\"https://twitter.com/codyL\">Cody Landefeld</a>, Senior web strategist and founder of <a href=\"https://modeeffect.com/\">Mode Effect</a>. Landefeld describes some of the challenges that shop owners face and provides insight into a couple of WooCommerce projects Mode Effect has recently built.</p>\n<p>We discussed the future of WooCommerce and the odds of it turning into a SaaS product. Landefeld shares his thoughts on WooCommerce <a href=\"https://wptavern.com/woocommerce-drops-50-renewal-discount-on-subscriptions\">dropping its 50% renewal discount</a> on subscriptions. Even though the discount is gone, he believes it&#8217;s still an affordable option for most users. To close out the show, Jacoby and I discuss the news of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/aj-morris-acquires-ithemes-exchange\">AJ Morris Acquires iThemes Exchange</a><br />\n<a href=\"https://wptavern.com/jetpack-professional-plan-introduces-unlimited-access-to-200-commercial-themes\">Jetpack Professional Plan Introduces Unlimited Access to 200+ Commercial Themes</a><br />\n<a href=\"https://wptavern.com/bbpress-2-5-13-readds-sanitization-to-anonymous-user-data\">bbPress 2.5.13 Readds Sanitization to Anonymous User Data</a><br />\n<a href=\"https://wptavern.com/wp-rollback-adds-multisite-compatibility-and-changelog-preview\">WP Rollback Adds Multisite Compatibility and Changelog Preview</a><br />\n<a href=\"https://wptavern.com/gutenberg-0-5-0-adds-new-verse-block-for-poetry-and-a-new-display-for-recent-blocks\">Gutenberg 0.5.0 Adds New Verse Block for Poetry and a New Display for Recent Blocks</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://ahmadawais.com/gutenberg-boilerplate/\">Gutenberg Boilerplate For Third-Party Custom Blocks</a> by Ahmad Awais. The boilerplate is a great way to learn the basics on creating custom blocks for Gutenberg. It comes with four example blocks.</p>\n<ul>\n<li>A block with custom CSS for editor and front end</li>\n<li>A block with ES6 or ESNext and a Webpack build process</li>\n<li>A block with editable content</li>\n<li>A block to click Tweet the contents of that block</li>\n</ul>\n<p>Awais also shared his thoughts on the Gutenberg project.</p>\n<p><a href=\"https://wordpress.org/plugins/add-admin-css/\">Add Admin CSS</a> &#8211; Using this plugin you’ll easily be able to define additional CSS (inline and/or files by URL) to be added to all administration pages. You can define CSS to appear inline in the admin head (within style tags), or reference CSS files to be linked.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 2nd 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">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\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #282:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></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, 20 Jul 2017 01:19: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:\"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:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: The State of JavaScript 2017 Survey is Now Open\";s:7:\"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:29:\"https://wptavern.com/?p=73377\";s:7:\"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://wptavern.com/the-state-of-javascript-2017-survey-is-now-open\";s: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:2708:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/stateof-javascript-2017.png?ssl=1\"><img /></a></p>\n<p>The <a href=\"http://stateofjs.com/\" target=\"_blank\">State of JavaScript 2017 Survey</a> is now open to web professionals of all backgrounds. The intent of the survey is to provide an overview of the rapidly changing landscape of JavaScript frameworks and tools by gauging which technologies are growing in popularity and which ones people are liking and using less.</p>\n<p>The survey, created by <a href=\"http://twitter.com/SachaGreif\" target=\"_blank\">Sacha Greif</a> and <a href=\"http://michaelrambeau.com/\" target=\"_blank\">Michael Rambeau</a>, should take approximately 10 minutes to complete. Topics include JavaScript frontend and backend tools and frameworks, state management solutions, testing tools, CSS, build tools, mobile and desktop technologies, package managers, text editors, salaries, and more.</p>\n<p>Last year&#8217;s 89-question survey received more than 9,300 responses. <a href=\"https://wptavern.com/state-of-javascript-survey-results-published-react-emerges-as-clear-winner-in-front-end-frameworks\" target=\"_blank\">Results</a> showed that React ranked higher than other front-end frameworks in terms of developer satisfaction at 92%, followed closely by Vue.js at 89%.</p>\n<p>It will be interesting to see if and how these results change with many open source project and companies growing wary of using React after the Apache Software Foundation&#8217;s recent decision to<a href=\"https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies\" target=\"_blank\"> ban Apache PMC members from using any technology licensed with Facebook&#8217;s BSD+Patents License</a>. A licensing issue that <a href=\"https://github.com/facebook/react/issues/10191\" target=\"_blank\">jeopardizes more companies&#8217; ability to use Facebook&#8217;s popular open source technologies</a> could precipitate a decline in React&#8217;s preeminence among frontend frameworks.</p>\n<p>Sacha Greif reports that the survey has <a href=\"https://twitter.com/SachaGreif/status/887473181539188736\" target=\"_blank\">received more than 3,500 responses in less than 24 hours</a>, a remarkable number compared to 9,300 over the course of three weeks last year. This response affirms the value that <a href=\"https://wptavern.com/state-of-javascript-survey-results-published-react-emerges-as-clear-winner-in-front-end-frameworks\" target=\"_blank\">last year&#8217;s results</a> provided to web professionals who are attempting to navigate the ever-expanding JavaScript ecosystem.</p>\n<div id=\"epoch-width-sniffer\"></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, 19 Jul 2017 20:16:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:67:\"WPTavern: bbPress 2.5.13 Readds Sanitization to Anonymous User Data\";s:7:\"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:29:\"https://wptavern.com/?p=73397\";s:7:\"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://wptavern.com/bbpress-2-5-13-readds-sanitization-to-anonymous-user-data\";s: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:1328:\"<p>The bbPress development team <a href=\"https://bbpress.org/blog/2017/07/bbpress-2-5-13/\">has released</a> bbPress 2.5.13. This release fixes a few bugs, most notably, it readds sanitization to anonymous user data that was accidentally removed in previous versions.</p>\n<p>Those who allow anonymous users to create topics and replies on their forums are encouraged to update immediately.</p>\n<p>&#8220;This feature is not widely used on public forums because spammers aggressively target these kinds of sites, but for communities that rely on this feature, please know you can safely upgrade to 2.5.13 without any issues,&#8221; John James Jacoby, lead developer of bbPress and BuddyPress, said.</p>\n<p>As a reminder, beginning with bbPress 2.5.12, the minimum version of WordPress supported is 4.7. If you&#8217;re using an older version of WordPress, Jacoby recommends using or staying with bbPress 2.5.11.</p>\n<p>bbPress 2.6 is still in the release candidate phase as developers iron out a few issues discovered on WordPress.org.</p>\n<p>Users can <a href=\"https://wordpress.org/plugins/bbpress/\">download the latest versio</a><a href=\"https://wordpress.org/plugins/bbpress/\">n</a> of bbPress from WordPress.org or browse to Dashboard &gt; Updates, and upgrade from within WordPress.</p>\n<div id=\"epoch-width-sniffer\"></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, 19 Jul 2017 18:22:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:63:\"WPTavern: Zagreb to Host 3rd WordCamp in Croatia, September 1-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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72737\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/zagreb-to-host-3rd-wordcamp-in-croatia-september-1-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:4747:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/zagreb-croatia.png?ssl=1\"><img /></a>photo credit: Archives of Zagreb Tourist Board &#8211; Author: Marko Vrdoljak\n<p><a href=\"https://2017.zagreb.wordcamp.org/\" target=\"_blank\">WordCamp Zagreb</a> will be held September 1-3 and organizers are anticipating 300 attendees. This is the third WordCamp to be held in Croatia, following WordCamp Rijeka (2015) and WordCamp Split (2016). Although it changes cities every year, the camp is known as Croatia’s annual WordCamp.</p>\n<p>&#8220;Having WordCamp change cities each year is quite normal for us,&#8221; WordCamp Croatia co-organizer and Zagreb meetup organizer Emanuel Blagonic said. &#8220;A lot of people from other cities travel to meetups too. Our largest meetup in Zagreb, which usually has 80+ people present and 100+ live stream viewers, usually has people attending from a 300km circle around Zagreb. People also travel to Split when there are meetups there.&#8221;</p>\n<p>A renewed <a href=\"https://make.wordpress.org/community/2017/07/18/regional-camps-take-2/\" target=\"_blank\">discussion on regional WordCamps</a> is firing up on the WordPress Community team P2 blog, as the topic was discussed at the Community Summit and with recent developments in <a href=\"https://wptavern.com/wordcamp-netherlands-reinstated-for-2018\" target=\"_blank\">WordCamp Netherlands being reinstated</a> and <a href=\"https://wptavern.com/wordsesh-asia-now-in-planning-for-2018-wordcamp-asia-targeted-for-2019\" target=\"_blank\">WordCamp Asia a possibility for 2019</a>. Croatia is another example of a country where a national WordCamp might benefit the community.</p>\n<p>&#8220;When we started with organizing a WordCamp in Croatia, as a community we hoped that WordCamp will help us boost local communities, thus not having everything centralized in Zagreb (where most other meetups happen, i.e. PHP, Design, UX, JavaScript, Python, etc.),&#8221; Blagonic said. &#8220;As a community we strongly believe that every region is different and it should be viewed like that. So far we are organizing WordCamps &#8216;no matter what,&#8217; but having a &#8216;national WordCamp would mean more Croatian sponsors and better coverage from national media.&#8221;</p>\n<p>WordCamp Zagreb will be a three-day event, beginning with workshops on the first day as the event has done in previous years. Organizers are planning for 12 workshops in four tracks that will be open to public registration. The main conference will be held Saturday with two tracks. Contributor Day will close out the event on Sunday, followed by a walking tour of the city.</p>\n<p>Friday&#8217;s workshops will be held mostly in Croatian, except a few, such as WordPress Basics and Public Speaking, which will be conducted in English. All of the conference talks this year will be in English.</p>\n<p>&#8220;Croatia is a tourist country and most of the people here speak good English, which is often used at large tech events,&#8221; Blagonic said. &#8220;With that in mind, every WordCamp so far was (mostly) in English, which means it’s quite welcoming for people outside Croatia, too (Slovenia, Austria, Italy, Germany) – and our community likes to meet new people. Unlike WordCamps, we see Meetups as strong local events so we usually have talks in Croatian there.&#8221;</p>\n<p>Blagonic said every year so far the WordCamp has had approximately 20% of its attendees traveling from outside Croatia, as the country is relatively small with a population of 4 million. Most attendees travel to the WordCamp from other parts of Croatia.</p>\n<p>Croatia currently has five local meetups, but only the two in Zagreb and Split have enough members to meet regularly. Blagonic said he sees the meetups as a way to help local communities grow and views the WordCamp as &#8220;a celebration of the country community.&#8221; However, he believes centralizing the larger events too much would be detrimental to growing the fledgling WordPress communities in the smaller cities.</p>\n<p>&#8220;I’d say that in Croatia (and in the region) we have a young democracy and we still haven’t found the best way to connect with people,&#8221; Blagonic said. &#8220;For example, there are four big cities in Croatia where most of the things happen, and the tech scene is quite strong in them. If you go outside of these four hubs, a lot fewer things happen, which is a problem for people living outside. We believe that having a centralized country is bad for growing local communities (outside these areas) so with changing cities each year and with traveling to other Meetups/WordCamps we hope that we will change how people feel about it. &#8220;</p>\n<div id=\"epoch-width-sniffer\"></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, 19 Jul 2017 18:11: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: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:29:\"Donncha: WP Super Cache 1.5.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:\"https://odd.blog/?p=89500337\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://odd.blog/2017/07/19/wp-super-cache-1-5-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:5935:\"<p>WP Super Cache is a fast full-page caching plugin for WordPress. Download it from your dashboard or get it <a href=\"https://wordpress.org/plugins/wp-super-cache/\">here</a>.</p>\n<p>Version 1.5.0 has been in development for some time. It has a ton of bug fixes and new features. </p>\n<h3>REST API</h3>\n<p>The headline new feature is REST API access to the settings. This will allow developers to create their own interface to the settings of the plugin. Unfortunately it isn&#8217;t yet documented but you can see the code <a href=\"https://github.com/Automattic/wp-super-cache/tree/master/rest\">in the rest directory</a>. Start with load.php where you&#8217;ll find the code that registers all the endpoints. Users who access the API must be logged in as admin users. If you want to test the API, see the end of this post.</p>\n<h3>Settings Page</h3>\n<p>We have also simplified the settings page to make it easier to choose which caching method is used. </p>\n<p><img /></p>\n<p>Instead of maybe confusing the user with technical words like PHP, mod_rewrite and WP-Cache we have split them up into &#8220;Simple&#8221; and &#8220;Expert&#8221; delivery methods, and done away with mentioning WP-Cache completely. Simple delivery uses PHP, expert uses mod_rewrite and well, WP-Cache got the boot because it&#8217;s always active anyway.</p>\n<p>WP-Cache caching is always active, but it can be disabled in different ways.</p>\n<ul>\n<li> Disable caching for known users.</li>\n<li> Don&#8217;t cache pages with GET parameters</li>\n<li> Disable caching of feeds</li>\n</ul>\n<h3>Headers</h3>\n<p>We <a href=\"https://github.com/Automattic/wp-super-cache/pull/287\">expanded the number of headers</a> cached by the plugin. The list of headers was borrowed from <a href=\"https://cometcache.com/\">Comet Cache</a>. However, anonymous users will still only see the bare minimum like content-length or content-type. If you need to use security headers like &#8220;X-Frame-Options&#8221; or &#8220;Content-Security-Policy&#8221; you should enable caching of HTTP headers. This unfortunately disables super caching so only WP-Caching is used but it&#8217;s still very fast (and faster in this release than before which I will get to below). You can also use the &#8220;wpsc_known_headers&#8221; filter to modify the list of recognised headers.</p>\n<h3>WP-Cache Reorganisation</h3>\n<p>WP-Cache cache files are split into two files &#8211; one holds the page content, the other (meta file) holds information about the page such as cookies, headers and url. In the past these files were stored in two directories which could become a problem if there were many thousands of those files. Even with only a few hundred files, maintenance could be an issue as deleting related files (like page archives, or copies of the front page) needed every meta file to be inspected.<br />\nNow the files are stored in the supercache directory structure that mirrors your permalink structure. Deleting related files is is simpler and serving files will be faster as the operating system won&#8217;t need to open a directory of thousands of files.<br />\nIf you currently rely on WP-Cache files, the plugin will still look for them where they are, but new WP-Cache files will be created in cache/supercache/example.com/ (where example.com is your hostname).</p>\n<h3>Sitemaps</h3>\n<p>We added support for caching sitemaps, but your sitemap plugin will need to cooperate to get it to work. The sitemap plugin needs to identify the sitemap request as a feed. Jetpack 5.1 now supports this since <a href=\"https://github.com/Automattic/jetpack/pull/7397\">#7397</a>. You can disable the caching by excluding feeds from caching.</p>\n<h3>Debugging Improved</h3>\n<p>The debug log is now protected by a username/password. For convenience, the username and password are the same but they are a long md5 string:</p>\n<p><img /></p>\n<p>Deleting the log file clears it and resets it ready for more logging. Before, toggling debugging would create a new debug log and the old one would be kept around, but not linked, until deleted by garbage collection, and of course they were text files anyone could access.</p>\n<p>This release includes lots of other small bug fixes and changes. Take a look at the <a href=\"https://github.com/Automattic/wp-super-cache/pulls?q=is%3Apr+is%3Aclosed\">number of closed PRs</a> for an exhaustive list of those changes!</p>\n<h3>Testing the REST API</h3>\n<p>There are a number of ways to send POST requests to a web server but one I like is using curl in a shell script. You&#8217;ll need two bits of information from the website:</p>\n<ol>\n<li> The &#8220;wordpress_logged_in&#8221; cookie from your browser.</li>\n<li> The wp_rest nonce which you can get by adding `echo wp_create_nonce( &#8216;wp_rest&#8217; );` somewhere on your site where you&#8217;re logged in. It&#8217;s good for 24 hours.</li>\n</ol>\n<p>My test script looks something like this:<br />\n<code>export NONCE=\'1234567890\'<br />\nexport COOKIE=\'wordpress_logged_in_xxxxxxxxxxxxxxxxxxxx=1234567890\'<br />\ncurl -v -X \"GET\" -H \"Content-Type: application/json\" -H \"X-WP-Nonce: $NONCE\" -H \"Cache-Control: no-cache\" -H \"Cookie: wordpress_test_cookie=WP+Cookie+check; $COOKIE\" \\<br />\n-d \'{}\' \"https://example.com/wp-json/wp-super-cache/v1/settings/\"</code></p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"https://odd.blog/2008/10/24/wp-super-cache-084-the-garbage-collector/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.4, the garbage collector\">WP Super Cache 0.8.4, the garbage collector</a></li><li> <a href=\"https://odd.blog/2009/01/09/wp-super-cache-087/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.7\">WP Super Cache 0.8.7</a></li><li> <a href=\"https://odd.blog/2010/02/08/wp-super-cache-099/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.9.9\">WP Super Cache 0.9.9</a></li></ul></p>\n<p><a href=\"https://odd.blog/\" rel=\"external nofollow\">Source</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, 19 Jul 2017 12:25: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:7:\"Donncha\";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:32:\"HeroPress: Becoming Myself 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:56:\"https://heropress.com/?post_type=heropress-essays&p=1978\";s:7:\"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:116:\"https://heropress.com/essays/becoming-myself-again/?utm_source=rss&utm_medium=rss&utm_campaign=becoming-myself-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6018:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/071917-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The WordPress community is, slowly but surely, helping me get rid of my ingrown fear of the unknown, of others.\" /><p>It’s so easy to become secluded and sit at home, in your own bubble, but it wasn’t until a group of people literally pulled me in with their welcoming atmosphere and demeanor, that I realised that I could function amongst other people as well (even if it was somewhat limited).</p>\n<h3>In The Beginning</h3>\n<p>To understand my bubble, you need to also know a little about me, or rather, about my childhood. I had a less than ideal childhood. I have a great family, lived in a great house, even in the “best country in the world” as they say. And despite this, I say I wasn’t happy with my childhood. My school years were the reason, they were rough. At times I think back and feel like events that unfolded were parts of ridiculous scenes from an over the top movie.</p>\n<p>All in all, the days seemed generic enough, except my school days were a thing of dread. I would suffer physical and verbal abuse throughout my schooldays, even going to and from school, I had no real friends (victim by association is understandably not something a child would want to intentionally walk into. I understand this as an adult, but as a child it’s not that easy).</p>\n<blockquote><p>Because of my treatment over the years, I developed trust issues, I got a fear for everyone around me, and it was growing stronger and stronger over the years.</p></blockquote>\n<p>I suppressed it, I lied about it, and I got terrifyingly good at the lying part.</p>\n<p>This is why I was drawn to the internet: I didn’t have to interact with people, I didn’t need to go outside where the others were, I could just do my thing and move on. I could live in my own bubble.</p>\n<h3>Finding WordPress</h3>\n<p>But then the darndest thing happened. I’d been stuck on a project, I needed help, and I turned to a support room for an open source project, for WordPress. If you’ve ever tried to get help in a chat before, you’ll know what kind of an experience it can be, the snarky reactions to your code, the nitpicking of using the wrong terminology, it’s not fun. This place though, they didn’t care that I was not only using the wrong terms, but my entire code was a horrible mess.</p>\n<blockquote><p>Where I would usually get the help I needed and move on, popping back in my bubble of solitude, I instead wanted to be like these people, I wanted to use what I learnt to let others get helped.</p></blockquote>\n<p>Over the years, I all but devote myself to that place. Nobody knew me, I liked staying under the radar, but eventually I got pushed into a team meeting. I was intrigued, so I would watch, I’d say hi, and progressively make my opinions heard. Yet, I would stick to my bubble, once the meeting was over I was back on my own.</p>\n<h3>And Then I Went To WordCamp</h3>\n<p>Until I got to attend my first big WordCamp, the last one held in San Francisco, I was ecstatic! I’d never been to a big conference before, as I didn’t like crowds, but I knew some of the people who would be there. They were people who had been friendly and inviting in the most genuine way imaginable. It’s not easy being worried whenever you’re out amongst people, but this group of people, this community, I didn’t have that fear around them.</p>\n<blockquote><p>I somehow made WordCamps my safe space.</p></blockquote>\n<p>They are where I can, if only for a short while, leave that bubble, leave the need to be alone, and be a part of something great! I use them as fuel to get through the hard times, I can look forward to meeting people, people who value my opinions and my experience. People who genuinely want to listen and most of all, care about you! The WordPress community is, slowly but surely, helping me get rid of my ingrown fear of the unknown, of others.</p>\n<p>The community is helping me become myself again.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Becoming Myself Again\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Becoming%20Myself%20Again&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-myself-again%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Becoming Myself Again\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-myself-again%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-myself-again%2F&title=Becoming+Myself+Again\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Becoming Myself Again\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/becoming-myself-again/&media=https://heropress.com/wp-content/uploads/2017/07/071917-150x150.jpg&description=Becoming Myself Again\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Becoming Myself Again\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/becoming-myself-again/\" title=\"Becoming Myself Again\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/becoming-myself-again/\">Becoming Myself Again</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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, 19 Jul 2017 12:00:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Marius Jensen\";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:104:\"WPTavern: New WordPress Contributors Meeting Provides Opportunities to Ask Questions and Learn the Ropes\";s:7:\"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:29:\"https://wptavern.com/?p=73007\";s:7:\"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:115:\"https://wptavern.com/new-wordpress-contributors-meeting-provides-opportunities-to-ask-questions-and-learn-the-ropes\";s: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:2270:\"<p>Contributing to WordPress or other open source projects can be intimidating for first-time contributors. Sometimes, all you need is a helping hand to overcome fear, intimidation, or other barriers.</p>\n<p>In 2013, with the help of Konstantin Obenland, a WordPress core developer, I overcame my fear and <a href=\"https://wptavern.com/i-contributed-to-the-core-of-wordpress-and-you-can-too\">contributed my first patch</a> to WordPress.</p>\n<p>This is one of the principles behind a <a href=\"https://make.wordpress.org/core/2017/06/30/announcing-a-weekly-new-contributors-meeting/\">new weekly meeting</a> that is geared towards new contributors.</p>\n<p>&#8220;The new contributors meeting is the perfect place to come if you are new to contributing to WordPress core and have questions,<em>&#8221; </em>Adam Silverstein, WordPress core contributor, said.</p>\n<p>Every Wednesday at 3PM Eastern Daylight Time, users can visit the #core WordPress Slack channel and ask questions related to patches, tickets, and review the <a href=\"https://core.trac.wordpress.org/tickets/good-first-bugs\">good-first-bugs report</a> on Trac.</p>\n<p>The first meeting was <a href=\"https://make.wordpress.org/core/2017/07/10/new-contributors-meeting-recap-july-5/\">held on July 5th</a> where participants asked questions about working with Git in WordPress core, applying patches, and unit testing. In <a href=\"https://make.wordpress.org/core/2017/07/18/new-contributors-meeting-recap-july-12/\">the second meeting</a>, participants discussed whether or not new contributors are allowed to make changes to tickets.</p>\n<p>Other topics mentioned include, which repositories to use, clarification on contributing to core versus updating the WordPress Developer&#8217;s site, and which tickets to select for review.</p>\n<p>The next meeting is on Wednesday, July 19th at 3PM Eastern. If you have any questions on how to contribute to WordPress, be sure to join the WordPress #core Slack channel at that time and ask away.</p>\n<p>Meeting notes with links to discussions, tickets mentioned, and other resources are published on the Make WordPress Core blog under the <a href=\"https://make.wordpress.org/core/tag/new-contributors/\">#new-contributors</a> tag</p>\n<div id=\"epoch-width-sniffer\"></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, 19 Jul 2017 05:09: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: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: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:72:\"WPTavern: WP Rollback Adds Multisite Compatibility and Changelog Preview\";s:7:\"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:29:\"https://wptavern.com/?p=73315\";s:7:\"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:\"https://wptavern.com/wp-rollback-adds-multisite-compatibility-and-changelog-preview\";s: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:4021:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/undo-button.jpg?ssl=1\"><img /></a></p>\n<p>In the two years since <a href=\"https://wordpress.org/plugins/wp-rollback/\" target=\"_blank\">WP Rollback</a> launched on WordPress.org, the plugin has racked up more than 30,000 active installations with nearly all 5-star reviews. It allows users to roll back any WordPress.org plugin or theme to a previous version with just a few clicks and also <a href=\"https://wordimpress.com/beta-testing-wordpress-plugins-with-wp-rollback/\" target=\"_blank\">supports beta versions of plugins</a>.</p>\n<p>It&#8217;s easy to see why the plugin is so popular. Navigating buggy updates is a natural part of life when maintaining a self-hosted website and not all users have a separate testing environment for their websites. This tool gives them a basic diagnostic tool and the confidence to apply updates knowing they can easily roll it back in case of a problem. Many reviewers cite the plugin as having been &#8220;a lifesaver&#8221; when applying WooCommerce or Yoast SEO updates that had unexpected results.</p>\n<p>The <a href=\"https://wordpress.org/support/topic/apparently-not-working-for-themes-rollback-on-multisites/\" target=\"_blank\">lone one-star review of WP Rollback</a> was given because the user anticipated multisite compatibility and was unable to get it to work. That issue has been solved in the latest update.</p>\n<p><a href=\"https://wordimpress.com/wprollback-wordpress-multisite/\" target=\"_blank\">WP Rollback 1.5</a> is fully compatible with multisite networks, giving super admins the ability to roll back extensions from the network plugin/themes screen or from the the plugins/themes screen of the primary site in the network. Sub-sites do not have the ability to roll back plugins and themes for the entire network. The UI for rolling back themes on the network admin screen is identical to the plugin screens, as multisite doesn&#8217;t have the fancy theme preview screen that single site installs have.</p>\n<p>Version 1.5 also adds the ability for users to preview the changelog for previous versions of a plugin. This makes it convenient for users to quickly view the changes for each version without leaving the admin.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/rollback_changelog.gif?ssl=1\"><img /></a></p>\n<p><a href=\"https://wordimpress.com\" target=\"_blank\">WordImpress</a>, the folks behind WP Rollback, have considered adding core rollbacks and database savepoints, but both features have serious potential drawbacks that could turn it into a high support-demanding plugin. In its current state, the plugin is virtually support-free.</p>\n<p>Matt Cromwell, Head of Support and Community Outreach at WordImpress, said the team thought about monetizing the plugin in the beginning, but is not pursing any plans to do so at this time.</p>\n<p>&#8220;We think of it as just one of the many ways we are giving back to the WP community,&#8221; Cromwell said. &#8220;Our preference would be for the core team to consider it as a potential feature plugin for eventual core inclusion.&#8221;</p>\n<p>Cromwell said WordImpress hasn&#8217;t made any intentional steps to see if core folks are interested in WP Rollback becoming a feature plugin, but the team has purposely built it to be as close to core standards as possible. He believes it would be relatively easy to implement in WordPress.</p>\n<p>Suggestions for new features, general feedback, and bug reports are welcome on WP Rollback&#8217;s <a href=\"https://github.com/WordImpress/WP-Rollback\" target=\"_blank\">GitHub repository</a>. The plugin&#8217;s authors recommend backing up your site before using it to rollback plugins and themes or testing rollbacks on a staging site first. WP Rollback is not capable of rolling back changes a plugin update has made to the database, so a backup can come in handy if the database changes are incompatible with previous versions.</p>\n<div id=\"epoch-width-sniffer\"></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, 18 Jul 2017 22:24: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:\"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: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:136:\"WPTavern: React Users Petition Facebook to Re-license React.js after Apache Software Foundation Bans BSD+Patents License in Dependencies\";s:7:\"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:29:\"https://wptavern.com/?p=73216\";s:7:\"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:146:\"https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies\";s: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:9983:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/apache-software-foundation.png?ssl=1\"><img /></a></p>\n<p>The Apache Software Foundation <a href=\"https://issues.apache.org/jira/browse/LEGAL-303?focusedCommentId=16088663&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-16088663\" target=\"_blank\">issued a notice</a> over the weekend, indicating that it has added <a href=\"https://code.facebook.com/pages/850928938376556\" target=\"_blank\">Facebook&#8217;s BSD+Patents license</a> to its <a href=\"https://www.apache.org/legal/resolved#category-x\" target=\"_blank\">Category X list of disallowed licenses</a> for <a href=\"https://www.apache.org/dev/pmc.html\" target=\"_blank\">Apache PMC members</a>. This is the license that Facebook uses for most of its open source projects.</p>\n<p>A representative from Facebook&#8217;s <a href=\"https://github.com/facebook/rocksdb\" target=\"_blank\">RocksDB</a> team <a href=\"https://issues.apache.org/jira/browse/LEGAL-303?focusedCommentId=16088730&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-16088730\" target=\"_blank\">commented</a> on the Apache Foundation&#8217;s post to advise that the project will meet the August 31st deadline for relicensing in order to be in compliance with Apache PMC member requirements, and that change has been <a href=\"https://github.com/facebook/rocksdb/commit/3c327ac2d0fd50bbd82fe1f1af5de909dad769e6\" target=\"_blank\">committed</a> today:</p>\n<blockquote><p>The RocksDB team is adjusting the licensing such that it will be dual-licensed under the Apache 2 and GPL 2 (for MySQL compatibility) licenses. This should happen shortly and well ahead of August 31st. I&#8217;ll leave the history and philosophy around licensing alone since it&#8217;s generally a complex discussion to have and I&#8217;m not sure that it has actually been fully captured in this thread especially vis a vis Facebook&#8217;s intent.</p>\n<p>Hopefully this morning&#8217;s guidance to PMCs can be adjusted since I don&#8217;t think any of us see a bunch of extra engineering effort as a desirable thing across the ASF projects which are already making use of RocksDB</p></blockquote>\n<p>In light of the ASF Legal Affairs Committee&#8217;s decision to disallow the BSD+Patents License in Apache projects, ASF member Joan Touzet opened an issue on the React repository urging Facebook to consider re-licensing React.js under Apache License v2.0 and GPL 2:</p>\n<blockquote><p>\nThis has led to a lot of upset and frustration in the Apache community, especially from projects requiring similarly-licensed code as direct dependencies &#8211; the chief of these being RocksDB.</p>\n<p>We (the Apache Software Foundation) have just received word that RocksDB will be re-licensing their code under the dual Apache License v2.0 and GPL 2 licenses.</p>\n<p>As a user of React.JS in an ASF top-level project (Apache CouchDB), please consider re-licensing React.JS under similar terms. Otherwise, many ASF projects such as our own will have to stop relying on and building with React.</p></blockquote>\n<p>Although the re-licensing of RocksDB solves that particular project&#8217;s problem, ASF&#8217;s ban of Facebook&#8217;s BSD+Patents license means other widely used technologies from Facebook, including React.js, are still banned. This is likely to cause problems for many open source projects.</p>\n<p>Harshavardhana, from the <a href=\"https://www.minio.io/\" target=\"_blank\">Minio</a> team, commented in support of the petition to Facebook for re-licensing React.</p>\n<p>&#8220;Our object storage browser UI is based on React and we are Apache 2.0 licensed,&#8221; he said. &#8220;It would be unfortunate and time consuming to migrate but we will have to do that in lieu of new information regarding Apache incompatibility. Please consider re-licensing React.&#8221;</p>\n<p>Contributors to <a href=\"https://github.com/omcljs/om\" target=\"_blank\">Om</a>, a ClojureScript interface for React, are also <a href=\"https://github.com/omcljs/om/issues/882\" target=\"_blank\">discussing whether or not the ASF&#8217;s new requirements will affect their project</a>. Greg Stein, commenting on behalf of ASF, clarified the reasons behind the organization&#8217;s decision to ban Facebook&#8217;s BSD+Patents license:</p>\n<blockquote><p>Please note that the ASF chose this path for policy reasons, rather than &#8220;license incompatibility&#8221;. We don&#8217;t want downstream users of Apache code to be surprised by the PATENTS grant that (was) in RocksDB and (is) in React. Users should only need to follow the ALv2, with no further constraints.</p>\n<p>These license can work together (IMO) and simply provide two sets of restrictions upon users.</p></blockquote>\n<p>Stein said it was not ASF&#8217;s lawyers who made the decision but rather the organization&#8217;s policy decision to &#8220;disallow FB/BSD+Patent license to be mixed into the software the Foundation releases to users.&#8221;</p>\n<h3>Facebook is Internally Discussing the Re-Licensing Matter</h3>\n<p>Dan Abramov, co-author of Redux, Create React App, and React Hot Loader, <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-315707719\" target=\"_blank\">joined the discussion on GitHub</a> regarding re-licensing with a brief and ambiguous summary about how Facebook is handling the petition to re-license.</p>\n<p>&#8220;To give you a small update, there are going to be more internal discussions about this for about a week,&#8221; Abramov said. &#8220;This is about as much as I can say. I wouldn&#8217;t be too optimistic about this changing for React but we&#8217;ll see. @daveman692 has kindly agreed to provide an update when these discussions are over.&#8221;</p>\n<p>Dropping the patent grant entirely, which would be the most convenient way of solving this issue for open source projects, isn&#8217;t likely to happen. React has already gone through re-licensing twice during its short history. It was originally licensed under Apache 2.0 but this was changed in October 2014 to the BSD License plus the patent grant, which included a highly controversial termination provision. In April 2015, the patent grant was changed slightly to allow licensees to continue to use the software in the event that a patent lawsuit did not include a counterclaim against Facebook or its affiliates in a matter unrelated to React.js.</p>\n<p>The termination provision in Facebook&#8217;s BSD+Patents License continues to be unpopular and is regarded suspiciously by many open source project maintainers. When the Drupal project began <a href=\"http://buytaert.net/selecting-a-client-side-framework-for-drupal\" target=\"_blank\">considering a client-side framework to supersede Backbone.js</a>, Dries Buytaert passed on React based on what he said was &#8220;a potentially unacceptable patent clause,&#8221; citing <a href=\"https://github.com/Automattic/wp-calypso/issues/650\" target=\"_blank\">pushback from WordPress.com&#8217;s Calypso and React contributors</a>.</p>\n<p>The WordPress open source project has not formally announced its decision on which JavaScript framework will be included in core, but all signs point to React. WordPress&#8217; upcoming Gutenberg editor is built on React and its chief contributors are Automattic employees who work on React-based products for WordPress.com. Gutenberg continues to plough forward at a breakneck pace with no indication of a rewrite, and WordPress co-creator Matt Mullenweg has been outspoken about his preference for using React.</p>\n<p>Although Automattic&#8217;s legal counsel has said the company is <a href=\"https://wptavern.com/automattic-will-continue-to-use-react-js-in-calypso-despite-patent-clause\" target=\"_blank\">comfortable using React for its product under the project&#8217;s current license </a>, others in the WordPress community are not as amenable to including the framework in core.</p>\n<p>The Open Source Initiative (OSI) includes a generic <a href=\"https://opensource.org/licenses/BSDplusPatent\" target=\"_blank\">BSD+Patent license</a> listed among its approved licenses, but Facebook&#8217;s particular BSD+Patent license has not been submitted. Robert Pierce, a partner at El Camino Legal, <a href=\"https://www.elcaminolegal.com/single-post/2016/10/04/Facebook-Reactjs-License\" target=\"_blank\">contends</a> that the license termination provision ought to be impermissible in an open source license because it exists to protect Facebook from patent litigation that is completely unrelated to React code:</p>\n<blockquote><p>Facebook touts React.js as open source software. But in my mind the license termination provision of the Additional Grant of Patent Rights takes the offering outside the realm of open source software.</p>\n<p>The patent license offered in the Additional Grant of Patent Rights (v.2) is conditioned upon the licensee not bringing a patent infringement lawsuit against Facebook or its affiliates. Thus, the licensee pays a price to use the library. It is not a price paid with money. The price demanded by Facebook for use of the library is that the licensee refrain from exercising any of its patent rights against Facebook or its affiliates.</p></blockquote>\n<p>Pierce views Facebook&#8217;s publication of React source code as leverage to win some protection against patent lawsuits, which he deems to be &#8220;too greedy an approach for Facebook to claim open source status.&#8221;</p>\n<p>The open source community has widely speculated about the implications of including Facebook&#8217;s BSD+Patent license as a dependency, but the license has not yet been tested in court. The Apache Software Foundation is the first major organization to take a hard line stance on the controversial license and this has caught Facebook&#8217;s attention. Facebook representatives have promised an update on the petition for re-licensing after its internal discussions have concluded.</p>\n<div id=\"epoch-width-sniffer\"></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, 18 Jul 2017 03:25:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:76:\"WPTavern: Stylishly Display Weather Conditions with the Weather Atlas Widget\";s:7:\"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:29:\"https://wptavern.com/?p=73229\";s:7:\"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:87:\"https://wptavern.com/stylishly-display-weather-conditions-with-the-weather-atlas-widget\";s: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:2207:\"<p>If you&#8217;re looking for an easy way to display weather conditions on your site, check out the new <a href=\"https://wordpress.org/plugins/weather-atlas/\">Weather Atlas Widget</a> by <span class=\"byline\"><span class=\"author vcard\"><a href=\"https://profiles.wordpress.org/weatheratlas\">Yu Media Group d.o.o</a>. Once activated, browse to Appearance &gt; Widgets, and add the Weather Atlas widget to a sidebar. </span></span></p>\n<img />Weather Atlas Settings\n<p>As you begin typing, a drop-down list of cities is displayed. This helps choose the correct city. From here, users can configure the following settings:</p>\n<ul>\n<li>Display temperatures in Fahrenheit or Celsius</li>\n<li>Use English or Spanish language</li>\n<li>Horizontal or Vertical Layout &#8211; Horizontal displays more information such as five-day forecasts</li>\n<li>Font size. By default, the widget uses the font size specified in the theme</li>\n<li>Background color</li>\n<li>Text Color</li>\n<li>Headings</li>\n</ul>\n<p>Users can display sunrise and sunset times, heat index, wind chills, UV index, wind speeds, humidity, and pressure. You can also hide or display hourly forecasts.</p>\n<img />Forecast for Cleveland, Ohio\n<p>It&#8217;s recommended that for three-hour forecasts, you use the vertical layout and for five-hour forecasts, the horizontal layout. The same recommendations apply for daily forecasts.</p>\n<p>The widget not only looks nice but it also changes color based on temperature. Shades of blue represent cooler temperatures while shades of red represent warmer temperatures.</p>\n<img />Temperatures Represented by Colors\n<p>By default, the bottom of the widget displays the text, &#8220;Weather from Weather Atlas&#8221;. However, if you choose to display the detailed forecast, the text is replaced with a Detailed Forecast link. This link takes visitors to a page on Weather-Atlas.com that displays detailed weather conditions for the selected city.</p>\n<p>I tested the Weather Atlas Widget on WordPress 4.8 and didn&#8217;t encounter any issues. It&#8217;s <a href=\"https://wordpress.org/plugins/weather-atlas/\">available for free</a> on the WordPress plugin directory.</p>\n<div id=\"epoch-width-sniffer\"></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, 18 Jul 2017 01:55:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:71:\"WPTavern: Gutenberg Boilerplate Demonstrates How to Build Custom Blocks\";s:7:\"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:29:\"https://wptavern.com/?p=73202\";s:7:\"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:\"https://wptavern.com/gutenberg-boilerplate-demonstrates-how-to-build-custom-blocks\";s: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:4716:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/gutenberg-boilerplate.jpg?ssl=1\"><img /></a></p>\n<p>Gutenberg is still in beta but developers are already getting ready for creating their own custom blocks. Over the weekend Ahmad Awais released a new project called <a href=\"https://ahmadawais.com/gutenberg-boilerplate/\" target=\"_blank\">Gutenberg Boilerplate For Third-Party Custom Blocks</a>. Awais&#8217; introductory post includes a rundown of his thoughts on the current pros and cons of developing for the Gutenberg project. Although he appreciates the technology behind Gutenberg and the improvements over shortcodes, he is not fully sold on the concept of putting everything into blocks. To learn more, he decided to jump into the code.</p>\n<p>&#8220;I am still making up my mind with how Gutenberg will fit in the WordPress core,&#8221; Awais said. &#8220;There are so many things which are both good and bad about it. So, instead of ranting about it, I wanted to do something more productive. I went ahead, studied the source code and received a lot of help from Gutenberg contributors (Matias Ventura, James Nylen, Riad Benguella, Andrew Duthie, Joen, etc.) to finally build a Gutenberg Boilerplate project.&#8221;</p>\n<p>Awais&#8217; <a href=\"https://github.com/ahmadawais/Gutenberg-Boilerplate/\" target=\"_blank\">Gutenberg Boilerplate</a> is a good starting place for learning more of the basics about developing for the editor. It comes in the form of a plugin that offers four examples of how to build different kinds of custom Gutenberg blocks, with and without a build process:</p>\n<ul>\n<li>A block with custom CSS for editor and front end</li>\n<li>A block with ES6 or ESNext and a Webpack build process</li>\n<li>A block with editable content</li>\n<li>A block to click Tweet the contents of that block</li>\n</ul>\n<p>For example, the tweet block, which is something that might previously been handled with a shortcode, is an example that includes four files: block.js to register the custom Gutenberg block, editor.css, style.css, and index.php.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/4-gb.gif?ssl=1\"><img /></a></p>\n<p>Awais noticed that many developers were wanting to try building third-party blocks, but Gutenberg&#8217;s documentation for this was outdated and/or non-existent. He got involved in contributing to the project&#8217;s documentation after discovering the docs describing how to enqueue block and block editor assets were not available. This gave him the inspiration to create a boilerplate.</p>\n<p>&#8220;Both as a theme/plugin developer, I think there’s going to be a steep learning curve here for just about everyone &#8211; users as well as developers,&#8221; Awais said. &#8220;WordPress development just became very complicated with the Gutenberg project. I&#8217;m also not sure how devs will start writing extensions. Some users might expect them to keep the shortcodes for the old editor. Some might ask for blocks in the new one. Is there an API or back-compat? In short everything is changing and this change has both pros and cons.&#8221;</p>\n<p>These concerns also tie into the larger discussion around <a href=\"https://github.com/WordPress/gutenberg/issues/952\" target=\"_blank\">how Gutenberg can support legacy metaboxes that use the old PHP framework</a>, instead of updating to the new JS.</p>\n<p>&#8220;New metaboxes should be written in JS, and will appear in the Post Settings sidebar alongside the stock ones,&#8221; Gutenberg contributor Joen Asmussen said. &#8220;Metaboxes written in PHP should ideally be upgraded to be JS, but should continue to work in their PHP form also.&#8221; Asmussen has proposed an &#8220;Extended Settings&#8221; panel to house legacy metaboxes in a section below the editor. It would appear only when legacy plugins and metaboxes are enabled, as shown in the mockup below.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/extended-settings-mockup.png?ssl=1\"><img /></a></p>\n<p>Discussion regarding how to support metaboxes is still ongoing. With so many important issues like this up in the air, it&#8217;s too early to know what the future of extending Gutenberg will look like. At the moment, the project is undergoing rapid development and changes, so extending Gutenberg may evolve drastically over a short period of time. If the editor is to preserve the same flexibility and customization opportunities of its predecessor, the project will need to ensure that it is easy to create custom blocks and extensions while continuing to support older PHP metabox infrastructure that is currently widely used.</p>\n<div id=\"epoch-width-sniffer\"></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, 17 Jul 2017 20:28: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: Gutenberg 0.5.0 Adds New Verse Block for Poetry and a New Display for Recent Blocks\";s:7:\"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:29:\"https://wptavern.com/?p=72830\";s:7:\"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:104:\"https://wptavern.com/gutenberg-0-5-0-adds-new-verse-block-for-poetry-and-a-new-display-for-recent-blocks\";s: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:5718:\"<p>Another round of Gutenberg updates was released today. Last weekend brought <a href=\"https://make.wordpress.org/core/2017/07/08/whats-new-in-gutenberg-july-8th/\" target=\"_blank\">version 0.4.0</a>, which didn&#8217;t have too many noteworthy visible changes on the frontend but introduced an API for handling pasted content. Gutenberg developers are aiming to have specific handling for converting pasted content from applications like Word, Markdown, and Google Docs to native WordPress blocks. Version 0.4.0 also added navigation between blocks using arrow keys and included a new approach for rendering embed frames.</p>\n<p><a href=\"https://make.wordpress.org/core/2017/07/14/whats-new-in-gutenberg-14th-july/\" target=\"_blank\">Gutenberg 0.5.0</a> hit dashboards today. One major improvement to the writing flow is that the editor will now avoid showing block UI while the user is typing and/or starting a new paragraph in a text block. You can test this by typing and pressing enter twice to begin a new text block. No UI should be visible during this process. Small improvements like this one are gradually bringing a bit more zen to the editor, which is still full of confusing and surprising experiences.</p>\n<p>Version 0.5.0 adds the ability to upload images via drag-and-drop onto image block placeholders. The example below shows one of my tests. While the image is uploading, it fades in and out. This experience is a bit disconcerting, especially if the upload never resolves. I&#8217;m not certain this UI provides the best communication for the status of the image upload.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/gutenberg-image-upload.gif?ssl=1\"><img /></a></p>\n<p>This version also introduces a new Verse block, which is intended for poetry. It has a slight indent, as compared to a plain text block, but it doesn&#8217;t yet work well with copy and paste. Unless you are a poet composing in WordPress, it&#8217;s far more likely that you will be pasting in poetry content from somewhere else on the web. Other than the initial bugs, it&#8217;s a useful block for those who often post verse.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/verse-block.png?ssl=1\"><img /></a></p>\n<p>With the growing number of block types, it can be cumbersome to sort through all of them when adding a new block. Gutenberg 0.5.0 implements a new display for recent blocks. A maximum of eight are shown and the most recently used ones are displayed at the top. It does not yet persist between editor sessions, but Gutenberg contributors plan to add that in the future.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/recent-blocks.png?ssl=1\"><img /></a></p>\n<p>Other notable improvements in this release include the following:</p>\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/1833\" target=\"_blank\">New tabs mode for the sidebar</a> to switch between post settings and block inspector</li>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/1816\" target=\"_blank\">Display warning message</a> when navigating away from the editor with unsaved changes</li>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/1872\" target=\"_blank\">Mobile implementation</a> of block mover, settings, and delete actions</li>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/1852\" target=\"_blank\">Search through all tabs</a> on the inserter and hide tabs</li>\n<li>Enable <a href=\"https://github.com/WordPress/gutenberg/pull/1889\" target=\"_blank\">ability to add custom classes</a> to blocks (via inspector)</li>\n<li>Add <a href=\"https://github.com/WordPress/gutenberg/pull/1896\" target=\"_blank\">“table of contents” document outline</a> for headings (with empty heading validation)</li>\n</ul>\n<h3>Writing Long-Form Content with Gutenberg is Still a Frustrating Experience</h3>\n<p>Gutenberg in its current state is a long way away from being an editor that users would embrace for long-form writing. It still contains many unnerving bugs that steal user confidence. For example, when pasting in multiple paragraphs from a lorem ipsum generator, the editor gave me a white screen and I lost all of the content in my post. After a bit of testing I found that pasting in paragraphs one at a time worked.</p>\n<p>This kind of frustrating and unexpected behavior has caused many testers to wonder why it isn&#8217;t being referred to as alpha software instead of beta. WordPress contributor Jon Brown summed up this common sentiment in a <a href=\"https://make.wordpress.org/core/2017/07/08/whats-new-in-gutenberg-july-8th/#comment-32799\" target=\"_blank\">comment</a> on the 0.4.0 release post.</p>\n<p>&#8220;It’s getting better, but it honestly still feels more like a 0.0.4 alpha than a 0.4.0 beta,&#8221; Brown said. &#8220;I’ve tried writing long form content several times with each version since 0.1.0 and each time I’m quickly frustrated by the lack of flow between blocks. It’s more frustrating than TinyMCE.&#8221;</p>\n<p>Gutenberg needs to make significant progress before it can be suitable for writing anything more than a few short paragraphs. It&#8217;s nearly impossible to get into the flow of creating long-form content with the prominence of the block UI. Right now, the editor just gets in the way. The current UI is skewed heavily towards frequent block creation. It is clutter-some and distracting for pure writing tasks. Following the evolution of the editor, with its fast-paced development cycle, is exhilarating after years of stagnation. But the project is sorely in need of a breakthrough where the Gutenberg UI finally gets out of the way of writing.</p>\n<div id=\"epoch-width-sniffer\"></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, 15 Jul 2017 05:14:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:89:\"WPTavern: Jetpack Professional Plan Introduces Unlimited Access to 200+ Commercial Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73055\";s:7:\"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:99:\"https://wptavern.com/jetpack-professional-plan-introduces-unlimited-access-to-200-commercial-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3407:\"<p>Automattic has been teasing its plan to add commercial themes to Jetpack for several months after introducing theme installation for self-hosted users from WordPress.com. In March, the plugin <a href=\"https://wptavern.com/jetpack-introduces-theme-installation-from-wordpress-com-sparks-controversy-with-alternative-marketplace-for-free-themes\" target=\"_blank\">opened up access to all of WordPress.com&#8217;s free themes via the Jetpack Manage interface</a>. All signs pointed to Automattic developing the infrastructure to offer commercial themes via Jetpack upgrades. At that time, however, Jetpack team member Richard Muscat said that Automattic had &#8220;no immediate plans to sell themes at this time.&#8221;</p>\n<p></p>\n<p>Yesterday those subscribed to the Jetpack Announcements email were notified that <a href=\"https://wordpress.com/professional-sites/\" target=\"_blank\">commercial themes have landed</a> in the <a href=\"https://jetpack.com/install/professional/\" target=\"_blank\">Jetpack Professional plan</a>, which is regularly priced at $24.92/month or $299/year. Customers will have unlimited access to more than 200 commercial themes that are already available on WordPress.com. Jetpack users on the free plan will see all the themes available in the WordPress.com theme browser with a prompt to upgrade for the ones that are commercial.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/jetpack-themes.png?ssl=1\"><img /></a></p>\n<p>The announcement also noted that any themes users elect to use will be automatically backed up and regularly scanned for malware as part of the security services included in the package. For those who are running a multisite network, each site will need its own Jetpack Professional subscription to have access to the commercial themes.</p>\n<p>For years the WordPress community has speculated about what Automattic&#8217;s long game was for Jetpack, and many believed it was only a matter of time before the plugin started offering commercial upgrades. It was <a href=\"https://jetpack.com/2011/03/09/blast-off/\" target=\"_blank\">introduced to the WordPress world in 2011</a>  as a way to provide feature parity between WordPress.com and self-hosted sites. The first version included just eight modules, but fellow plugin developer and entrepreneurs in the community were immediately aware of its commercial potential.</p>\n<p>In 2016, Automattic CEO Matt Mullenweg <a href=\"https://wptavern.com/woocommerce-powers-42-of-all-online-stores\" target=\"_blank\">identified both Jetpack and WooCommerce as “multi-billion dollar opportunities”</a> that could each individually be larger than WordPress.com. The plugin is now active on more than 3 million WordPress sites. Automattic&#8217;s aggressive commercialization of Jetpack in the past two years is the fulfillment of initial predictions about where the plugin was headed.</p>\n<p>The new commercial themes offering significantly raises the value of the Jetpack Professional plan, which was previously targeted at business users who require unlimited storage, Google Analytics, and additional SEO features. With the addition of unlimited use of 200+ themes, Automattic has expanded the Professional plan to be more compelling for non-business users who are simply interested in gaining access to a collection of professionally-supported themes.</p>\n<div id=\"epoch-width-sniffer\"></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, 14 Jul 2017 21:46: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: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: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:48:\"BuddyPress: BuddyPress 2.9.0 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=267012\";s:7:\"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://buddypress.org/2017/07/buddypress-2-9-0-release-candidate-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:2980:\"<p>Today sees BP 2.9.0 move to The final testing phase <strong>Release Candidate 1</strong>.</p>\n<p>This is the last chance to test out this release and report back any issues found before final release in approximately two weeks time.</p>\n<p>Any issues found can be reported to our <a href=\"https://buddypress.trac.wordpress.org/newticket\"> trac ticket home </a>, or raised on the support forum.</p>\n<p>Amongst other improvements and fixes to look out for are:</p>\n<ul>\n<li>Fixing display of older activity comments.</li>\n<li>Correction of message when removing friends that are not friends.</li>\n<li>Group invites &#8211; omit sending to previously invited members.</li>\n<li>Profile image upload fix for IE Edge breaksIOS fix.</li>\n<li>Correct issue with hidden group &amp; CSS specificity.</li>\n<li>URL compatibility for LightSpeed.</li>\n<li>Fix inability resizing of member avatar for cyrillic character filenames.</li>\n</ul>\n<p>For a full list of commits see <a href=\"https://buddypress.trac.wordpress.org/query?keywords=~&milestone=2.9&group=status&col=id&col=summary&col=keywords&col=owner&col=type&col=priority&col=component&col=version&order=priority\">2.9 tickets</a> A full changelog will be available when we release the final version.</p>\n<p>You can download the plugin to test from the WP repo <a href=\"https://downloads.wordpress.org/plugin/buddypress.2.9.0-RC1.zip\">BP 2.9.0-RC1</a> or grab a copy from our SVN repo.</p>\n<p>A reminder to all theme developers that there are changes to template markup that could effect layouts and ask that they check their themes carefully, the changes are listed below along with changelog links; again any issues or problems please report as soon as possible to the BP trac or slack channel.</p>\n<p><strong>Template changes</strong></p>\n<p>In this release there are a number of improvements to templates that add a level of improved a11y performance and markup changes for better semantics &amp; Standards.</p>\n<p>Theme authors may want to pay particular attention to changes to profile field visibility links and the profile field descriptions where significant markup changes are made that effect positioning of these elements &#8211; changesets for these are <a href=\"https://buddypress.trac.wordpress.org/changeset/11617\">r11617</a> &amp; <a href=\"https://buddypress.trac.wordpress.org/changeset/11618\">r11618</a></p>\n<p><strong>Nouveau &#8211; new template pack</strong></p>\n<p>If you&#8217;re looking for Nouveau as we mentioned in the beta2 announcement we have delayed the release of this new template pack to ensure it receives as much code checking &amp; refinement as possible and we&#8217;ll be looking to probably package this as it&#8217;s own release shortly after 2.9 is released.</p>\n<p>We thank you in advance for all testing and reports and it need not be mentioned but please don&#8217;t run Beta or RC releases in a production environment only on test installs.</p>\n<p>Regards,<br />\nThe BuddyPress 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:\"Fri, 14 Jul 2017 12:57: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Hugo Ashmore\";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:102:\"WPTavern: CoKinetic Systems Pursues $100 Million GPL License Violation Case Against Panasonic Avionics\";s:7:\"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:29:\"https://wptavern.com/?p=72923\";s:7:\"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:\"https://wptavern.com/cokinetic-systems-pursues-100-million-gpl-license-violation-case-against-panasonic-avionics\";s: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:7082:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/paper-plane.jpg?ssl=1\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/8176740@N05/5703519506\">Paper Plane</a> &#8211; <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>Open source software has made its way into nearly every industry, but a recent open source security and risk analysis shows <a href=\"https://wptavern.com/2017-open-source-security-and-risk-analysis-report-shows-widespread-gpl-license-conflicts\" target=\"_blank\">widespread license compliance risks</a>, with 75% of the audited applications including GPL license conflicts. Although most violations are unintentional, there are some cases where companies do not comply with the license in order to block competitors from developing similar software.</p>\n<p>GPL enforcement doesn&#8217;t often lead to litigation. When it does, most other avenues of resolving the complaint have already been exhausted. A lawsuit in the air transport industry is currently bringing more attention to the gravity of not complying with open source software licensing requirements.</p>\n<p><a href=\"http://www.cokinetic.com/\" target=\"_blank\">CoKinetic Systems</a>, a developer and manufacturer of in-flight entertainment (IFE) software, has <a href=\"https://www.unitedstatescourts.org/federal/nysd/470007/1-0.html\" target=\"_blank\">filed a case against Panasonic Avionics</a> that includes allegations of a fairly egregious breach of the GPL. The complaint alleges that Panasonic Avionics has monopolized the Panasonic IFE Software and Media Services Market by deliberately refusing to distribute the source code for its open-source Linux-based operating system:</p>\n<blockquote><p>More specifically, Panasonic has built the Linux-Based Panasonic Core Software using the open-source Linux kernel, which is clearly governed by the GPL, together with Panasonic’s own modified Linux modules, which are likewise governed by the GPL. </p>\n<p>Indeed, Panasonic has itself affirmatively identified its own modified modules as being subject to the GPL, because the original Linux modules were specifically designed to generate warning messages if other code is linked with or otherwise combined with the Linux modules that are not licensed under the GPL. To suppress these warnings, Panasonic willfully acted to insert code into its own modules to indicate that they were licensed under the GPL.</p>\n<p>Panasonic has incorporated a massive amount of open source modules, programs, and libraries into the Linux-Based Panasonic Core Software, without distributing notices or source code to the Linux-Based Panasonic Core Software, or even to any part of it&#8230;By deliberately refusing to distribute the source code to the Linux-Based Panasonic Core Software in accordance with its GPL obligations, Panasonic intentionally deprives competitors in the market from having the ability to develop software that can access the basic features and capabilities of Panasonic IFE Hardware.</p></blockquote>\n<p>CoKinetic Systems contends that Panasonic&#8217;s refusal to distribute its source code voids its GPL license and &#8220;potentially exposes Panasonic to billions of dollars in statutory damages for hundreds of thousands of hardware installations that willfully infringe copyrights belonging to hundreds or even thousands of software developers that freely contributed source code to Linux.&#8221;</p>\n<p>Furthermore, the complaint details how competitors have to rely on Panasonic&#8217;s APIs in order to offer software services to airlines using Panasonic&#8217;s IFE hardware, because they do not have access to the source code for the Linux-based core software. CoKinetic claims that Panasonic also deliberately blocks competitor products by its selective distribution of its APIs, resulting in stifled industry innovation and monopoly control over the Panasonic IFE Software and Media Services Market.</p>\n<p>Perhaps the worst and most grave allegation in the complaint is that, in addition to locking up the source code and doling out access to the APIs, Panasonic also maliciously sabotaged its own APIs in order to give the appearance that it is the only reliable software service provider for its hardware, which CoKinetic claims is inferior and sold at monopolistic prices.</p>\n<blockquote><p>Panasonic also is able to use its control over the Linux-Based Panasonic Core Software in order to make ongoing, undisclosed, and often malicious modifications to its source code, deliberately “breaking” Panasonic’s own APIs in order to purposely and maliciously sabotage the performance of third-party software products that Panasonic deems a competitive threat — particularly CoKinetic software.</p></blockquote>\n<p>In the introduction to the case, CoKinetic cites a litany of anti-competitive conduct the company has engaged in over the past decade before detailing the current allegations. The case is not purely an open source license dispute, as the plaintiff also alleges that Panasonic abused regulatory processes, engaged in acts of corporate espionage, defamed CoKinetic, paid commercial bribes, and employed unlawful means to monopolize the Panasonic IFE Software and Media Services Market.</p>\n<p>CoKinetic is seeking compensatory damages for Panasonic&#8217;s GPL ongoing GPL breaches. The specific amount would be determined at the trial but the company believes it to be in excess of $100 million. The company also wants the court to compel Panasonic to publicly disclose and distribute the source code.</p>\n<p>This isn&#8217;t a case where distributing the source code is just a small sticking point or just a matter of principle. It has the potential to open up the IFE industry for faster progress and greater innovation. Many reading this article have undoubtedly used Panasonic&#8217;s IFE products when flying with the company&#8217;s customers, which include Emirates Airlines, Delta Air Lines, Virgin America, and United Airlines. With the source code available, airline customers could remove Panasonic&#8217;s software from their IFE hardware and replace it with their own software solutions.</p>\n<p>The <a href=\"https://www.unitedstatescourts.org/federal/nysd/470007/1-0.html\" target=\"_blank\">complaint</a>, which was filed in the Southern District of New York in March, demands a jury trial. An initial pre-trial conference was held in May, but the case has been slow moving. The Court gave a deadline for the Defendant to file its motion to dismiss, but deadlines have since been extended. The Court also strongly recommended that the two parties retain a private mediator but it&#8217;s not clear how outside mediation could solve such a far-reaching matter that impacts so many vendors. <a href=\"https://www.pacermonitor.com/public/case/20747763/CoKinetic_Systems,_Corp_v_Panasonic_Avionics_Corporation\" target=\"_blank\">Additional documents</a> are due over the next few months, so it will be some time before there are updates on the progress of the case.</p>\n<div id=\"epoch-width-sniffer\"></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, 14 Jul 2017 04:39: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: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: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:45:\"WPTavern: AJ Morris Acquires 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73071\";s:7:\"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://wptavern.com/aj-morris-acquires-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3545:\"<p>In 2013, iThemes <a href=\"https://wptavern.com/ithemes-launches-e-commerce-plugin-exchange\">released Exchange</a>, an e-commerce platform that aimed to make selling online as simple as possible. Today, the company <a href=\"https://ithemes.com/2017/07/13/ithemes-exchange-new-home-exchangewpcom/\">announced</a> that AJ Morris, Product Manager at Liquid Web, has taken over the project.</p>\n<p>&#8220;When approached about taking over iThemes Exchange early this year, we wanted to be sure the project and our customers went into very competent hands, someone who will love and care for them as much as we do,&#8221; Cory Miller, founder of iThemes, said.</p>\n<p>&#8220;Having spent four and a half years investing in the project and in you and your success, we did not take this lightly.</p>\n<p>&#8220;After numerous conversations over the past several months, we believe the best home for Exchange is with ExchangeWP LLC led by AJ Morris.&#8221;</p>\n<p>Everything iThemes Exchange related will transition to <a href=\"https://exchangewp.com/\">ExchangeWP.com</a>. Toolkit, Plugin Suite, Exchange Pro Pack, and iThemes Exchange Add-on customers will be given accounts for free support and upgrades through August 2018 at ExchangeWP.com.</p>\n<p>Beginning today, customers will no longer be able to purchase Exchange or its add-ons through iThemes as the company transfers licenses and products to ExchangeWP. However, iThemes will continue to provide customer support until the transition is completed, expected to happen in early August.</p>\n<p>Morris says he&#8217;ll continue to focus on making e-commerce simple and will provide regular updates to customers to provide insight into what goes into transition a product from one company to another and where the product is heading.</p>\n<p>&#8220;These days, it’s very easy to get WordPress up and running so you can start blogging,&#8221; Morris said. &#8220;But when you want to add e-commerce to the mix, it&#8217;s a bit different.&#8221;</p>\n<p>&#8220;With big players like WooCommerce out there, it becomes too much too quickly for the average content producer to get their store up and running.</p>\n<p>&#8220;Exchange is going to continue focusing on the independent publishers that want to keep the revenue they can, while providing a simplistic experience in an easy-to-use e-commerce plugin that will help get their stores online quickly.&#8221;</p>\n<p>Allowing Morris to take over the project frees up resources for iThemes to focus on three of its flagship products; BackupBuddy, iThemes Security, and iThemes Sync. In addition to their core products, the company says it will soon release a new project.</p>\n<p>&#8220;My job as CEO is to be a steward of the time and resources we have at iThemes in order to serve you best,&#8221; Miller said.</p>\n<p>&#8220;We’ve realized for a while that it was past time for us to refocus our finite resources on the projects that have the most growth and potential for our company and you.</p>\n<p>&#8220;That meant we either needed to find a new home for Exchange or sunset the project. I’m thankful we didn’t have to do the latter.&#8221;</p>\n<p><a href=\"https://ajmorris.me/\">Morris</a> is a <a href=\"https://profiles.wordpress.org/ajmorris\">long-time member</a> of the WordPress community and <a href=\"https://wordpress.tv/speakers/aj-morris/\">has spoken</a> at several WordCamps. With Morris taking over the reigns, existing customers won&#8217;t have to worry about finding a replacement.</p>\n<div id=\"epoch-width-sniffer\"></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, 14 Jul 2017 01:00: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: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:53:\"Akismet: Akismet WordPress Plugin 3.3.3 Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1953\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://blog.akismet.com/2017/07/13/akismet-wordpress-plugin-3-3-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:1413:\"<p>Version 3.3.3 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>For a full list of the changes in this release, see the <a href=\"https://plugins.trac.wordpress.org/log/akismet/trunk?action=stop_on_copy&mode=stop_on_copy&rev=1695995&stop_rev=1676206&limit=100&sfp_email=&sfph_mail=\">revision log</a>, but here are some notable fixes:</p>\n<ul>\n<li>The number of spam blocked that is displayed on the WordPress dashboard will now be more accurate and updated more frequently.</li>\n<li>We fixed a bug in the Akismet widget that could cause PHP warnings.</li>\n<li>We&#8217;ve improved Akismet&#8217;s compatibility with other plugins by removing a workaround that only targeted very old versions of WordPress.</li>\n</ul>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1953/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1953/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1953&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Jul 2017 22:00: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:17:\"Christopher Finke\";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:68:\"WPTavern: WordPress.com Introduces Scheduling for Social Media Posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73026\";s:7:\"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:\"https://wptavern.com/wordpress-com-introduces-scheduling-for-social-media-posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2916:\"<p>WordPress.com is venturing into the realm of social media management applications with its latest feature that allows users to <a href=\"https://en.blog.wordpress.com/2017/07/13/you-can-now-schedule-your-social-media-posts-from-wordpress-com/\" target=\"_blank\">schedule Facebook, Twitter, and LinkedIn updates for individual posts</a>. This goes beyond the basic <a href=\"https://jetpack.com/support/publicize/\" target=\"_blank\">Publicize</a> functionality that automatically shares posts to connected accounts as soon as they are published, giving users the ability to automate their content marketing to social networks for the most optimal time for sharing.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/schedule-sharing.png?ssl=1\"><img /></a></p>\n<p>It&#8217;s difficult to know how a post will appear on social networks once it has automatically been shared, which is one reason why many people choose to manually share a post for the best presentation. You want to ensure that the right thumbnail will show up with a message customized for each network&#8217;s particular audience. The new social scheduling feature on WordPress.com includes a built-in preview screen so users can see what the post will look like once it is shared to the network and then make any necessary tweaks.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/social-sharing-previews.png?ssl=1\"><img /></a></p>\n<p>Scheduling social media posts is available on WordPress.com for Premium and Business plan users and for Jetpack Professional and Premium users. On the Premium plan level, which comes in at ~$9/month, users pay less than they would for scheduling apps like Buffer, Hootsuite, or Sprout Social while also getting access to more commercial WordPress features.</p>\n<p>To truly become a realistic replacement for these types of social media marketing apps, WordPress.com would need to offer better analytics tied into the new sharing feature to show how posts are performing at different times and networks. Although WordPress.com allows for unlimited scheduling and users, it would also need to allow sharing to more networks to be more competitive against these apps. For users who don&#8217;t need all of that data but just want the scheduling feature, a paid Jetpack or WordPress.com plan is a more affordable option.</p>\n<p>Several other self-hosted WordPress plugins already <a href=\"https://wordpress.org/plugins/search/schedule+social+media/\" target=\"_blank\">offer scheduling social media posts</a> for free and some even integrate the social accounts with Google Analytics. The addition of this feature to Jetpack commercial plans may not be as compelling for self-hosted users who can already find this for free, but it adds value for existing Jetpack customers who may now be able to replace a plugin or third-party service.</p>\n<div id=\"epoch-width-sniffer\"></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, 13 Jul 2017 19:59:47 +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: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:62:\"WPTavern: WPWeekly Episode 281 – In Memory of Jesse Petersen\";s:7:\"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:58:\"https://wptavern.com?p=73045&preview=true&preview_id=73045\";s:7:\"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:\"https://wptavern.com/wpweekly-episode-281-in-memory-of-jesse-petersen\";s: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:2501:\"<p>In this episode, <a href=\"http://jjj.me/\">John James Jacoby</a> and I are joined by <a href=\"https://www.wpsteward.com/\">Ben Meredith</a>. Over the past few years, Ben has established a friendly and professional relationship with <a href=\"https://twitter.com/jpetersen\">Jesse Petersen</a>, <a href=\"https://wptavern.com/jesse-petersen-founder-of-genesis-the-me-passes-away\">who passed away</a> due to complications from Cystic Fibrosis.</p>\n<p>Ben shares his unique perspective on who Petersen was as a person and describes the challenges of taking over his business. We emphasized how important it is to create a file with passwords and other login information to help appointed people access a person&#8217;s digital presence. We also discuss if saying a person lost their battle with an illness is a negative thing to say.</p>\n<p>To close out the show, we talk about net neutrality, 10up acquiring Lift UX, and Let&#8217;s Encrypt offering wildcard certificates in 2018.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/automattic-releases-net-neutrality-wordpress-plugin-ahead-of-july-12-protest\">Automattic Releases Net Neutrality WordPress Plugin Ahead of July 12 Protest</a><br />\n<a href=\"https://wptavern.com/10up-acquires-lift-ux\">10up Acquires Lift UX</a><br />\n<a href=\"https://wptavern.com/lets-encrypt-passes-100-million-certificates-issued-will-offer-wildcard-certificates-in-january-2018\">Let’s Encrypt Passes 100 Million Certificates Issued, Will Offer Wildcard Certificates in January 2018</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://www.newlungsfor.me/\">Newlungsfor.me</a> is a place to read about Jesse’s battle with Cystic Fibrosis along with <a href=\"http://www.cffatboy.com/\">CFfatboy.com</a>.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, July 19th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">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\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #281:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></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, 12 Jul 2017 22:00:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:97:\"WPTavern: Sustain Event Draws 100 Attendees to Discuss the Sustainability of Open Source Software\";s:7:\"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:29:\"https://wptavern.com/?p=73014\";s:7:\"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:\"https://wptavern.com/sustain-event-draws-100-attendees-to-discuss-the-sustainability-of-open-source-software\";s: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:5136:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/sustain.png?ssl=1\"><img /></a></p>\n<p>More than 100 open source project maintainers and industry leaders gathered at the GitHub headquarters in San Francisco last month to discuss the long-term sustainability of open source software. The <a href=\"https://sustainoss.org/\" target=\"_blank\">Sustain</a> event, put on by a relatively new organization called SustainOSS, did not follow a traditional conference format with talks and keynotes but was intentionally left unstructured to foster open discussion.</p>\n<p>Organizers expected 50 attendees but ended up with double their estimates. The $50 ticket price covered day care, travel assistance, food, and other miscellaneous event costs. Attendees shared insights from their diverse backgrounds and participated in collaborative working sessions and various discussions facilitated by organizers.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Defining a common unified theory of open source sustainability is super hard! <a href=\"https://twitter.com/hashtag/sustainoss?src=hash\">#sustainoss</a> <a href=\"https://t.co/2PznN2oZGM\">pic.twitter.com/2PznN2oZGM</a></p>\n<p>&mdash; Lou Huang (@saikofish) <a href=\"https://twitter.com/saikofish/status/876863604670304257\">June 19, 2017</a></p></blockquote>\n<p></p>\n<p>Co-organizer Alanna Irving shared in her <a href=\"https://medium.com/open-collective/we-gathered-100-open-source-sustainers-c24f571447a4\" target=\"_blank\">wrap-up post</a> how the team <a href=\"https://opencollective.com/sustainoss\" target=\"_blank\">used Open Collective</a> to make the event&#8217;s finances transparent and offer payment options for participants and sponsors. The service has recently added a new feature that allows collectives to communicate event info and sell tickets.</p>\n<p>Representatives from large tech companies attended the event, as well as contributors from various open source projects and foundations, including Google, Amazon, Paypal, Airbnb, Red Hat, JS Foundation, Linux Foundation, Apache Foundation, npm, FontAwesome, GulpJS, and more. Irving published a few insights from the discucssions that she and her colleagues are applying to their work at Open Collective:</p>\n<ul>\n<li>Introducing money in open source is less controversial than we thought. The main issues are related to how.</li>\n<li>The coder role is only one among many equally important roles: community builder (for onboarding and creating a healthy ecosystem), documentation writer, fundraiser, and public advocate.</li>\n<li>Companies want to support open source communities. This is now more clear than ever.</li>\n<li>It’s easier for some companies to make in-kind donations rather than cash. We’re working on making this easier, and will share more about it soon.</li>\n<li>Projects that companies publicly support need to have accountability and respect codes of conduct, in order to avoid PR nightmares.</li>\n</ul>\n<p>On the day following the event, SustainOSS organizers tweeted out a link to <a href=\"https://github.com/sustainers/discussions\" target=\"_blank\">a new forum on GitHub for discussing open source sustainability</a>. Proposed topics include fundraising, governance, contributor retention, productivity, and managing corporate relationships. It was created to offer a safe place for open source sustainers to collaborate with each other in the open and contributors have already submitted some practical ideas for discussion, such as <a href=\"https://github.com/sustainers/discussions/issues/4\" target=\"_blank\">adding a standardized FUNDING or SUSTAINABILITY file to repositories</a>.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Busy day, got a lot done. Stay tuned. <a href=\"https://twitter.com/hashtag/sustainoss?src=hash\">#sustainoss</a> <a href=\"https://twitter.com/hashtag/sustain17?src=hash\">#sustain17</a> <a href=\"https://t.co/CtWs82FXAn\">pic.twitter.com/CtWs82FXAn</a></p>\n<p>&mdash; SustainOSS (@SustainOSS) <a href=\"https://twitter.com/SustainOSS/status/876996636391559169\">June 20, 2017</a></p></blockquote>\n<p></p>\n<p>Sustain was inspired by inspired by the <a href=\"https://maintainerati.org/\" target=\"_blank\">Maintainerati</a> event held in London in May 2017. The similarly unstructured event brought together open source maintainers who share similar challenges. GitHub also hosted the <a href=\"https://events.chef.io/events/wontfix-cabal/\" target=\"_blank\">Wontfix Cabal</a> event at its San Francisco headquarters in February, which highlighted some of the difficulties related to maintaining OSS projects. Events focused on maintaining and funding OSS have been popping up in the past two years, as more people become aware that open source infrastructure has a critical sustainability problem.</p>\n<p>The SustainOSS organizers will be releasing a more detailed article on the event soon. They are also open to considering hosting other Sustain events in different locations. Follow <a href=\"https://twitter.com/SustainOSS\" target=\"_blank\">@SustainOSS</a> on Twitter for the latest updates.</p>\n<div id=\"epoch-width-sniffer\"></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, 12 Jul 2017 20:38:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:89:\"HeroPress: How I found myself in WordPress – Как я нашел себя в 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:56:\"https://heropress.com/?post_type=heropress-essays&p=1962\";s:7:\"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:\"https://heropress.com/essays/i-found-myself-in-wordpress/?utm_source=rss&utm_medium=rss&utm_campaign=i-found-myself-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22562:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/07/071217-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress remains the place where you can find yourself, and help make life a little better.\" /><p><a href=\"http://heropress.com/feed/#russian\">Это эссе также доступно на русском языке.</a></p>\n<h3>About Russia and familiarity with technologies</h3>\n<p>Russia is a very large and very different country. The basic population, as well as technological development, is concentrated in the central part of the country, in &#8220;city-states&#8221;: Moscow and St. Petersburg. Other regions are much less developed: lower wages, worse and more expensive infrastructure, fewer IT-vacancies and activities.</p>\n<p>I was born and grew up in a remote part of Russia &#8211; in the Far East, in one of the industrial cities, which is located in 7 time zones and 9000 kilometers from Moscow. The Internet, like other technologies, reached there with a significant delay and for a lot of money (unlimited Internet at a speed of 64 kb/s appeared only in 2007), Therefore, at first, the basics of site building had to be learned in snatches with the help of dial-up.</p>\n<p>The first site I did in school. It was built using simple HTML and CSS. But even in this form, it was very impressive and exciting. Then such sites were popular and periodically on the Internet I <a href=\"http://softphoenix.narod.ru/about.htm\">met guys</a> of my age who like me comprehended the science of site building.<br />\nI was lucky to find a like-minded person, with whom we were able to develop together for some time and even launch a joint website.<br />\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img1-min.png\"><img class=\"aligncenter wp-image-1963 size-full\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img1-min.png\" alt=\"\" width=\"962\" height=\"637\" /></a></p>\n<h3>University and start of work</h3>\n<p>Admission to the computer faculty of the university allowed to more specifically address the issues of web development: to learn PHP and MySQL, to get acquainted with a couple of CMS and to make <a href=\"http://web.archive.org/web/20100207131804/http://www.compnot.ru:80/\">my first blog</a> on WordPress :). As far as I remember, the blog worked on some WordPress assembly using version 2.9. If you count from that moment, it turns out that I somehow have been working with WordPress for almost 8 years.</p>\n<p>In those days, <a href=\"http://ru.wordpress.org\">ru.wordpress.org</a> was just born and there was no main site on the Russian-language Internet. It was a time of amateur assemblies, amateur translations and even <a href=\"http://book.max-3000.com/page/istorija-sozdanija\">alternatives of WordPress</a>, aimed to the Russian segment of the Internet.</p>\n<p>By the will of fate, my first place of work related to website development was the web studio that used Joomla and Drupal. Then there were a few more places of work, during which time WordPress then turned into the main working tool, then returned to the category of extra work and hobbies.</p>\n<p>The turning point was the decision to move to Moscow and a full transition to WordPress in freelance format.</p>\n<h3>Moving to Moscow</h3>\n<p>The scenario of moving to Moscow or St. Petersburg is quite popular among IT specialists of my native region. This is a great chance to find interesting and highly paid job, get acquainted with a lot of IT specialists, including narrow ones, and develop in the area of interest.</p>\n<p>In Moscow, I moved with remote work and I do not have personal experience of employment in this city, but my wife and most of the acquaintances were satisfied with the options found.</p>\n<p>After about six months of living in Moscow, I was even more thirsty for adventure — to become a freelancer and completely concentrate on WordPress. The ability to plan time independently gives additional space for maneuvers and time for reflection. In my case, this led to an increase in activity in the WordPress community.</p>\n<h3>Participate in the WordPress community</h3>\n<p>Actively participate in the life of the community, I started about 1.5 years ago. Initially, these were the replies at the support forum, then the development of my plugins, after which I decided to try myself in translating the extensions into Russian and recording training videos for Russian-speaking users.</p>\n<p>Over time, it turned into a kind of hobby or even a way of life. Every day I read a lot of posts from users on the support forums and try to help resolve their issues, check and correct the added translation lines, periodically record and post training videos.</p>\n<p>Communication with users is very helpful. You are one of the first to learn about the problems and ways to solve them, you can quickly correct some incorrect or incorrect translation. Also, over time, a list of popular questions accumulates, which can be turned into training articles and videos. In turn, the creation of articles and videos helps to structure knowledge and understand the details.</p>\n<p>On <a href=\"http://ru.wordpress.org\">ru.wordpress.org</a> a great team of moderators and translation editors has gathered. We regularly communicate in Slack, some I meet on WordCamp.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img2-min-1.jpg\"><img class=\"aligncenter size-large wp-image-1967\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img2-min-1-1024x768.jpg\" alt=\"Denis and Sergey\" width=\"960\" height=\"720\" /></a></p>\n<p>In November 2016 I took part in the Global Day of Translation 2. It was an unusual experience: broadcasting from around the world, feeling the scale of what was happening and the excitement of the translation. At that time we took 6th place as the most active locale and attracted 7 new translators.</p>\n<h3>Meetups and WordCamp</h3>\n<p>In Russia there are not so many cities where WordPress-meetups are held, and WordCamp is held only in Moscow. But despite all this, these events are a great opportunity to be among WordPress lovers, to see live people with whom I have only spoken on the network before, and just feel the spirit of WordPress :).</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img3-min.jpg\"><img class=\"aligncenter wp-image-1968 size-full\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img3-min.jpg\" alt=\"Three big cheery guys at WordCamp\" width=\"1000\" height=\"667\" /></a></p>\n<p>This year I plan to visit WordCamp Moscow for the third time. I visit WordCamp as a participant, but I hope someday I will find a topic close to me and I will decide to apply for a presentation :). I think it will be interesting.</p>\n<h3>Conclusion</h3>\n<p>At the moment I&#8217;m a full-time freelancer. This allows me to quite well combine work and activities in the community. I like to <a href=\"https://www.youtube.com/channel/UCLkgL32ycnfl1hs0nJJD6Og\">share knowledge</a> and make WordPress more accessible for Russian users.</p>\n<p>Many resources of WordPress are dominated by English, and some, for example, as <a href=\"https://developer.wordpress.org/\">developer.wordpress.org</a> or &#8220;Handbook&#8221; are not available for localization. I hope, in the future this will change and we will be able to expand our activities.</p>\n<p>In any case, WordPress remains the place where you can find yourself and help make life a little better for yourself and the rest of the participants.</p>\n<hr />\n<h1 id=\"russian\">Как я нашел себя в WordPress</h1>\n<h3>Про Россию и знакомство с технологиями</h3>\n<p>Россия очень большая и очень разная страна. Основное население, как и технологическое развитие, сосредоточено в центральной части страны, в &#8220;городах-государствах&#8221;: Москве и Санкт-Петербурге. Остальные регионы развиты значительно слабее: ниже зарплаты, хуже и дороже инфраструктура, меньшее количество IT-вакансий и мероприятий.</p>\n<p>Я родился и вырос в отдаленной части России — на Дальнем Востоке, в одном из промышленных городов, который расположен в 7 часовых поясах и 9000 километров от Москвы. Интернет, как и другие технологии, доходили туда с существенным опозданием и за большие деньги (безлимитный интернет на скорости 64 кб/сек появился только в 2007 году), поэтому, по началу, азы сайтостроения приходилось познавать урывками с помощью dial-up.</p>\n<p>Первый сайт я сделал ещё в школе. Он был построен на простейшем HTML и CSS. Но даже в таком виде, это было очень впечатляюще и захватывающе. Тогда такие сайты были популярны и, периодически на просторах интернета, я <a href=\"http://softphoenix.narod.ru/about.htm\">встречал ребят</a> моего возраста, которые, как и я, постигали науку сайтостроения.</p>\n<p>Мне повезло найти единомышленника, с которым мы смогли некоторое время вместе развиваться и даже запустить совместный сайт.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img1-min.png\"><img class=\"aligncenter size-full wp-image-1963\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img1-min.png\" alt=\"Very old style web site.\" width=\"962\" height=\"637\" /></a></p>\n<h3>Университет и начало работы</h3>\n<p>Поступление на компьютерный факультет университета позволило более предметно заняться вопросами веб-разработки: изучить PHP и MySQL, познакомиться с парой CMS и завести <a href=\"http://web.archive.org/web/20100207131804/http://www.compnot.ru:80/\">свой первый блог</a> на WordPress :). Насколько я помню, блог работал на какой-то сборке WordPress, использующей версию 2.9. Если вести отсчет с того момента, то получается, что я так или иначе работаю с WordPress уже почти 8 лет.</p>\n<p>В те времена <a href=\"http://ru.wordpress.org/\">ru.wordpress.org</a> только зарождался и в русскоязычном интернете не было какой-то основной площадки. Это было время любительских сборок, любительских переводов и даже <a href=\"http://book.max-3000.com/page/istorija-sozdanija\">альтернатив WordPress</a>, ориентированных на русский сегмент интернета.</p>\n<p>Волею судеб, моим первым местом работы, связанным с разработкой сайтов, стала веб-студия, использовавшая Joomla и Drupal. Затем было ещё несколько мест работы, в течение которых WordPress то превращалась в основной рабочий инструмент, то возвращалась в разряд дополнительной работы и хобби.</p>\n<p>Переломным моментом стало решение о переезде в Москву и полный переход на WordPress в фриланс-формате.</p>\n<h3>Переезд в Москву</h3>\n<p>Сценарий переезда в Москву или Санкт-Петербург достаточно популярен среди IT-специалистов моего родного региона. Это отличный шанс найти интересную и высокооплачиваемую работу, познакомится со множеством IT-специалистов, в том числе узких, и развиться в интересующей области.</p>\n<p>В Москву я переезжал вместе с удаленной работой и у меня нет личного опыта трудоустройства в этом городе, но моя жена и большинство знакомых остались довольны найденными вариантами.</p>\n<p>Примерно через полгода проживания в Москве, меня обуздала ещё большая жажда приключений — стать фрилансером и полностью сосредоточиться на WordPress. Возможность самостоятельно планировать время дает дополнительное пространство для маневров и время на размышления. В моем случае, это привело к увеличению активности в сообществе WordPress.</p>\n<h3>Участие в сообществе WordPress</h3>\n<p>Активно участвовать в жизни сообщества я начал примерно 1.5 года назад. Вначале это были ответы на форуме поддержки, затем разработка своих плагинов, после чего я решил попробовать себя в переводе расширений на русский язык и записи обучающих видео для русскоязычных пользователей.</p>\n<p>Со временем это превратилось в некое хобби или даже образ жизни. Каждый день я читаю множество сообщений от пользователей на форумах поддержки и пытаюсь помочь решить их вопросы, проверяю и корректирую добавленные строки перевода, периодически записываю и выкладываю обучающие ролики.</p>\n<p>Общение с пользователями очень помогает. Ты одним из первых узнаешь о проблемах и способах их решения, можешь оперативно исправить какой-то неверный или некорректный перевод. Также, со временем накапливается список популярных вопросов, которые можно превращать в обучающие статьи и ролики. В свою очередь, создание статей и видео помогает структурировать знания и разобраться в деталях.</p>\n<p>На <a href=\"http://ru.wordpress.org/\">ru.wordpress.org</a> собралась отличная команда модераторов и редакторов переводов. Мы регулярно общаемся в Slack, некоторых я встречаю на WordCamp.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img2-min-1.jpg\"><img class=\"aligncenter size-large wp-image-1967\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img2-min-1-1024x768.jpg\" alt=\"Denis and Sergey\" width=\"960\" height=\"720\" /></a></p>\n<p>В ноябре 2016 я принимал участвовали в Глобальном дне перевода 2. Это был необычный опыт: трансляции со всего света, ощущение масштабности происходящего и азарта перевода. В тот раз мы заняли 6 место как самый активный язык и привлекли 7 новых переводчиков.</p>\n<h3>Митапы и WordCamp</h3>\n<p>В России не так много городов, где проводятся WordPress-митапы, а WordCamp проводится только в Москве. Но не смотря на всё это, данные мероприятия — отличная возможность побыть среди любителей WordPress, увидеть в живую людей, с которыми до этого общался только по сети, и просто почувствовать дух WordPress :).</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img3-min.jpg\"><img class=\"aligncenter size-full wp-image-1968\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img3-min.jpg\" alt=\"\" width=\"1000\" height=\"667\" /></a></p>\n<p>В этом году я планирую посетить WordCamp Moscow в третий раз. Я посещаю WordCamp как участник, но надеюсь когда-нибудь найду близкую мне тему и решусь подать заявку на выступление :). Я думаю, это будет интересно.</p>\n<h3>Заключение</h3>\n<p>На данный момент я — фул-тайм фрилансер. Это позволяет мне достаточно неплохо совмещать работу и деятельность в сообществе. Мне нравится <a href=\"https://www.youtube.com/channel/UCLkgL32ycnfl1hs0nJJD6Og\">делиться знаниями</a> и делать WordPress доступнее для русскоязычных пользователей</p>\n<p>На многих ресурсах WordPress преобладает английский язык, а некоторые, например, как <a href=\"https://developer.wordpress.org/\">developer.wordpress.org/</a> или &#8220;Handbook&#8221; вовсе недоступны для локализации. Надеюсь, в будущем это изменится и мы сможем расширить свою деятельность.</p>\n<p>В любом случае, WordPress остается тем местом, где можно найти себя и помочь сделать его чуточку лучше для себя и остальных участников.</p>\n<h2>участник</h2>\n<p><img class=\"alignleft size-medium wp-image-1961\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/photo-min-300x300.jpg\" alt=\"Denis Yanchevskiy\" width=\"300\" height=\"300\" /></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h3>Денис Янчевский</h3>\n<ul>\n<li><a href=\"http://denisco.pro/\">http://denisco.pro</a></li>\n<li><a href=\"http://twitter.com/dyanchevskiy\">@dyanchevskiy</a></li>\n<li><a href=\"http://wordpress.tv/speakers/denisco/\">WordPress.tv</a></li>\n<li><a href=\"http://profiles.wordpress.org/denisco/\">WordPress.org Profile</a></li>\n</ul>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: How I found myself in WordPress &#8211; Как я нашел себя в WordPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=How%20I%20found%20myself%20in%20WordPress%20%2D%20%D0%9A%D0%B0%D0%BA%20%D1%8F%20%D0%BD%D0%B0%D1%88%D0%B5%D0%BB%20%D1%81%D0%B5%D0%B1%D1%8F%20%D0%B2%20WordPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fi-found-myself-in-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: How I found myself in WordPress &#8211; Как я нашел себя в WordPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fi-found-myself-in-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fi-found-myself-in-wordpress%2F&title=How+I+found+myself+in+WordPress+%26%238211%3B+%D0%9A%D0%B0%D0%BA+%D1%8F+%D0%BD%D0%B0%D1%88%D0%B5%D0%BB+%D1%81%D0%B5%D0%B1%D1%8F+%D0%B2+WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: How I found myself in WordPress &#8211; Как я нашел себя в WordPress\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/i-found-myself-in-wordpress/&media=https://heropress.com/wp-content/uploads/2018/07/071217-150x150.jpg&description=How I found myself in WordPress - Как я нашел себя в WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: How I found myself in WordPress &#8211; Как я нашел себя в WordPress\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/i-found-myself-in-wordpress/\" title=\"How I found myself in WordPress &#8211; Как я нашел себя в WordPress\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/i-found-myself-in-wordpress/\">How I found myself in WordPress &#8211; Как я нашел себя в WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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, 12 Jul 2017 12:00: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:17:\"Denis Yanchevskiy\";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:86:\"WPTavern: Automattic Releases Net Neutrality WordPress Plugin Ahead of July 12 Protest\";s:7:\"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:29:\"https://wptavern.com/?p=72930\";s:7:\"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:\"https://wptavern.com/automattic-releases-net-neutrality-wordpress-plugin-ahead-of-july-12-protest\";s: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:2074:\"<p>Automattic <a href=\"https://en.blog.wordpress.com/2017/07/11/join-us-in-the-fight-for-net-neutrality/\" target=\"_blank\">announced</a> its intent to protest the FCC&#8217;s attack on net neutrality today by making a way for the millions of WordPress.com users to join in. The company&#8217;s logo has been listed on the <a href=\"https://www.battleforthenet.com/july12/\" target=\"_blank\">Save Net Neutrality</a> event website for some time but it had yet to announce how it would be participating. WordPress.com users are encouraged to send a message to the FCC and also enable the Fight for Net Neutrality Plugin via the dashboard Settings screen.</p>\n<p>The plugin is open source and <a href=\"https://wordpress.org/plugins/net-neutrality/\" target=\"_blank\">available to self-hosted users on WordPress.org</a>. Unlike the existing plugins that support the event on July 12 by presenting visitors with a banner to raise awareness, Automattic&#8217;s plugin simulates what life might be like in the &#8220;slow lane&#8221; if the FCC abandons the principle of net neutrality. It replaces a few of the posts on your site with a “Still Loading” spinner. This plugin doesn&#8217;t seem to offer a way to test it ahead of the event, but it essentially displays a message at the bottom of your website and slows down some of your posts.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/net-neutrality-plugin.png?ssl=1\"><img /></a></p>\n<p>The plugin will automatically be disabled after the event has concluded, so both WordPress.com and self-hosted users do not have to worry about turning it off and can remove it later. If you are uneasy about slowing down some of your posts as part of the protest and feel more comfortable displaying a modal or a widget, check out the <a href=\"https://wordpress.org/plugins/cat-signal/\" target=\"_blank\">Internet Defense League Cat Signal</a> or the <a href=\"https://wordpress.org/plugins/fftf-alerts/\" target=\"_blank\">Fight for the Future Alerts</a> plugins as alternatives.</p>\n<div id=\"epoch-width-sniffer\"></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, 12 Jul 2017 05:07: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: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:82:\"WPTavern: VersionPress 4.0 Beta Adds User-Editable Location for Plugin Definitions\";s:7:\"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:29:\"https://wptavern.com/?p=72939\";s:7:\"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:93:\"https://wptavern.com/versionpress-4-0-beta-adds-user-editable-location-for-plugin-definitions\";s: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:2944:\"<p><a href=\"https://github.com/versionpress/versionpress/releases/tag/4.0-beta\">VersionPress 4.0 beta</a> is available for testing. It includes a number of improvements, most notably, the ability to load plugin definitions from a user-defined location within the wp-content directory.</p>\n<p><a href=\"https://github.com/versionpress/versionpress/blob/aba96d3f63bc5d84d49019bffa47252f87734288/docs/Plugin-Support.md\">Plugin definitions</a> are files used to understand data, actions, shortcodes, and other things plugins do in order to automatically provide version control for them.</p>\n<p>According to Borek Bernard, co-founder of VersionPress:</p>\n<blockquote><p>If you create a folder WP_CONTENT_DIR/.versionpress/plugins/woocommerce and put <a href=\"https://github.com/versionpress/versionpress/blob/aba96d3f63bc5d84d49019bffa47252f87734288/docs/Plugin-Support.md\">definition files</a> like schema.yml or actions.yml there, VersionPress will use and actually prefer it over the bundled definitions if they exist.</p></blockquote>\n<img />User Defined Location of Plugin Definition File\n<p>Support for WooCommerce and Jetpack are included in 4.0 Beta 1. VersionPress will automatically detect the definition file as long as each plugin has a .versionpress folder in it.</p>\n<p>With the release of 4.0 Beta, Bernard says a <a href=\"https://github.com/versionpress/versionpress/issues/1243\">repository</a> containing plugin definitions is next on the list and is encouraging plugin authors to contribute to the project.</p>\n<p>&#8220;The final step is to have an online repository of the definitions,&#8221; Bernard said. &#8220;It will be open to anyone to contribute, not just plugin authors, and used by VersionPress transparently.&#8221;</p>\n<p>For insight on how to create definitions, developers can look at <a href=\"https://github.com/versionpress/versionpress/tree/aba96d3f63bc5d84d49019bffa47252f87734288/plugins/versionpress/.versionpress\">WordPress core</a> and <a href=\"https://github.com/pavelevap/versionpress-for-woocommerce\">WooCommerce</a> for real-world examples.</p>\n<p>Other major changes include full support for WordPress 4.7 and 4.8, adoption of <a href=\"https://github.com/versionpress/versionpress/projects/2\">GitHub projects</a> to help manage the development process, and <a href=\"https://github.com/versionpress/versionpress/issues?q=project%3Aversionpress%2Fversionpress%2F2+sort%3Acreated-desc+label%3Abug\">a number of bugs fixed</a>.</p>\n<p>Developers and users can download <a href=\"https://github.com/versionpress/versionpress/releases/tag/4.0-beta\">4.0 Beta</a> from GitHub. Users are encouraged to test the plugin in a staging environment as it&#8217;s not ready to be used on live sites. If you encounter an error, you can report it by creating a new <a href=\"https://github.com/versionpress/versionpress/issues\">Issue request</a> on the project&#8217;s GitHub page.</p>\n<div id=\"epoch-width-sniffer\"></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, 12 Jul 2017 04:26:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:31:\"WPTavern: 10up Acquires Lift UX\";s:7:\"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:29:\"https://wptavern.com/?p=72917\";s:7:\"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:\"https://wptavern.com/10up-acquires-lift-ux\";s: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:4294:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/10up-logo.png?ssl=1\"><img /></a></p>\n<p>10up, a leading WordPress design and development agency, has <a href=\"https://10up.com/blog/2017/10up-acquires-lift-ux/\" target=\"_blank\">acquired Lift UX</a>, a smaller user experience design-driven agency that will bolster the company&#8217;s existing Experience design team. Lift founders Chris Wallace and Brad Miller will join 10up&#8217;s 120+ person distributed team, along with Lift&#8217;s director of technology, Christian Chung, and front-end developer Anthony Garand.</p>\n<p>10up is acquiring the Lift UX brand, hiring four team members, and will also take possession of <a href=\"https://remotejobs.com/\" target=\"_blank\">RemoteJobs.com</a>, which will continue operating independently as a remote job board. The Lift UX brand will be dissolved and clients and projects are in the process of transitioning over to 10up.</p>\n<p>&#8220;We were always looking for agencies to partner with and when I reached out to 10up I was looking to build a relationship to help work on UX design projects,&#8221; Miller said. &#8220;10up has a strong engineering background and I felt like having them as a partner would be huge for our agency. Jake and I quickly realized that Lift UX and 10up had so many similar processes that it sounded like our two companies were the same but just different in size.&#8221;</p>\n<p>With similar expertise serving large clients in the WordPress space, the two companies were bound to end up competing on different projects, which happened during the course of their conversations spanning a year leading up to the deal. Miller said 10up founder Jake Goldman proposed a merger/acquisition type of approach.</p>\n<p>&#8220;I ended up speaking to them off and on for the next couple of weeks and things got pretty serious when we were competing for some projects,&#8221; Miller said. &#8220;I was of course flattered by the offer. Jake and John were awesome. We enjoyed our conversations and decided to do an onsite to discuss things in more detail. They made an offer after our onsite and Chris and I decided to accept it.&#8221;</p>\n<p>In 10up&#8217;s announcement, Goldman said it &#8220;takes a special kind of chemistry and alignment for a deal like this to work.&#8221; The company&#8217;s acquisition of Lift is one of the biggest design-driven acquisitions in the WordPress ecosystem in awhile.</p>\n<p>&#8220;Adding more experience design expertise to our company DNA enhances our empathy and ability to collaborate with design partners in an era of interactive, responsive design where divisions between &#8216;design&#8217; and &#8216;engineering&#8217; have eroded,&#8221; Goldman said.</p>\n<p>Miller, who has worked with Wallace to build Lift into a top-notch design and user experience agency, said that securing design talent is a challenge in the industry. 10up adding a fellow competitor to its team is a stretegic move when design talent is in short supply.</p>\n<p>&#8220;I think it&#8217;s certainly hard to find quality talent that&#8217;s interested in a full time position,&#8221; Miller said. &#8220;There are some amazing designers out there but a lot of them are contractors/freelancers. 10up wanted to find a team that had a big focus on quality design and UX. It didn&#8217;t hurt that we were big on WordPress either.&#8221;</p>\n<p>Miller and Wallace founded Lift UX in 2009 and will be closing out a chapter of their entrepreneurial lives as the brand dissolves into 10up.</p>\n<p>&#8220;Basically we&#8217;ll fade into the 10up brand bringing along our team, portfolio, accolades, and ultimately our personality,&#8221; Miller said.</p>\n<p>Wallace said closing out this chapter is &#8220;definitely bittersweet,&#8221; but the team is excited to transition into 10up.</p>\n<p>&#8220;As a 6-7 person agency, we were all constantly being pulled in a million different directions,&#8221; Wallace said. &#8220;Joining 10up allows us to focus on our individual areas of specialization and excel in each. I love many aspects of entrepreneurship and small agency ownership but the idea of focusing on the success of the experience design team at 10up is something I am looking forward to.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></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, 11 Jul 2017 22:02: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:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Donncha: Thank you Translators!\";s:7:\"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:\"https://odd.blog/?p=89500320\";s:7:\"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:\"https://odd.blog/2017/07/11/thank-you-translators/\";s: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:1384:\"<p>Well, well. <a href=\"https://translate.wordpress.org/projects/wp-plugins/wp-super-cache\">WP Super Cache translations</a> are coming along well. 100% of strings in the development version are translated into Canadian English and Romanian! (That might change over the next few days as I have a couple of UI changes in mind, sorry!)</p>\n<p>Other languages like Persian, Japanese, Spanish, Russian and Italian are roaring along and sometimes only need a handful of words or sentences translated to hit that magic 100% too. The next version of the plugin will grab translations from WordPress.org if they&#8217;re available which is awesome for users around the world. We&#8217;re still shipping translation files but I think the release after that may ship without and rely entirely on the up-to-date online translations.</p>\n<p>So, thank you so much to the translators. Code is nigh on useless if the user and developer don&#8217;t speak the same language and the interface is incomprehensible. WP Super Cache has lots of technical language which must be a pain to translate. Your work is invaluable!</p>\n<p>Mulțumesc! متشکرم! ありがとうございました！¡Gracias! Спасибо! Grazie! Hvala ti! 谢谢！Vielen Dank!</p>\n\n<p><strong>Related Posts</strong><ul><li> No related posts</li></ul></p>\n<p><a href=\"https://odd.blog/\" rel=\"external nofollow\">Source</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, 11 Jul 2017 10:44:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";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:90:\"WPTavern: Interview with WordCamp US 2017 Organizers Dustin Meza and Laura Byrne-Cristiano\";s:7:\"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:58:\"https://wptavern.com?p=72903&preview=true&preview_id=72903\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/interview-with-wordcamp-us-2017-organizers-dustin-meza-and-laura-byrne-cristiano\";s: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:2252:\"<p>While at WordCamp Europe I had the opportunity to interview <a href=\"https://twitter.com/dustinmeza\">Dustin Meza</a>, lead organizer of <a href=\"https://2017.us.wordcamp.org/\">WordCamp US 2017</a>, and <a href=\"https://twitter.com/newyorkerlaura\">Laura Byrne-Cristiano</a>, who is part of the marketing team for the event. The two are members of a 20-person team of organizers who will welcome an estimated 2,500 attendees to Nashville in December.</p>\n<p>Although the maximum capacity of the <a href=\"http://www.nashvillemusiccitycenter.com/\">Music City Center</a> venue is much higher than what is required by WordCamp US, the organizers want to make judicious use of the event&#x27;s resources to put on the best possible event for those who make the effort to attend.</p>\n<p>\"At the end of the day, it&#x27;s going to be the right size for the event,\" Byrne-Cristiano said. \"You could say, &#x27;Hey, we want 10,000 people, but that&#x27;s not the right size for the event. The right size is probably somewhere between 2,000 and 2,500. The venue can do more than that, but I don&#x27;t know that that&#x27;s the main goal. Bigger isn&#x27;t always better. Your main goal is the best event and quality for the people who are already there.\"</p>\n<p>Meza said he considers WordCamp US to be the premier event for North America and that it is there to represent the communities located in this area. He couldn&#x27;t share the full details of the unique things they are working on, but organizers plan to display and exhibit more information about the the various WordPress communities throughout North America.</p>\n<p>In the interview below, Meza and Byrne-Cristiano share a little bit about why they believe Nashville was selected and how welcoming the city is for people from different cultures. </p>\n<p>\"No matter where in the world you are coming from, there&#x27;s a place for you at WordCamp US,\" Byrne-Cristiano said.</p>\n<p>\"This is, by far, the best technology community I have ever been apart of, seeing how much everyone involved embraces new people &#8211; to me that is the big reason why I got involved,\" Meza said. \"I want to give this community the best event that we possibly can.\"</p>\n<p></p>\n<div id=\"epoch-width-sniffer\"></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, 11 Jul 2017 02:16:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WPTavern: WPCampus 2017 Will Be Streamed Live for Free\";s:7:\"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:29:\"https://wptavern.com/?p=72896\";s:7:\"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://wptavern.com/wpcampus-2017-will-be-streamed-live-for-free\";s: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:1020:\"<p><a href=\"https://2017.wpcampus.org/\">WPCampus</a>, a conference focused on using WordPress in higher education, takes place this Friday and Saturday in Buffalo, NY. If you&#8217;re unable to attend the event, WPCampus will be <a href=\"https://2017.wpcampus.org/watch/\">live streaming the sessions</a> for free.</p>\n<p>Visit the <a href=\"https://2017.wpcampus.org/watch/\">streaming page</a> on July 14th and 15th where viewers can choose between <a href=\"https://2017.wpcampus.org/schedule/\">three tracks of sessions</a> to watch. Viewers can also hang out in the <a href=\"https://wordcampus.slack.com/messages/C65Q1LHB9/\">#discuss-wpc17</a> Slack <a href=\"https://wpcampus.org/get-involved/\">channel</a> to discuss sessions with other people.</p>\n<p>Organizers are encouraging viewers to have watch parties at WordPress meetups and campuses. Sessions will be recorded and made available online at the end of the event. The stream starts on Friday, July 14th at 9 AM Eastern.</p>\n<div id=\"epoch-width-sniffer\"></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, 10 Jul 2017 21:49:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:64:\"WPTavern: Episodes 271-280 of WordPress Weekly are Now Available\";s:7:\"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:29:\"https://wptavern.com/?p=72884\";s:7:\"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:\"https://wptavern.com/episodes-271-280-of-wordpress-weekly-are-now-available\";s: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:1011:\"<p>In the past two weeks, listeners have reported that recent episodes of <a href=\"https://wptavern.com/wordpress-weekly\">WordPress Weekly</a> are not available for download through Apple&#8217;s Podcasting app, Stitcher, and other applications.</p>\n<img />Podcast Download Error\n<p>I use <a href=\"http://vid2mp3.com/\">Vid2MP3</a> to convert YouTube videos into MP3 files. Starting with episode 271, there was an error in the conversion process. It was difficult to diagnose since the MP3 played fine in some browsers and applications but not in others.</p>\n<p>I have reconverted the affected episodes using a different service and uploaded the new files to the site. I confirmed that the episodes are accessible in Apple&#8217;s Podcasting application. If you still encounter a problem downloading these episodes, please leave a note in the comments along with which podcasting app you&#8217;re using. Thanks to all who reported the error and for listening to the show.</p>\n<div id=\"epoch-width-sniffer\"></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, 10 Jul 2017 20:19:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:131:\"WPTavern: Automattic Joins Amazon, GitHub, Mozilla, reddit, and Twitter in July 12 Protest Against FCC’s Attack on Net Neutrality\";s:7:\"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:29:\"https://wptavern.com/?p=72799\";s:7:\"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:135:\"https://wptavern.com/automattic-joins-amazon-github-mozilla-reddit-and-twitter-in-july-12-protest-against-fccs-attack-on-net-neutrality\";s: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:3713:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/day-of-action-banner.png?ssl=1\"><img /></a></p>\n<p>Major internet websites, companies, and organizations are banding together on Wednesday, July 12, to <a href=\"https://www.battleforthenet.com/july12/\" target=\"_blank\">protest the FCC&#8217;s attack on net neutrality</a>. These include Amazon, GitHub, Kickstarter, Vimeo, reddit, Mozilla, Twitter, Etsy, Spotify, Netflix, and many others. Automattic is joining these tech companies in the protest, as it has several times in the past, including the <a href=\"https://en.blog.wordpress.com/2014/09/09/fight-for-net-neutrality/\" target=\"_blank\">Internet Slowdown event in September 2014</a>. The company also <a href=\"https://transparency.automattic.com/2015/09/21/defending-net-neutrality/\" target=\"_blank\">reaffirmed its commitment to net neutrality in 2015</a> by filing an amicus brief with the Court of Appeals for the DC Circuit in the case of United States Telecom Assn. v. FCC, joined by Medium, Reddit, Squarespace, Twitter, and Yelp.</p>\n<p>Net neutrality is the principle that ensures people can communicate freely online by prohibiting Internet Service Providers (ISPs) and government entities from favoring, blocking, or throttling certain websites, or charging fees for premium content delivery. It guarantees individuals have free to access all content and applications, and forbids ISPs from discriminating against or prioritizing certain users, equipment, or types of content. Vimeo created a handy video to illustrate the importance of defending net neutrality:</p>\n<div class=\"embed-vimeo\"></div>\n<p>Net neutrality is once again under attack as the FCC is planning to remove the Title II (<a href=\"https://en.wikipedia.org/wiki/Common_carrier#Telecommunications\" target=\"_blank\">common carrier</a>) protections established during the Obama administration.</p>\n<h3>How to Join the Protest</h3>\n<p>Self-hosted WordPress site owners who want to participate in the Internet-Wide Day of Action to Save Net Neutrality on July 12 can do so by installing the <a href=\"https://wordpress.org/plugins/cat-signal/\" target=\"_blank\">Internet Defense League Cat Signal</a> plugin or the <a href=\"https://wordpress.org/plugins/fftf-alerts/\" target=\"_blank\">Fight for the Future Alerts</a> plugin. Both support the upcoming Save Net Neutrality event and are based on the <a href=\"https://github.com/fightforthefuture/battleforthenet-widget\" target=\"_blank\">official Fight for the Future widget</a> for the campaign.</p>\n<p>The widget will not display until July 12, so you can add a plugin ahead of time. If you want to test it to see what it will look like on the day of action, you can append #ALWAYS_SHOW_BFTN_WIDGET to your site URL after installing one of the plugins. See an example here: <a href=\"https://wptavern.com/#ALWAYS_SHOW_BFTN_WIDGET\" target=\"_blank\">https://wptavern.com/#ALWAYS_SHOW_BFTN_WIDGET</a></p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/battleforthenet-modal.png?ssl=1\"><img /></a></p>\n<p>The alert urges visitors to contact Congress and the FCC through the provided form. It can be displayed as a banner at the top of the page or as a modal (see example above).</p>\n<p>Automattic may also be planning a way for WordPress.com users to opt-in to participate. We&#8217;ll update the post if that information becomes available.</p>\n<p><em>Update:</em> Automattic has since created a <a href=\"https://wptavern.com/automattic-releases-net-neutrality-wordpress-plugin-ahead-of-july-12-protest\" target=\"_blank\">Net Neutrality plugin</a> for WordPress.com and self-hosted users who want to join the protest.</p>\n<div id=\"epoch-width-sniffer\"></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, 10 Jul 2017 18:12:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:114:\"WPTavern: Let’s Encrypt Passes 100 Million Certificates Issued, Will Offer Wildcard Certificates in January 2018\";s:7:\"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:29:\"https://wptavern.com/?p=72805\";s:7:\"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:121:\"https://wptavern.com/lets-encrypt-passes-100-million-certificates-issued-will-offer-wildcard-certificates-in-january-2018\";s: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:2660:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/lock.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/550FJBDFSW\">Chris Anderson</a>\n<p>Let&#8217;s Encrypt, the free and open certificate authority that launched in 2016, has <a href=\"https://letsencrypt.org/2017/06/28/hundred-million-certs.html\" target=\"_blank\">issued more than 100 million certificates</a> as of June 2017 and is currently securing 47 million domains. Earlier this year, the web passed a major milestone of getting <a href=\"https://wptavern.com/more-than-50-of-web-traffic-is-now-encrypted\" target=\"_blank\">more than 50% of traffic encrypted</a>. Let&#8217;s Encrypt has been a major contributor to that percentage growing to nearly 58%.</p>\n<p>&#8220;When Let’s Encrypt’s service first became available, less than 40% of page loads on the Web used HTTPS,&#8221; ISRG Executive Director Josh Aas said. &#8220;It took the Web 20 years to get to that point. In the 19 months since we launched, encrypted page loads have gone up by 18%, to nearly 58%. That’s an incredible rate of change for the Web.&#8221;</p>\n<p>Aas also announced that <a href=\"https://letsencrypt.org/2017/07/06/wildcard-certificates-coming-jan-2018.html\" target=\"_blank\">wildcard certificates are coming to Let&#8217;s Encrypt in 2018</a>. Wildcard certificates allow a site to secure an unlimited number of subdomains with the same certificate.</p>\n<p>Currently, the process to get Let&#8217;s Encrypt working on a WordPress multisite installation is much more complicated than adding a certificate for a single domain. The <a href=\"https://wordpress.org/plugins/wp-encrypt/\" target=\"_blank\">WP Encrypt</a> plugin claims multisite and multi-network compatibility but super admins have often run into failure on networks with higher numbers of sites. Wildcard support for Let&#8217;s Encrypt will provide a better way to secure multisite networks.</p>\n<p>Let&#8217;s Encrypt will offer the wildcard certificates via the new <a href=\"https://letsencrypt.org/2017/06/14/acme-v2-api.html\" target=\"_blank\">ACME v2 API endpoint</a> and will start by supporting base domain validation via DNS with the possibility of adding other validation options in the future. ACME is the protocol that Let&#8217;s Encrypt developed to allow subscribers to acquire and manage certificates. Those using the v1 endpoint are encouraged to move to v2 as soon as it&#8217;s available in January 2018. The v2 protocol was developed to be an IETF (Internet Engineering Task Force) standard so that ACME can work with more certificate authorities in the future.</p>\n<div id=\"epoch-width-sniffer\"></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, 07 Jul 2017 18:32:20 +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: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:98:\"WPTavern: WangGuard Plugin Author Shuts Down Splog Hunting Service Due to Trauma and Death Threats\";s:7:\"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:29:\"https://wptavern.com/?p=72733\";s:7:\"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:109:\"https://wptavern.com/wangguard-plugin-author-shuts-down-splog-hunting-service-due-to-trauma-and-death-threats\";s: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:6853:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/10/wangguard.png?ssl=1\"><img /></a></p>\n<p>After seven years of developing and supporting the WangGuard/SplogHunter service, José Conti has <a href=\"https://www.joseconti.com/2017/07/03/la-verdadera-razon-del-cierre-wangguard/\" target=\"_blank\">shut down the server permanently</a> due to the stress and trauma associated with maintaining it. Conti is a WordPress plugin developer and consultant, and a member of the WordPress España translation team. His <a href=\"https://wordpress.org/plugins/wangguard/\" target=\"_blank\">WangGuard plugin</a> identifies and blocks sploggers, unwanted users, and untrusted users on WordPress, Multisite, BuddyPress, bbPress, and WooCommerce sites. It is currently active on more than 10,000 sites.</p>\n<p>Speculation about why the service shut down was running rampant after Conti had <a href=\"https://wptavern.com/wangguard-plugin-launches-indiegogo-campaign-to-fund-development-and-support\" target=\"_blank\">collected donations via an Indiegogo campaign in October 2016</a> to fund support and server costs. Since that time SiteGround stepped in to sponsor WangGuard, eliminating the server costs. The only costs that remained were Conti&#8217;s time and effort that he put into supporting the plugin.</p>\n<p>&#8220;My purpose with WangGuard was never money,&#8221; Conti said in his post explaining the reason for the shut-down. &#8220;I could have made WangGuard a paid plugin at anytime, and actually had a plan for that for years. But I didn’t do it because there is something inside me that would never let that happen. It was never, I repeat, never my plan to get rich with WangGuard, and I assure you that I could have done it easily: simply charging each of my users 24€/year, would have meant an income of more than 2 million euros per year. I just had to distribute a version of WangGuard I had collecting dust, with a checkbox on WangGuard’s server administration options but I never got it done. No matter the other reasons, which only people very close to me know: I simply didn’t want to, nor did I want to be a millionaire.&#8221;</p>\n<h3>Mafia Death Threats and Trauma from Exposure to the Dark Web: The High Cost of WangGuard&#8217;s 99.9% Accurate Detection of Splogs</h3>\n<p>WangGuard has long been known for its nearly perfect detection of registration spam. Not only did it completely block unwanted users, it also removed them from the database. The plugin was unrivaled in both accuracy and price &#8211; all users got everything the service offered for free. In order for WangGuard to provide its 99.90% accuracy, Conti bolstered the algorithm with manual curation and reviews.</p>\n<p>&#8220;WangGuard worked in two different ways: as an algorithm that I had been refining for seven years, and which was getting better as the sploggers evolved, so that it was always one step ahead of them, and also as human curation, in which I reviewed many factors, among them sites of sploggers to see if their content could improve the algorithm and make sure that it worked correctly both when it was blocking or not blocking a site,&#8221; Conti said. &#8220;The great secret of WangGuard was this second part. Without it WangGuard would not ever have become what it was.&#8221;</p>\n<p>Because of how effective WangGuard was at stopping unwanted users, Conti said for four years he received &#8220;almost daily death threats from mafias for making them lose millions of dollars.&#8221;</p>\n<p>Through the process of manually curating splogger sites, Conti caught a glimpse of the some of the darkest places on the web, which he said had a damaging psychological impact on him.</p>\n<p>&#8220;For seven years, I have visited places where I saw pederasty, pictures, and videos of murders (by razor blades, by gutting live people, by beheadings, dismemberments, to name a few), real videos of rape of all kinds (children, women, boys), photos of accidents in which people were totally disfigured, bizarre actions that I did not even know existed, and a very long &#8216;and so on,&#8217; which I do not want to expand on,&#8221; Conti said.</p>\n<p>The effects of viewing these types of websites every day took their toll and Conti decided to close the splog hunter service.</p>\n<p>&#8220;Finally, a few months ago, I broke down,&#8221; Conti said. &#8220;I disappeared from everywhere and fell into a depression. The seven years of working at WangGuard finally took a toll on me. I had nightmares because of all the macabre deaths I had seen, an obsession with protecting my children from pederasty, OCD, depression, and many other symptoms. It took me about 6 months to recover (and honestly, I may be deceiving myself, since I do not think I completely recovered my life).&#8221;</p>\n<p>I asked Conti if clicking through to the websites was necessary for maintaining the service. He explained that while WangGuard blocked emails, domains, IPs, and ISPs, without his manual curation of visiting the domains and clicking the links, users could get a lot of &#8220;sleepers&#8221; &#8211; registered and active accounts that remain silent until one day with a 0day vulnerability or a bug fix, they attack thousands of websites. The sleepers also wait to perform actions like create millions of sites on thousands of WordPress multisite installations in order to create a lot of bad content/links.</p>\n<p>&#8220;Visiting many domains, I was able to minimize this problem,&#8221; Conti said. &#8220;The way I worked not only fixed the current spam / splog problem, but the wizard and database also fixed any future problems with sleepers.&#8221;</p>\n<p>Another reason he visited the domains was to figure out what he needed to block, whether it was an email or a domain. The domain could be a spam domain or possibly a free email service.</p>\n<p>&#8220;By visiting a website, I could detect whether it was a phishing website or a site camouflaged as an email service in order to try to cheat WangGuard,&#8221; he said. &#8220;I saw a lot of &#8216;techniques&#8217; for trying to cheat WangGuard at Black Hat specialized forums. I had been subscribed to many spam/sploggers forums for investigation. Every time that a user described a real technique for cheating WangGuard, it was fixed immediately.&#8221;</p>\n<p>If you&#8217;re still using the WangGuard plugin, it may continue to work but not nearly as well as in the past. Conti said that some parts of the code work without the API, but the most important parts require the WangGuard/SplogHunter server. The plugin is open source, so anyone can fork it. <a href=\"https://wordpress.org/support/topic/why-wangguard-was-closed/\" target=\"_blank\">An English translation of his original post</a> is available on the WordPress.org plugin forums.</p>\n<div id=\"epoch-width-sniffer\"></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, 07 Jul 2017 00:36: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:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: WordSesh Asia Now in Planning for 2018, WordCamp Asia Targeted for 2019\";s:7:\"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:29:\"https://wptavern.com/?p=72742\";s:7:\"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:\"https://wptavern.com/wordsesh-asia-now-in-planning-for-2018-wordcamp-asia-targeted-for-2019\";s: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:4161:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/wordcamp-asia-meeting-group.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://sakinshrestha.com/events/wordcamp-asia/\">Sakin Shrestha</a>\n<p>Yesterday Sakin Shrestha <a href=\"https://sakinshrestha.com/events/wordcamp-asia/\" target=\"_blank\">announced</a> that WordCamp Asia is now in the preliminary planning stages. Shrestha is a key reviewer on the Theme Review Team, translates WordPress to Nepali, and organizes meetups and WordCamps in Nepal. He and other members of the WordPress community in Asia, including representatives from India, Japan, Indonesia, Thailand, Sri Lanka, Singapore, and Nepal, had the opportunity to meet at WordCamp Europe.</p>\n<p>&#8220;We have been talking about WordCamp Asia informally when some of us attended WordCamp US for the first time,&#8221; Shrestha said. &#8220;That’s was in 2015, where I met Naoko Takano. She is the one with the main idea as the Japanese WordPress community was already doing well. Then we started meeting more people from Asia at WordCamp Europe 2016 and had an informal meeting there.&#8221;</p>\n<p>After this meeting, Rahul Bansal created a Facebook group for <a href=\"https://www.facebook.com/groups/wpasia/\" target=\"_blank\">WordPress Community Organizers in Asia</a> to support each other in a more coordinated effort. The first formal meeting happened at WordCamp Europe 2017 where the team decided that trying for WordCamp Asia in 2018 would be too soon. Instead, they are planning to host a WordSesh Asia event in 2018 to work on their coordination and teamwork. The team is working towards hosting WordCamp Asia in 2019.</p>\n<h3>Organizers Consider Bangkok as a Possible Location for WordCamp Asia in 2019</h3>\n<p>Shrestha&#8217;s <a href=\"https://sakinshrestha.com/events/wordcamp-asia/\" target=\"_blank\">post</a> identifies several challenges that are unique to hosting a large scale WordCamp in Asia, including the need for visas even for travel within Asia, political instability, and numerous currencies and languages in use.</p>\n<p>&#8220;WordCamp Asia is really important for the WordPress community in Asia,&#8221; Shrestha said. &#8220;I am fortunate enough to attend WCUS and WCEU, which are some of the biggest WordCamps where we get to meet lot of WordPressers, share and exchange ideas, contribute to WordPress, start a new business, and think outside of the box. But for most of Asians, it’s really difficult to go that far and also it’s expensive to attain those. So, we are limited to WordCamps in our own country and neighboring ones. That is why we are thinking about WordCamp Asia in Bangkok, which will be really inclusive as it’s in the center part of Asia and it’s cheaper to go there and less time consuming for all.&#8221;</p>\n<p>Shrestha also feels strongly about providing travel assistance for those with financial hardships, as the most expensive aspect of attending a WordCamp is usually the travel and accommodation.</p>\n<p>&#8220;WordCamps are not just for the rich,&#8221; Shrestha said. &#8220;The primary motive of WordCamps is to grow the local community. So, WordCamp Asia’s mission will be to influence the community of WordPress Asia and help it to grow. That is why, instead of planning for a grand and pompous event, we need to make sure it is affordable and reachable to people of all financial backgrounds.&#8221;</p>\n<p>Shrestha said he has seen major changes in working with the WordPress community in Nepal from 2012 &#8211; 2017, which he attributes to having a stronger local presence with the WordCamp. India has also benefited from hosting WordCamps and has approximately nine happening in various cities. They are working towards hosting a WordCamp India in the future. There are also emerging communities in Singapore, Thailand, Indonesia, Sri Lanka, Cambodia, and Vietnam.</p>\n<p>&#8220;It’s time for pursuing WordCamp Asia,&#8221; Shrestha said. &#8220;We really have good talents here in Asia but we lack exposure. WordCamp Asia can create buzz and make more people aware, inspire, and provide opportunity.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></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, 06 Jul 2017 18:10: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: Jesse Petersen, Founder of Genesis The.me Passes Away\";s:7:\"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:29:\"https://wptavern.com/?p=72772\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/jesse-petersen-founder-of-genesis-the-me-passes-away\";s: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:8085:\"<img />Petersen Family\n<p><a href=\"https://twitter.com/jpetersen\">Jesse Petersen</a>, founder of <a href=\"https://www.genesisthe.me/\">Genesis The.me</a> and <a href=\"https://www.petersenmediagroup.com/\">Petersen Media Group</a>, has <a href=\"https://www.newlungsfor.me/2017/jesse-petersen-has-passed-away/\">passed away</a> at the age of 38. Petersen had been battling <a href=\"http://www.cffatboy.com/what-is-cystic-fibrosis/\">Cystic Fibrosis</a> for the past several years and suffered a massive lung bleed earlier today. He passed out before paramedics could reach him and could not be revived at the emergency room.</p>\n<p>Petersen was on a double-lung transplant list with a <a href=\"https://en.wikipedia.org/wiki/Lung_allocation_score\">lung allocation score</a> of 38.859. The LAS is a score used to prioritize waiting list candidates based on a combination of wait list urgency and post-transplant survival. Last month, Petersen received the phone call he had been waiting for.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I got the call! Getting ready to leave to go to the hospital for testing and waiting.<a href=\"https://twitter.com/hashtag/NewLungsForJesse?src=hash\">#NewLungsForJesse</a> <a href=\"https://t.co/hCCJik05MY\">pic.twitter.com/hCCJik05MY</a></p>\n<p>&mdash; Jesse Ⓦ Petersen (@jpetersen) <a href=\"https://twitter.com/jpetersen/status/873074034065391619\">June 9, 2017</a></p></blockquote>\n<p></p>\n<p>Unfortunately, the lungs were determined not to be in a suitable condition for transplant.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">No go. He didn\'t like the look of the lungs. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f629.png\" alt=\"?\" class=\"wp-smiley\" /> No new lungs for Jesse today. Maybe tonight the phone will ring again.</p>\n<p>&mdash; Jesse Ⓦ Petersen (@jpetersen) <a href=\"https://twitter.com/jpetersen/status/873302087668576256\">June 9, 2017</a></p></blockquote>\n<p></p>\n<p>He <a href=\"https://www.newlungsfor.me/2017/how-i-felt-on-dry-run-day-and-after/\">shared his experience</a> in a raw, emotional post that describes the highs and lows he felt that day. &#8220;While the day was an emotional roller coaster, with the highs being WAY up there, the lows were surprisingly mild,&#8221; Petersen said. &#8220;They just weren’t the right lungs, and this protected me from years of issues, so it’s all good. The call for the perfect lungs for me will come in God’s timing. I am content to wait.&#8221;</p>\n<p>On July 2nd, a patient with a higher LAS score than Petersen&#8217;s was taken into surgery to receive a double-lung transplant. This made Petersen the highest priority pending a match was found but a match wasn&#8217;t found in time.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">She was taken into surgery at noon, Tampa time. Surgery is 6-12 hours. I\'m very happy for her because her need was more than twice mine.</p>\n<p>&mdash; Jesse Ⓦ Petersen (@jpetersen) <a href=\"https://twitter.com/jpetersen/status/881549935405129728\">July 2, 2017</a></p></blockquote>\n<p></p>\n<p>I did not have the opportunity to meet him in person. From those who knew him personally, Petersen was a great husband, father, and a caring individual who despite his medical situation, would help out the best way he could. There are two stories that highlight the kind of person he was. The first is <a href=\"https://twitter.com/jpetersen/status/881974173085691904\">a Twitter thread</a> he published two days ago.</p>\n<blockquote><p>When you meet a 5 year-old who needs a heart and double-lung transplant but has been turned down everywhere, your situation doesn’t seem so bad. That family doesn’t care about politics, social class, keeping up with the Joneses, or whether their clothes match. They are enjoying life.</p>\n<p>Because when it comes down to it, all we really need is to know our worth and love everyone else because they have equal worth. That doesn’t mean you have to agree with everyone, but you don’t have to seek out opposition or turmoil. Random acts of kindness rock.</p>\n<p>Can you look over your life and say you’d be leaving those connected to you better off having known you? If not, start today.</p></blockquote>\n<p>The second is <a href=\"https://www.facebook.com/jesse.dubyah/posts/238778876639367\">from his Facebook account</a> about an encounter he had with a mother pushing her small boy in a wheelchair with a surgical mask on.</p>\n<blockquote><p>I finally got out of the house to go do a God &amp; Country service followed by fireworks. While waiting to go outside, a mom I&#8217;d seen pushing a small boy in a wheelchair with a surgical mask and oxygen on him came over to me.</p>\n<p>&#8216;I just wanted to say how cool I think your double tank cart is. I&#8217;m going to call my supplier tomorrow to get one for our wheelchair.&#8217;</p>\n<p>We started talking (most unlike me) and she said her son needed a heart and a double lung transplant&#8230; but they&#8217;ve been turned down everywhere, starting with the very forgiving Pittsburgh center.</p>\n<p>&#8216;I&#8217;m so sorry.&#8217;</p>\n<p>[nodded her head with a pained look] &#8216;We&#8217;re just making the most of our time now.&#8217;</p>\n<p>My heart broke. I&#8217;ve already lived 7 of his lifetimes. I&#8217;ve played sports, graduated from college, stood on the equator, married my best friend, and have two healthy boys.</p>\n<p>So kick me the next time I complain about my wait, OK?</p></blockquote>\n<p>Members of the WordPress community are using social media to share memories, grieve, and pass along condolences to his family.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I first met <a href=\"https://twitter.com/jpetersen\">@jpetersen</a> at <a href=\"https://twitter.com/hashtag/wcorl?src=hash\">#wcorl</a> and was honored to have him at <a href=\"https://twitter.com/hashtag/wcmia?src=hash\">#wcmia</a> 2015. Hope it’s ok to share his “speaker card” from <a href=\"https://twitter.com/wordcampmiami\">@wordcampmiami</a>. <a href=\"https://t.co/R7czM5AV1h\">pic.twitter.com/R7czM5AV1h</a></p>\n<p>&mdash; David Bisset (@dimensionmedia) <a href=\"https://twitter.com/dimensionmedia/status/882711570899492864\">July 5, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">RIP <a href=\"https://twitter.com/jpetersen\">@jpetersen</a>, you were a great friend, and co-host. Gonna miss the great convos we had.</p>\n<p>&mdash; The WP Crowd (@thewpcrowd) <a href=\"https://twitter.com/thewpcrowd/status/882708241532059648\">July 5, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Met <a href=\"https://twitter.com/jpetersen\">@jpetersen</a> on multiple occasions. Family man and proud dad. Always respected the hell outta that. See you on the flip side, buddy.</p>\n<p>&mdash; Jared Atchison (@jaredatch) <a href=\"https://twitter.com/jaredatch/status/882714968990371840\">July 5, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Terrible news, <a href=\"https://twitter.com/jpetersen\">@jpetersen</a> will be missed. CF takes too many, too soon. Rest in peace, buddy.</p>\n<p>&mdash; Brian Krogsgard (@Krogsgard) <a href=\"https://twitter.com/Krogsgard/status/882711331929022470\">July 5, 2017</a></p></blockquote>\n<p></p>\n<p>Petersen&#8217;s family has created a <a href=\"https://www.newlungsfor.me/2017/jesse-petersen-has-passed-away/\">crowd-funding campaign</a> to help offset funeral and medical expenses. Since its creation, the community has donated more than $12K of $20K. If you are able, please consider donating as Petersen was the sole provider of income for his family.</p>\n<p>My deepest condolences go out to his friends and family. Petersen is survived by his wife and two sons.</p>\n<p><strong>Related Reading</strong>:</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://2017.us.wordcamp.org/2017/07/05/the-loss-of-one-of-our-own/\">The Loss of One of Our Own</a></p></blockquote>\n<p></p>\n<div id=\"epoch-width-sniffer\"></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, 06 Jul 2017 02:09: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:\"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: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:67:\"WPTavern: WPWeekly Episode 280 – Behind the Scenes of Tuniversity\";s:7:\"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:58:\"https://wptavern.com?p=72768&preview=true&preview_id=72768\";s:7:\"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:\"https://wptavern.com/wpweekly-episode-280-behind-the-scenes-of-tuniversity\";s: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:2595:\"<p>In this episode, <a href=\"http://jjj.me/\">John James Jacoby</a> and I are joined by <a href=\"http://kikodoran.com/\">Kiko Doran</a> and <a href=\"http://www.travistotz.com/\">Travis Totz</a>, Senior Web Strategist at Modern Tribe. Doran helped create <a href=\"https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewBook?id=1235850828&mt=11&ls=1\">Tuniversity</a>, a revolutionary new way of learning music through a highly interactive iBook.</p>\n<p>The project was so large, Doran <a href=\"http://tri.be/case-study/tuniversity/\">outsourced</a> some of the work to <a href=\"http://tri.be\">Modern Tribe</a>, a web design and development firm. During the show, we learn the benefits of working with an agency you trust. Doran also explained what it was like to be a client as he&#8217;s normally fulfilling the agency role.</p>\n<p>Two major takeaways from the Tuniversity project include:</p>\n<ol>\n<li>Work on things you&#8217;re passionate about with people who share the same passion.</li>\n<li>Approach problems with a positive mindset.</li>\n</ol>\n<p>Near the end of the show, we discussed the news that WangGuard is <a href=\"https://wordpress.org/support/topic/why-wangguard-was-closed/\">officially closed</a>.</p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"http://wphierarchy.com/\">WPHierarchy.com</a> is a WordPress resource<a href=\"https://wptavern.com/pretty-wordpress-template-hierarchy-diagram\"> created</a> by Rami Abraham in 2013. The site is an interactive version of<a href=\"http://wpdaily.co/wp-template-hierarchy-chart/\"> Michelle Schulp’s colorful diagram</a> of WordPress’ template hierarchy. Each template is linked to documentation that explains its function</p>\n<p><a href=\"https://www.youtube.com/playlist?list=PLzBixSjmbc8eFl6UX5_wWGP8i0mAs-cvY\">Dr. Russell A. Barkley (30 essential ideas everyone should know about ADHD)</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, July 12th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">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\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #280:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></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, 05 Jul 2017 23:58: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: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: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:105:\"WPTavern: Nadia Eghbal and Mikeal Rogers Join a16z Podcast to Discuss the Changing Culture of Open Source\";s:7:\"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:29:\"https://wptavern.com/?p=72702\";s:7:\"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:116:\"https://wptavern.com/nadia-eghbal-and-mikeal-rogers-join-a16z-podcast-to-discuss-the-changing-culture-of-open-source\";s: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:6242:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2015/06/open-source.jpg?ssl=1\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/79777096@N00/6866996865\">16th st</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nd/2.0/\">(license)</a>\n<p>Nadia Eghbal and Mikeal Rogers recently joined Sonal Chokshi for <a href=\"https://a16z.com/2017/04/08/culture-open-source-community/\" target=\"_blank\">an episode of the a16z Podcast</a> to discuss the changing culture of open source. Eghbal works in community programs at GitHub to better support people doing open source work. Rogers is the community manager at the Node.js Foundation. The episode focuses on the human aspect of the world of open source software and what inspires people to work together to give software away for free.</p>\n<p>Through Eghbal&#8217;s research on sustaining open source communities, she found, as Rogers succinctly summarized on the show: &#8220;There&#8217;s no connection between the number of users and the number of people maintaining a project.&#8221; The <a href=\"http://heartbleed.com/\" target=\"_blank\">Heartbleed Bug</a>, which arrested public attention when it was disclosed in 2014, is perhaps one of the most critical examples of an open source project with a global user base and a grossly disproportionate number of maintainers.</p>\n<p>As part of her research at GitHub, Eghbal is working on creating a vocabulary to explain things that are happening with open source projects. One example is the distinction between &#8220;popular&#8221; versus &#8220;healthy&#8221; when describing projects in terms of the communities behind them, governance, quality of maintainership, and other factors that influence a project&#8217;s condition.</p>\n<p>&#8220;Because the dialogue tends to be set by popular projects, and those developers and their problems tend to dominate the story about this, you have these words and vocabulary like &#8216;drive-by-contributions,\'&#8221; Rogers said. This often implies that maintainers are too busy to look at the code. Rogers advocated for changing this perception of &#8220;drive-by-contributors&#8221; to view them as casual contributors, people who show up and have value to add. If maintainers can seize these contributions as an opportunity, they will have a better chance of leveling up contributors to be a more active part of their organization.</p>\n<p>The group also discussed how technology has caused a cultural shift among open source communities from the old world versus the new world of open source.</p>\n<p>&#8220;In older open source, part of the barrier to entry that people went through before they were ever identifiable to any contributor was an acclimation to the culture and an acclimation to the tool chain and all this stuff,&#8221; Rogers said. &#8220;One of the things that GitHub has done is completely remove all of that cultural acclimation. There is one tool chain that you use to contribute to any project and when you show up you don&#8217;t have all of this cultural knowledge. You haven&#8217;t bought into any of these ideals about open source necessarily. You&#8217;re just there to contribute. We actually need to work with that.&#8221;</p>\n<p>In the past, contributors informally acclimated to the culture through the onboarding process, and most software projects were more self-contained.</p>\n<p>&#8220;Where that becomes awkward today is that so many different pieces of software depend on other open source projects, which wasn&#8217;t actually true 10 or 20 year ago,&#8221; Eghbal said. With so many projects fitting into others as dependencies, it becomes more difficult to actually remove a project from the public domain. Open source licensing ensures that these projects have a life of their own. This has democratized entrepreneurship, making it easy for people to piece together technology to build applications and businesses. It also requires a higher level of skills for people working together across various open source projects and cultures.</p>\n<p>Eghbal and Rogers discussed the qualities of a healthy open source community, such as how welcoming the project is and how contributors speak to each other and resolve conflict. The ability to successfully resolve conflict can make the difference between a healthy growth of contributors or attrition on a project. Rogers mentioned a related conversation they had with Karl Fogel on their <a href=\"https://changelog.com/rfc\" target=\"_blank\">Request for Commits podcast</a> concerning conflict within projects.</p>\n<p>&#8220;When we were talking to Karl, he has this view that &#8216;As long as a it has an open source license, it doesn&#8217;t matter how dysfunctional the project is, because we as a community always have this ability to fork it,\'&#8221; Rogers said. &#8220;I didn&#8217;t agree with him on this, because the practical reality of forking a project is such a huge overhaul and you don&#8217;t necessarily have the right people to do it in your particular time. What you actually want are the healthy communities with healthy practices, what you want is to keep them going.&#8221;</p>\n<p>Another open source predicament they discussed, which is fairly common in the WordPress ecosystem, is when a company releases a project as open source or &#8220;gifts it to the community.&#8221; Eghbal likened this to &#8220;sending your dog away to a farm upstate.&#8221;</p>\n<p>&#8220;We&#8217;re really excited to announce this is now open source, meaning we don&#8217;t want to take care of it anymore,&#8221; she said. &#8220;&#8216;We&#8217;ll give it to the community,&#8217; (except they haven&#8217;t actually identified anyone in the community who wants to take care of it.)&#8221; This type of situation shows how &#8220;giving back to the community&#8221; isn&#8217;t always what it appears to be for those who end up using these projects that have been released into the wild.</p>\n<p>The group also discussed how the incentives for people to contribute to open source have changed over the years and why &#8220;the GitHub generation&#8221; has more readily adopted the MIT license. Check out the full podcast episode below:</p>\n<p></p>\n<div id=\"epoch-width-sniffer\"></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, 05 Jul 2017 19:26: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: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:84:\"HeroPress: How I tried, applied, got involved. Realizing one of my childhood dreams.\";s:7:\"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:56:\"https://heropress.com/?post_type=heropress-essays&p=1950\";s:7:\"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:188:\"https://heropress.com/essays/tried-applied-got-involved-realizing-one-childhood-dreams/?utm_source=rss&utm_medium=rss&utm_campaign=tried-applied-got-involved-realizing-one-childhood-dreams\";s: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:15809:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/070517-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: It was so scary admitting my ignorance, exposing it in a remote environment where I couldn\'t see my teammates reactions live.\" /><p>When you’re born in an island, you usually grow up thinking about all the marvelous things awaiting for you on the other side of the sea. I was born in Sardinia, an island in the middle of the Mediterranean Sea, and as a child I dreamt about becoming an air hostess.</p>\n<p>I wanted to travel the world and speak tons of foreign languages, to be able to communicate with local people everywhere I’d go.</p>\n<p>But people kept telling me that I wasn’t going to become tall enough for that job (genetics don’t lie!), and I eventually listened to them. I ended up choosing a different path in life, following the Italian mantra: “You have to study something that will guarantee a stable and secure job for life”.</p>\n<p>Even if I wasn’t that much convinced about the perspective of having the same job for all my life, as my parents did, at the same time I didn’t want to get stuck in the island forever: the unemployment rate in Sardinia is unfortunately really high and I didn’t want to risk to be part of that percentage.</p>\n<h3>Crossing the borders of the island</h3>\n<p>So I chose the Faculty of Economics and did my best to cross the borders of my island as soon as I had the chance: this happened when I was 22 and I moved to Siena, Tuscany, to finish my studies. That is also the time when I opened my first personal blog on an Italian platform named Tiscali, which I later migrated to WordPress.com.</p>\n<p><strong>I’ve always loved writing</strong>, and since I was a little girl I used to spend hours in my room writing stories and poems. I was doing the same with the blog but with the advantage of reaching a much larger public, virtually meeting many people and getting inspired by their stories.</p>\n<p>After 2 years in Tuscany I moved to Strasbourg, France. There I learnt French and did several little jobs, but I found my first important one in Milan, the big city shining with job opportunities for everyone —as Italians love to say.</p>\n<p>There I was, fulfilling the dream of many young people of my age (and their families): I was 25, with an average-paid 40 hours/week office job in the marketing department of a big international company, and I was surrounded by ambitious colleagues and a boss constantly asking for extra —and free— working hours per day.</p>\n<blockquote><p>I was feeling like a parrot inside a golden cage.</p></blockquote>\n<p>It seemed to me I wasn’t going anywhere. I also gave up blogging because I wasn’t feeling inspired enough to write. People constantly repeated to me that I was super lucky to have a permanent contract and work in a marketing department; in their eyes I was all set for life, so —using some strange equation — I also had to be happy!</p>\n<p>Of course I was luckier than many of my peers, but I kept asking myself if I really wanted to do that life forever.<br />\nDid I really want to keep on working 10 hours per day under the neon lights of an office, annihilate my dreams and live waiting for the free time of the weekend?</p>\n<p>The most vivid memory I have of that period is the overwhelming feeling clenching my throat on Sunday afternoons, when I started to dread the moment of coming back to the office the day after.</p>\n<h3>Facing new challenges</h3>\n<p>So I left and faced the change. At the beginning I gave myself the opportunity to test different office jobs. But the results were always the same: I kept feeling unsatisfied with my life, and I understood I had to respect my little girl’s dream and fly away from my golden cage.</p>\n<blockquote><p>I opted for emigration and moved alone to Barcelona, Spain, in 2012.</p></blockquote>\n<p>My first move was plunging myself into a few months of intense Spanish learning at the University, then I found a job in an international Assisted Reproduction Clinic.</p>\n<p>My job title was “Patient Coordinator” and I was assisting international patients coming to Barcelona for their treatments: I was their translator, interpreter and administrative consultant. Patients were from Italy, France, England, Morocco, Senegal…it was a Babylon of people with so many different backgrounds that I felt really inspired by some of their stories.<br />\nThis inspiration led me to start writing again: <strong>I dusted off my WordPress blog</strong> and filled it up with stories about my new life in Barcelona and some of the women I was meeting at the Clinic. I was feeling stronger and more independent than ever.</p>\n<p>The job at the Clinic lasted for 3 years. Even if it was really inspiring, it was also very stressful. Imagine being a 30-something woman speaking all day long about fertility problems with women struggling to have a baby.</p>\n<p>I realized I was getting too involved and decided to look around to see what I could do next.</p>\n<h3>How can I find a job like this?</h3>\n<p>It was summer 2015 and I was at my desk, in my little tiny apartment in front of Barcelona’s beach. I was writing in my blog and I got stuck in a technical problem. While I was searching through the WordPress.com documentation, I saw a pop-up in the bottom right corner of my screen: an Automattician wrote me to ask if I needed help. I gladly accepted her offer, we chatted for a few minutes, the problem was solved and I could go back to my writing. But I also left the chat with one question: <strong>how could that person on chat find a support job with WordPress</strong>?</p>\n<p>Curious as I am, I started looking for an answer and I stumbled upon the official WordPress job page: <a href=\"http://jobs.wordpress.net\">jobs.wordpress.net</a></p>\n<p>There I found a job offer that caught my attention: WP Media, a French startup, was looking for <strong>a polyglot and remote customer service teammate</strong> for one of their plugins, WP Rocket. I read their requirements: fluency in English, French and possibly another language, great experience with WordPress, some coding skills.</p>\n<p>That offer was calling me, I felt it.</p>\n<p><strong>I knew I didn&#8217;t have all the requirements</strong>, but hey, I could speak 4 languages, and I had a WordPress blog…right? Of course, I didn’t know anything about PHP, I had always been a WordPress.com user until that moment and I didn’t really know how to manage a self-hosted website or use a cache plugin…but I felt I was ready to learn all that. And moreover, what did I have to lose?</p>\n<h3>I wrote my most inspired cover letter and sent my CV.</h3>\n<p>With my total surprise, they answered me the day after and we set up an interview by Skype. My main strengths were the fluency in 4 languages and my previous experience in customer service, so I was really confident about those skills; yet I wanted to be totally honest with them: yes, I had been using WordPress for a long time, and yes, I was digital savvy enough, but I knew very little on the technical side. I had always worked on the front end of websites, writing, blogging, learning by myself; I didn&#8217;t know anything about the backend of WordPress sites.</p>\n<p>Even so, they had faith in me and in a few days I had the confirmation: I was in! <strong>During the first days I felt so happy about this new major turning point in my life</strong>: not only had I found a job thanks to my primordial passion, speaking foreign languages, but for the first time in my life I could do that job from home or anywhere else I liked, instead of being caged in a formal office!</p>\n<p>I got introduced to my remote teammates and I instantly felt welcomed.</p>\n<h3>Learning by doing</h3>\n<p>But, very soon, that initial enthusiasm started to struggle with another intense feeling: <strong>the fear of exposing my inexperience</strong>.</p>\n<p>There were too many things I didn&#8217;t know!</p>\n<p>Working in a WordPress backend was so new to me that I started studying like crazy and reading everything I could about WordPress for beginners. I went through some really intense months of learning by doing, supported by my teammates. Like a baby who start crawling and then taking little steps, I was initially answering the easiest tickets from our customers.  At the same my teammates were sending me useful material to read, setting up video-calls for 1to1 training, encouraging me every time they could.</p>\n<p>After a few days I received the first happy comments by the customers I was helping in their mother tongue: until that moment the plugin’s support had been offered only in English and French, so it was the first time Spanish and Italian customers were being answered in their own language…and they appreciated that!</p>\n<p>Even so, I can’t deny it, I was scared.</p>\n<blockquote><p>It was so scary admitting my ignorance, exposing it in a remote environment where I couldn’t see my teammates reactions live.</p></blockquote>\n<p>My first instinct was imagining the worst scenarios where they were secretly hating me for interrupting their work on Slack with my doubts.</p>\n<p>But I had no other choice than to keep asking questions and learn from their answers. Not doing so would have been much worse: silencing my voice would have slowed down my learning process.</p>\n<h3>Why don’t you try to contribute to WordPress?</h3>\n<p>We were at WordCamp Paris 2016 when one of my teammates showed me how the WordPress community worked together and kept in contact through Slack.</p>\n<p>“You speak multiple languages, why don’t you try to contribute to the polyglots team?” —he asked.</p>\n<p>That thought never crossed my mind before, I knew very little about contributing to WordPress. I had been working for WP Media for 6 months and, while I was enjoying my new job a lot, I was just slowly starting to abandon that overwhelming feeling of insecurity I mentioned above.</p>\n<blockquote><p>I didn’t feel ready to dive into a new challenge and start also contributing to WordPress, I thought I didn’t have the ability to do that. I was wrong, obviously.</p></blockquote>\n<p>Curiosity won on me another time and I joined the two Slack channels <em>Making WordPress</em> (where all the WP global community meets) and <em>Italia WP Community</em>. I lurked the channels for a few months, until I went to WordCamp Milan and met some members of the Italian Polyglots team.</p>\n<p>It was love at first string: Laura, one of the <a href=\"https://make.wordpress.org/polyglots/teams/?locale=it_IT\">General Translation Editors</a> (GTE) for Italy, taught me how to start contributing and translating following the polyglots guidelines. She also told me about the big effort the Italian community has been doing to work together, consistently, to boost WordPress related events in Italy and to grow up.</p>\n<p>I wanted to be an active part of it and I started contributing.</p>\n<p><strong>Now I’m a Project Translator Editor for the Italian polyglots team</strong> and I mentor new contributors: I love it!</p>\n<p>Since the beginning of my journey into the WordPress world I traveled a lot, and also attended WordCamps in <a href=\"https://2016.paris.wordcamp.org/\">Paris</a>, <a href=\"https://2016.europe.wordcamp.org/\">Vienna</a>, <a href=\"https://2016.milano.wordcamp.org/\">Milan</a>, <a href=\"https://2016.barcelona.wordcamp.org/\">Barcelona</a>, <a href=\"https://2017.torino.wordcamp.org/\">Torino</a> and <a href=\"https://2017.bilbao.wordcamp.org/\">Bilbao</a>.</p>\n<p>Following my teammates encouragement, <strong>I also started applying to WordCamps as a speaker</strong>, because I felt my story could be important for other people looking for new inspiration for their working and personal life. I gave my first talk in my adoptive city, Barcelona, in December 2016, then in Torino in April 2017 and I recently had the honor to tell my story also from the stage of WordCamp Europe 2017.</p>\n<p>In a short glimpse of time I engaged in many activities related to WordPress which allowed me to meet very interesting and inspiring people from all over the world.</p>\n<h3>I’m (not) lucky.</h3>\n<p>People keep telling me that I’m lucky, and it’s true, I really am. But if I’m here, now, sharing my story (and thanks Topher for inviting me to write it!) is not because I live under a lucky star: I just used my previous skills and passions and adapted them to a new career and life path.</p>\n<p>We all have some skills; and if we don’t know which they are exactly, we should take some time to make a list of the things we’re really good at. With that in mind, just try. Apply. Get involved. Don’t get stuck in the feeling of “I can’t do it because I don’t know enough”.</p>\n<p>That is what I did: without even realizing it, I started putting into reality the dream of the little girl who was born in an island and wanted to travel and speak different languages.</p>\n<p>WordPress made this possible: I’m part of a big community, and I am proud of it.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: How I tried, applied, got involved. Realizing one of my childhood dreams.\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=How%20I%20tried%2C%20applied%2C%20got%20involved.%20Realizing%20one%20of%20my%20childhood%20dreams.&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Ftried-applied-got-involved-realizing-one-childhood-dreams%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: How I tried, applied, got involved. Realizing one of my childhood dreams.\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Ftried-applied-got-involved-realizing-one-childhood-dreams%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Ftried-applied-got-involved-realizing-one-childhood-dreams%2F&title=How+I+tried%2C+applied%2C+got+involved.+Realizing+one+of+my+childhood+dreams.\" rel=\"nofollow\" target=\"_blank\" title=\"Share: How I tried, applied, got involved. Realizing one of my childhood dreams.\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/tried-applied-got-involved-realizing-one-childhood-dreams/&media=https://heropress.com/wp-content/uploads/2017/07/070517-min-150x150.jpg&description=How I tried, applied, got involved. Realizing one of my childhood dreams.\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: How I tried, applied, got involved. Realizing one of my childhood dreams.\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/tried-applied-got-involved-realizing-one-childhood-dreams/\" title=\"How I tried, applied, got involved. Realizing one of my childhood dreams.\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/tried-applied-got-involved-realizing-one-childhood-dreams/\">How I tried, applied, got involved. Realizing one of my childhood dreams.</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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, 05 Jul 2017 12:00:47 +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:\"Alice Orru\";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:102:\"WPTavern: WordCamp Europe 2017 Posts 24% No-Show Rate, Cites Early Ticket Sales and Expensive Location\";s:7:\"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:29:\"https://wptavern.com/?p=72644\";s:7:\"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:111:\"https://wptavern.com/wordcamp-europe-2017-posts-24-no-show-rate-cites-early-ticket-sales-and-expensive-location\";s: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:3872:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/06/wordcamp-europe-venue.jpg?ssl=1\"><img /></a>photo credit: WP Tavern\n<p>WordCamp Europe 2017 organizers have posted <a href=\"https://2017.europe.wordcamp.org/2017/06/30/wordcamp-europe-2017-in-paris-its-a-wrap/\" target=\"_blank\">attendance and budget data</a> compiled after the conclusion of the event. Despite being <a href=\"https://2017.europe.wordcamp.org/do-not-miss-the-biggest-wordcamp-in-europe/\" target=\"_blank\">promoted</a> as &#8220;the largest WordPress event to this day&#8221; with more than 3,000 expected attendees, WCEU 2017 fell short with 1,900 people on the ground. Attendees were 5% fewer than last year&#8217;s 2,000 in Vienna. Expectations ran high but organizers could not predict the 24% no-show rate once the event got started. This is more than double the 10% no-show rate for the previous four years.</p>\n<p>The camp&#8217;s organizers do not have a simple explanation for the high no-show rate, but cite several factors, including a few dozen participants being <a href=\"https://wptavern.com/wordcamp-europe-attendees-are-being-denied-visas-because-conference-ticket-price-is-too-low\" target=\"_blank\">denied visas</a>, higher local sales, an expensive location, and putting tickets on sale too early. Approximately 60% of attendees were from nearby countries, such as France, Great Britain, Germany, Belgium, and the Netherlands.</p>\n<p>Ticket sales for 2017 were open immediately at the conclusion of the 2016 event in Vienna. Organizers found that tickets sold in the first six months had a 34% no-show rate as compared to 20% for those sold in 2017. As the event has often sold out in the past, prospective attendees may have felt pressure to purchase a ticket in advance without confirming the ability to attend. </p>\n<p>Posting increasingly higher attendance numbers isn&#8217;t one of the goals of the WordCamp, but planning accurately for the number of people who will attend is crucial for resource and budget planning. When one in four attendees is a no-show, the plans for food, swag, venue accommodations, and other aspects of the event are askew.</p>\n<p>Organizers did not mention <a href=\"https://wptavern.com/wordcamp-europe-2017-kicks-off-with-contributor-day-focused-on-growing-wordpress-through-inclusion\" target=\"_blank\">Contributor Day</a> attendance in the wrap-up report, but this may have been one of the most successful aspects of the event. It was held prior to the main conference days, which may explain the event&#8217;s unusually high attendance numbers. Organizers hosted 473 attendees for the 500 available contributors slots. </p>\n<h3>WordCamp Europe 2017 Cost 300€ per Attendee, Sponsors Covered 80%</h3>\n<p>WordCamp Europe&#8217;s wrap-up report also includes a transparent breakdown of the event&#8217;s 700k€ budget. Catering costs for lunches, snacks and drinks, made up 50% of the budget. However, organizers were limited to the venue&#8217;s catering partners, which blurs the line between actual food versus venue costs. </p>\n<p>The team was unable to sell all of the sponsorship packages and was forced to reduce the budget by 149k€ along the way. WordCamp Central subsidized 10€/ticket and covered the final deficit of 28k€. The cost breakdown per attendee was 300€ with sponsors covering 80%, WordCamp Central 7%, and tickets sales 13%. These numbers show that the 40€ ticket price is a small fraction of the total costs required for an event of this size. </p>\n<p>Organizers said they felt it was important to share the data for educational purposes but also to &#8220;demonstrate to everyone who might have a doubt, that maintaining the ticket fee very low is meant to make our events accessible to all, but that the fee is not an indicator of the value of the conference.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></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, 03 Jul 2017 19:06:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:43:\"Dev Blog: The Month in WordPress: June 2017\";s:7:\"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:\"https://wordpress.org/news/?p=4865\";s:7:\"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/news/2017/07/the-month-in-wordpress-june-2017/\";s: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:9049:\"<p><i>We&#8217;re starting a new regular feature on this blog today. We&#8217;d like to keep everyone up-to-date about the happenings all across the WordPress open source project and highlight how you can get involved, so we&#8217;ll be posting a roundup of all the major WordPress news at the end of every month.</i></p>\n<p>Aside from other general news, the three big events in June were the release of WordPress 4.8, WordCamp Europe 2017, and the WordPress Community Summit. Read on to hear more about these as well as other interesting stories from around the WordPress world.</p>\n<hr />\n<h2>WordPress 4.8</h2>\n<p>On June 8, a week before the Community Summit and WordCamp Europe,<a href=\"https://wordpress.org/news/2017/06/evans/\"> WordPress 4.8 was released</a>.You can read<a href=\"https://make.wordpress.org/core/2017/05/26/wordpress-4-8-field-guide/\"> the Field Guide</a> for a comprehensive overview of all the features of this release (the News and Events widget in the dashboard is one of the major highlights).</p>\n<p>Most people would either have their version auto-updated, or their hosts would have updated it for them. For the rest, the updates have gone smoothly with no major issues reported so far.</p>\n<p>This WordPress release saw contributions from 346 individuals; you can find their names in <a href=\"https://wordpress.org/news/2017/06/evans/\">the announcement post</a>. To get involved in building WordPress core, jump into the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n<h2>WordCamp Europe 2017</h2>\n<p><a href=\"https://2017.europe.wordcamp.org/\">WordCamp Europe 2017</a> was held in Paris between June 15-17. The event began with a Contributor Day, followed by two days of talks and community goodness. The talks were live-streamed, but you can still catch all the recordings <a href=\"http://wordpress.tv/event/wordcamp-europe-2017/\">on WordPress.tv</a>. The organisers also published <a href=\"https://2017.europe.wordcamp.org/2017/06/30/wordcamp-europe-2017-in-paris-its-a-wrap/\">a handy wrap-up of the event</a>.</p>\n<p>WordCamp Europe exists to bring together the WordPress community from all over the continent, as well as to inspire local communities everywhere to get their own events going — to that end, the event was a great success, as a host of new meetup groups have popped up in the weeks following WordCamp Europe.</p>\n<p>The work that Contributor Day participants accomplished was both varied and valuable, covering all aspects of the WordPress project — have a look through <a href=\"https://make.wordpress.org/\">the Make blogs</a> for updates from each team.</p>\n<p>Finally, we also learned during the event that <a href=\"https://2017.europe.wordcamp.org/2017/06/17/belgrade-serbia-to-host-wordcamp-europe-2018/\">WordCamp Europe 2018 will be held in Belgrade, Serbia</a>, continuing the tradition of exploring locations and communities across the continent.</p>\n<h2>WordPress Community Summit</h2>\n<p>The fourth WordPress Community Summit took place during the two days leading up to WordCamp Europe 2017. This event is an invite-only unconference where people from all over the WordPress community come together to discuss some of the more difficult issues in the community, as well as to make plans for the year ahead in each of the contribution teams.</p>\n<p>As the Summit is designed to be a safe space for all attendees, the notes from each discussion are in the process of being anonymized before we publish them on <a href=\"https://make.wordpress.org/summit/\">the Summit blog</a> (so stay tuned &#8211; they’ll show up there over the next few weeks).</p>\n<p>You can already see the final list of topics that were proposed for the event <a href=\"https://make.wordpress.org/summit/2017/06/10/community-summit-2017-final-list-of-topic/\">here</a> (although a few more were added during the course of the two day Summit).</p>\n<h2>WordPress marketing push continues apace</h2>\n<p>As part of the push to be more intentional in marketing WordPress (as per Matt Mullenweg&#8217;s <a href=\"http://wordpress.tv/2016/12/07/matt-mullenweg-state-of-the-word-2016/\">2016 State of the Word</a>), the Marketing team has launched two significant drives to obtain more information about who uses WordPress and how that information can shape their outreach and messaging efforts.</p>\n<p><a href=\"https://make.wordpress.org/marketing/2017/06/15/wordpress-case-studies-and-usage-survey/\">The team is looking for WordPress case studies</a> and is asking users, agencies, and freelancers to take a WordPress usage survey. This will go a long way towards establishing a marketing base for WordPress as a platform and as a community — and many people in the community are looking forward to seeing this area develop further.</p>\n<p>To get involved in the WordPress Marketing team, you can visit <a href=\"https://make.wordpress.org/marketing/\">their team blog</a>.</p>\n<h2>New Gutenberg editor available for testing</h2>\n<p>For some time now, the Core team has been hard at work on a brand-new text editor for WordPress — this project has been dubbed “Gutenberg.” The project’s ultimate goal is to replace the existing TinyMCE editor, but for now it is in beta and available for public testing — <a href=\"https://wordpress.org/plugins/gutenberg/\">you can download it here as a plugin</a> and install it on any WordPress site.</p>\n<p>This feature is still in beta, so we don’t recommend using it on a production site. If you test it out, though, you’ll find that it is a wholly different experience to what you are used to in WordPress. It’s a more streamlined, altogether cleaner approach to the text-editing experience than we’ve had before, and something that many people are understandably excited about. Matt Mullenweg discussed the purpose of Gutenberg in more detail during <a href=\"http://wordpress.tv/2017/07/01/interview-and-qanda-with-matt-mullenweg/\">his Q&amp;A at WordCamp Europe</a>.</p>\n<p>There are already a few reviews out from <a href=\"https://kinsta.com/blog/gutenberg-wordpress-editor/\">Brian Jackson at Kinsta</a>, <a href=\"https://daily.jorb.in/2017/06/random-thoughts-on-gutenberg/\">Aaron Jorbin</a>, and <a href=\"https://www.mattcromwell.com/gutenberg-first-impressions/\">Matt Cromwell</a> (among many others). Keep in mind that the project is in constant evolution at this stage; when it eventually lands in WordPress core (probably in v5.0), it could look very different from its current iteration — that’s what makes this beta stage and user testing so important.</p>\n<p>To get involved with shaping the future of Gutenberg, please <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">test it out</a>, and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>. You can also visit <a href=\"https://github.com/WordPress/gutenberg\">the project’s GitHub repository</a> to report issues and contribute to the codebase.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li>Bridget Willard <a href=\"https://make.wordpress.org/community/2017/06/21/proposed-wordcamp-editorial-calendar/\">has proposed an editorial calendar</a> to assist WordCamp organizers with publishing content for their event.</li>\n<li>A new kind of niche WordCamp, <a href=\"https://2017-denver.journalist.wordcamp.org/\">WordCamp for Publishers in Denver</a>, has opened ticket sales.</li>\n<li>The WordPress iOS app was updated with <a href=\"https://en.blog.wordpress.com/2017/06/21/an-all-new-media-library-for-the-wordpress-ios-app/\">a fresh, new media library</a> this month.</li>\n<li>It looks like <i>Underscores</i>, the popular WordPress starter theme, <a href=\"https://themeshaper.com/2017/06/26/the-future-of-underscores-and-a-new-committer/\">has a bright future ahead of it</a>, with a renewed vision and new committer.</li>\n<li>The always-inspiring Tom McFarlin <a href=\"https://tommcfarlin.com/simple-autoloader-for-wordpress\">has released a simple autoloader for WordPress</a> that looks very useful indeed.</li>\n<li>After a bit of a discussion on Twitter regarding the differences between WordPress.org, WordPress.com, and Jetpack, <a href=\"https://helen.wordpress.com/2017/06/21/restaurant-vs-meal-kit-vs-grocery-shopping-or-wordpress-com-vs-jetpack-vs-wordpress-org/\">Helen Hou-Sandí came up with a great analogy</a> and an interesting post about it all.</li>\n<li>If you’re interested in contributing specifically to the JavaScript or PHP areas of the WordPress core codebase, then the new #core-js and #core-php channels in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> are perfect for you.</li>\n</ul>\n<p><i>If you have a story we should consider including in the next “Month in WordPress” post, please </i><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><i>submit it here</i></a><i>.</i></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, 03 Jul 2017 11:42: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:15:\"Hugh Lashbrooke\";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:97:\"WPTavern: Gutenberg Contributors Explore Adding Drag-and-Drop and Multi-Column Support for Blocks\";s:7:\"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:29:\"https://wptavern.com/?p=72638\";s:7:\"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:\"https://wptavern.com/gutenberg-contributors-explore-adding-drag-and-drop-and-multi-column-support-for-blocks\";s: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:6817:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/09/building-blocks.jpg?ssl=1\"><img /></a>photo credit: ruudgreven <a href=\"http://www.flickr.com/photos/40811229@N07/6180817922\">DSC_0012</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nc-sa/2.0/\">(license)</a>\n<p>The new Gutenberg editor has an open ticket for <a href=\"https://github.com/WordPress/gutenberg/issues/38#issuecomment-309998712\" target=\"_blank\">allowing users to sort blocks via drag and drop</a>. Blocks can currently be sorted with up and down arrows located to the left of the content but the beta only allows for single-column stacking.</p>\n<p>One of the goals for Gutenberg is to provide &#8220;a page building experience that makes it easy to create rich post layouts.&#8221; As far as layout building goes, the first planned versions of the new editor are very primitive as compared to Wix and Weebly&#8217;s drag and drop website builders where nearly every element on the page can be easily moved to a different position.</p>\n<p>Contributors have been discussing the intricacies of adding this feature to Gutenberg since February. James Nylen <a href=\"https://github.com/WordPress/gutenberg/issues/38#issuecomment-309984280\" target=\"_blank\">summarized some of the challenges</a> that make drag and drop more complicated to implement: </p>\n<blockquote><p>Dragging and dropping a block is not really a one-step operation. It is more like 3:</p>\n<ol>\n<li>Press and hold mouse button or screen</li>\n<li>Move to desired location</li>\n<li>Release</li>\n</ol>\n<p>Step 2 is incredibly difficult to get right, and requires a lot of complicated behaviors like duplicating an item (or at least its general shape and size), scroll handling, and determining the intended new location, especially at the beginning and end of the content. We have all used bad drag-and-drop experiences, and I would argue they are worse than not having it at all.</p>\n<p>That said, for two-dimensional movement with columns, I agree that arrows alone are probably not a good solution. Though mobile support for that is going to be very tricky no matter how it works.</p></blockquote>\n<p>Several commenters on the ticket agree that repeatedly clicking arrows to move blocks is cumbersome and will become untenable in the future when multi-column support is added. This would require up, down, right, and left arrows to rearrange content. Users have come to expect a drag-and-drop interface, because nearly every page builder application offers it.</p>\n<p>&#8220;We are thinking of drag and drop as a progressive enhancement for desktops,&#8221; Joen Asmussen said. &#8220;One that would be great to have, but we should build it after we have explicit button actions in place for doing the same, including splitting into columns in the future. This decision is based on a desire to ensure accessibility as well as mobile devices can play the same game.&#8221;</p>\n<p>Asmussen marked the ticket priority as low in May and removed it from the beta milestone. At this point, users are not likely to see drag and drop in the first release that ships with WordPress core. </p>\n<h3>Multi-Column Layouts Planned for Gutenberg V2</h3>\n<p>The discussion surrounding adding drag-and-drop to the editor naturally leads into <a href=\"https://github.com/WordPress/gutenberg/issues/219\" target=\"_blank\">adding multi-column support</a>. Limiting users to a single column is a one-dimensional approach to designing pages, but contributors don&#8217;t plan to leave Gutenberg without multi-column support for long. </p>\n<p>Geoarge Olaru, a designer at <a href=\"https://pixelgrade.com/\" target=\"_blank\">PixelGrade</a>, shared a <a href=\"https://invis.io/3FAS8VQE8#/222711568_Creating_Columns_-_0\" target=\"_blank\">prototype</a> for adding a simple two or three-grid column layout to Gutenberg. </p>\n<p>&#8220;Extending WordPress further from the default Blog Posts automatically implies the need of multi-column layouts for presentation pages,&#8221; Olaru said. &#8220;I would prefer to tackle this feature upfront, rather than letting every developer do it on his own (see the multitude of page builders plugins).&#8221;</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/06/multi-column-mockup.png?ssl=1\"><img /></a></p>\n<p>&#8220;For the V1 editor, I&#8217;m afraid columns like this is out of scope,&#8221; Asmussen <a href=\"https://github.com/WordPress/gutenberg/issues/219#issuecomment-285330922\" target=\"_blank\">said</a> in reply to a Olaru&#8217;s ticket with mockups and a prototype for multi-column support. &#8220;That&#8217;s not a &#8216;no&#8217; — rather, we need some technical foundations to be solid first, before we commit to the really interesting stuff. But it might be a V1.1, or at the very least something for the customization folks later on in the year. Even before that, it would be good to keep this UI in mind, so that perhaps a plugin can add this even earlier.&#8221; </p>\n<p>Other commenters on the ticket feel more urgency about getting multi-column support into the first version of the editor. One of the concerns is that plugin developers will rush to add columns immediately based on demands from users, who will then have to migrate once core adds support.</p>\n<p>&#8220;Multi column layouts are a must-have,&#8221; Anthony Hortin commented on the ticket. &#8220;At the moment, Gutenberg isn&#8217;t solving any issue. You still end up with one long column of content. The whole reason page builders are so popular, and why hundreds of thousands of people are using them, is because they provide the ability to easily make multi-column layouts. Without this functionality, you&#8217;re not providing any reason to use Gutenberg over a page builder plugin.&#8221;</p>\n<p>One of the main challenges of adding multi-column support is figuring out what type of grid system to use and making sure that it scales from mobile to desktop. Weston Ruter joined the discussion to say that the foundational work for nested block support is being done now in version 1, but the UI for displaying them hasn&#8217;t been implemented yet.</p>\n<p>&#8220;I appreciate the excitement and urgency to wanting columns,&#8221; Asmussen said. &#8220;We feel the same urgency. It&#8217;s not about not wanting columns, it&#8217;s purely about managing resources at this point.&#8221;</p>\n<p>The good news is if you&#8217;ve been testing Gutenberg and wondering where some of these features are on the roadmap, they will be coming in later versions. While there may be disagreements about how much of a priority drag-and-drop and multi-column support should have for version 1, contributors agree that laying a solid technical foundation for these features is crucial for future extensibility.</p>\n<div id=\"epoch-width-sniffer\"></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, 01 Jul 2017 19:06:17 +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: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:116:\"WPTavern: Gutenberg 0.3.0 Adds Front-End Styles for Core Blocks, Notices Framework, and Text and Image Quick Inserts\";s:7:\"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:29:\"https://wptavern.com/?p=72646\";s:7:\"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:125:\"https://wptavern.com/gutenberg-0-3-0-adds-front-end-styles-for-core-blocks-notices-framework-and-text-and-image-quick-inserts\";s: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:4557:\"<p>Gutenberg development is marching ahead with <a href=\"https://make.wordpress.org/core/2017/06/30/whats-new-in-gutenberg-june-30/\" target=\"_blank\">version 0.3.0</a> released today. New releases are shipping out on a weekly basis, so testers will get to discover another round of new additions after updating to the latest. The <a href=\"https://wordpress.org/plugins/gutenberg/#developers\" target=\"_blank\">changelog</a> has a full list of the 50 additions and improvements included in this release, but here&#8217;s a quick visual tour of a few of the most interesting user-facing features added this week.</p>\n<p>Gutenberg developers have <a href=\"https://github.com/WordPress/gutenberg/pull/1418\" target=\"_blank\">added front-end styles for core blocks</a>, which means that content like cover images will now appear the same as they look in the admin in the editor. The demo content in the plugin has also been <a href=\"https://github.com/WordPress/gutenberg/pull/1493\" target=\"_blank\">updated to display a full-width cover image</a>. Below is an example of a standard width cover image on the front-end.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/06/cover-image-frontend.png?ssl=1\"><img /></a></p>\n<p>Version 0.3.0 also includes new <a href=\"https://github.com/WordPress/gutenberg/pull/1553\" target=\"_blank\">text and image quick inserts</a>, which appear when hovering over the blank space beneath the post content. This makes it faster to add the types of content that are used most frequently.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/06/text-and-image-quick-inserts.png?ssl=1\"><img /></a></p>\n<p>This release adds a <a href=\"https://github.com/WordPress/gutenberg/pull/1437\" target=\"_blank\">framework for notices</a>, which provides developers with reusable notices components, showing how to trigger notices and where they will show up. Gutenberg now displays <a href=\"https://github.com/WordPress/gutenberg/pull/1564\" target=\"_blank\">notices on post save, schedule, and update</a>.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/06/gutenberg-notices.png?ssl=1\"><img /></a></p>\n<p>Version 0.3.0 adds a new <a href=\"https://github.com/WordPress/gutenberg/pull/1555\" target=\"_blank\">block descriptions component</a> to blocks with inspector controls. Several of the core blocks now display descriptions. These will be especially useful when plugin developers begin adding their own custom blocks, offering users a quick way to see the purpose of the block.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/06/block-description-e1498855903121.png?ssl=1\"><img /></a></p>\n<p>This release adds more placeholder text to various blocks, as &#8220;placeholders are key,&#8221; according to the newly added <a href=\"http://gutenberg-devdoc.surge.sh/?selectedKind=Gutenberg&selectedStory=Design&full=0&down=1&left=1&panelRight=1&downPanel=storybooks%2Fstorybook-addon-knobs\" target=\"_blank\">design blueprints and principles</a> included in Gutenberg&#8217;s documentation:</p>\n<blockquote><p>If your block can have a neutral placeholder state, it should. An image placeholder block shows a button to open the media library, a text placeholder block shows a writing prompt. By embracing placeholders we can predefine editable layouts, so all you have to do is fill out the blanks.</p></blockquote>\n<p>Version 0.3.0 also adds several enhancements that make it easier to edit and customize the image-oriented blocks with more options and settings: </p>\n<ul>\n<li>Added “edit image” button to image and cover image blocks</li>\n<li>Added option to visually crop images in galleries for nicer alignment</li>\n<li>Added option to disable dimming the background in cover images</li>\n<li>Added option to display date and to configure number of posts in LatestPosts block</li>\n<li>Added text formatting to CoverImage block</li>\n<li>Added toggle option for fixed background in CoverImage</li>\n<li>Added placeholder for all text blocks</li>\n<li>Added placeholder text for headings, quotes, etc</li>\n</ul>\n<p>Active installs for the <a href=\"https://wordpress.org/plugins/gutenberg/\" target=\"_blank\">Gutenberg plugin</a> have nearly doubled since last week and are at more than 900 sites. This is roughly 1% of the goal Matt Mullenweg set for testing on 100,000 sites before replacing the edit screen. The plugin may also be advertised in the dashboard in a future release, possibly 4.8.1, which is slated for the end of July.</p>\n<div id=\"epoch-width-sniffer\"></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, 30 Jun 2017 22:07: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: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: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:76:\"WPTavern: Popular WordPress Plugins Slow to Add Meta Box Support for Calypso\";s:7:\"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:29:\"https://wptavern.com/?p=71527\";s:7:\"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:87:\"https://wptavern.com/popular-wordpress-plugins-slow-to-add-meta-box-support-for-calypso\";s: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:3361:\"<p>During the State of the Word at WordCamp US 2016, Matt Mullenweg <a href=\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\">announced</a> that Calypso was <a href=\"https://youtu.be/Nl6U7UotA-M?t=37m1s\">plugin aware</a>. Calypso is a REST API and React <a href=\"https://wptavern.com/early-reviews-show-applications-like-calypso-are-the-future-of-wordpress\">powered application</a> for the desktop created by Automattic <a href=\"https://ma.tt/2015/11/dance-to-calypso/\">in 2015</a>.</p>\n<p>Developers with plugins active on 1M sites or more <a href=\"https://github.com/Automattic/wp-calypso/pull/10517\">received an email invitation</a> from Andy Peatling to begin building support for Calypso.</p>\n<p>&#8220;Calypso is now plugin-aware,&#8221; Mullenweg said. &#8220;This pull request was merged today, and as a way to bootstrap this, we’re opening up for what I just described for plugins to create Calypso interfaces for what they’re doing.</p>\n<p>&#8220;Basically saying, if you’re using Calypso on a site that has one of these plugins, let’s say WooCommerce, all of a sudden in the interface, there will be all the WooCommerce stuff. It’ll talk to the API, it will run on the desktop just like the rest of Calypso, and it will only be loaded if the plugin is active.&#8221;</p>\n<p>One of the major differences between <a href=\"https://developer.wordpress.com/calypso/\">Calypso</a> and WP-Admin is that custom meta boxes added by plugins are not accessible in Calypso.</p>\n<p>Nearly seven months since the announcement, popular WordPress plugins have struggled to add meta box support, including those maintained by Automattic. <a href=\"https://wordpress.org/plugins/wordpress-seo/\">WordPress SEO</a>, active on more than 3M sites, is among the plugins that were selected to take part in the experiment.</p>\n<p>When asked about the progress of making WordPress SEO Calypso aware, Joost de Valk, founder of <a href=\"https://yoast.com/\">Yoast.com</a>, declined to comment.</p>\n<p>Automattic has seen little progress on the initiative, &#8220;No news to report at this time, but hope to have some soon,&#8221; Automattic representative Mark Armstrong said. WooCommerce has yet to add meta box support and settings pages in Calypso.</p>\n<p>Gutenberg, WordPress&#8217; new editor, is also built using React. One of the chief concerns expressed by users and developers is how it will <a href=\"https://github.com/WordPress/gutenberg/issues/952\">support custom meta boxes</a> built using the current PHP framework.</p>\n<p>&#8220;I miss a lot of the meta boxes I’m used to seeing on the screen,&#8221; <a href=\"https://daily.jorb.in/2017/06/random-thoughts-on-gutenberg/\">Aaron Jorbin said</a>. &#8220;Things like Yoast SEO (on some sites) and custom taxonomies are just not shown. If every meta box ever made for WordPress needs to be remade, it sure is going to make developers lives a living hell.&#8221;</p>\n<p>I want to use Calypso as a replacement for WP-Admin because it&#8217;s fast and I like the interface. However, I can&#8217;t do that until it supports meta boxes for the plugins I rely on, such as Edit Flow. Is the lack of custom meta box support for Calypso a sign of what&#8217;s to come with Gutenberg?</p>\n<div id=\"epoch-width-sniffer\"></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, 30 Jun 2017 20:05: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: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:50:\"WPTavern: WordCamp Netherlands Reinstated for 2018\";s:7:\"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:29:\"https://wptavern.com/?p=72624\";s:7:\"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://wptavern.com/wordcamp-netherlands-reinstated-for-2018\";s: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:1924:\"<p>At WordCamp Europe I had the opportunity to speak with WordCamp Netherlands organizers Marcel Bootsman and Luc Princen, along with WordPress Global Community Team members Josepha Haden and Andrea Middleton. The group has had several conversations about the future of WordCamp Netherlands, which was <a href=\"https://wptavern.com/wordpress-community-support-shuts-down-wordcamp-netherlands-in-favor-of-city-based-wordcamps\" target=\"_blank\">shut down earlier this year in favor of city-based WordCamps</a>, and have decided to reinstate the camp with a few conditions.</p>\n<p>WordCamp Netherlands organizers are now allowed to begin planning the event again based on the requirement that the country host three city-based WordCamps first. There are currently two local camps on the schedule and a few others in the pre-planning stage. Lead organizer Marcel Bootsman is aiming to have 500 attendees for the next WordCamp Netherlands in 2018.</p>\n<p>In a recent <a href=\"https://torquemag.io/2017/06/matt-mullenweg-interview/\" target=\"_blank\">interview</a> with Torque, Matt Mullenweg indicated that the outlook is good for future regional WordCamps.</p>\n<p>&#8220;I think we got to the point where we were too rules-based and now we’re starting to open up the process and be more agile in the approach to WordCamps,” Mullenweg said. “We can start to think about regional WordCamps and topic-focused WordCamp&#8230;we want to think about which WordCamps make sense to move the community forward.&#8221;</p>\n<p>In our interview below, WordPress Global Community Team members said they plan to take similar country-based WordCamp proposals on a case-by-case basis. WordCamp Netherlands is pioneering the way for other countries with active local communities to continue to push the boundaries of the previously &#8220;one-size-fits-all&#8221; approach to WordPress events.</p>\n<p></p>\n<div id=\"epoch-width-sniffer\"></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, 29 Jun 2017 19:18: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:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: WPWeekly Episode 279 – The Future of Underscores with David A. Kennedy\";s:7:\"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:58:\"https://wptavern.com?p=72616&preview=true&preview_id=72616\";s:7:\"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:88:\"https://wptavern.com/wpweekly-episode-279-the-future-of-underscores-with-david-a-kennedy\";s: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:2442:\"<p>In this episode, <a href=\"http://jjj.me/\">John James Jacoby</a> and I are joined by <a href=\"https://davidakennedy.com/\">David A. Kennedy</a>. Kennedy is a Theminator at Automattic and an accessibility advocate. Kennedy joined us to talk about <a href=\"https://wptavern.com/automattic-to-renew-efforts-on-underscores-retire-components-starter-theme-generator\">the future of Underscores</a>, a starter theme created by Automattic in 2012.</p>\n<p>We discussed how Gutenberg may impact theme development in general and some of the lessons learned from their <a href=\"https://wptavern.com/automattic-launches-components-with-5-new-starter-themes-based-on-underscores\">Components project</a>. Kennedy tells us what trends he&#8217;s noticing with WordPress themes today and what the state of accessibility looks like for the theme landscape.</p>\n<p>After the interview, Jacoby and I have a candid conversation about Gutenberg, what it means for WordPress, our experience with it thus far, and how it&#8217;s being developed.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wordpress-4-9-to-focus-on-managing-plugins-and-themes-gutenberg-targeted-for-5-0\">WordPress 4.9 to Focus on Managing Plugins and Themes, Gutenberg Targeted for 5.0</a></p>\n<h2>Links Mentioned:</h2>\n<p><a href=\"http://a11yweekly.com/\">Accessibility Weekly</a> &#8211; Kennedy&#8217;s hand-curated newsletter about web-accessibility delivered weekly.<br />\n<a href=\"https://make.wordpress.org/themes/\">WordPress Theme Review Team</a><br />\n<a href=\"https://wptavern.com/wordpress-opens-up-more-channels-for-gutenberg-testing-and-feedback\">Gutenberg</a><br />\n<a href=\"http://underscores.me/\">Underscores</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, July 5th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">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\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #279:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></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, 29 Jun 2017 01:07:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:95:\"WPTavern: WooCommerce 3.1 Adds New CSV Product Importer/Exporter, Improves Extension Management\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72604\";s:7:\"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:104:\"https://wptavern.com/woocommerce-3-1-adds-new-csv-product-importerexporter-improves-extension-management\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3048:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/07/woocommerce-logo.jpg?ssl=1\"><img /></a></p>\n<p><a href=\"https://woocommerce.com/2017/06/3-1-release-product-importer-shipping-service/\" target=\"_blank\">WooCommerce 3.1</a> was released today after four weeks of beta and RC testing. Although it is just a minor update, the release was a large undertaking with 1,600 commits from 84 contributors. </p>\n<p>The most exciting feature in 3.1 is the new built-in product importer/exporter that supports CSV files, a feature previously offered through extensions. The importer makes it easier to migrate stores from other e-commerce platforms, as well as add and update product information for existing stores. Users can select whether to update existing products or create new products and can map the data against product fields:</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/06/woo-product-importer.png?ssl=1\"><img /></a></p>\n<p>The tool is also useful for those selling across multiple storefronts or marketplaces and is capable of matching up data based on product ID or SKU. Please note that it only handles products and not customers and orders. Store owners looking to import those additional items will still need to use an extension.</p>\n<p>Version 3.1 also introduces the ability to manage WooCommerce.com extension licenses within WooCommerce core, eliminating the need to install the helper extension and copy subscription keys over. Customers can now connect their WooCommerce.com account to the site and download, manage, and activate extensions in the admin. Developers or agencies that have purchased extensions on behalf of clients will need to contact WooCommerce to transfer the subscriptions to a new owner in order for them to show up within the clients&#8217; admin. </p>\n<p>This release also includes several other improvements, including the following: </p>\n<ul>\n<li>Add oEmbeds to the product short description, more useful error messages</li>\n<li>More useful error messages</li>\n<li>Add oEmbeds to the product short description</li>\n<li>Customers can accept ‘Terms and conditions’ without leaving checkout</li>\n<li>Set stock statuses for variations in bulk from the edit product screen</li>\n<li>Small improvements to the setup wizard</li>\n<li>WooCommerce Services Plugin: Add live shipping rates for USPS and Canada Post and print discounted shipping labels for USPS without leaving the store</li>\n<li>New search helpers for orders to allow developers to query orders by multiple props</li>\n</ul>\n<p>Many WooCommerce store owners experienced considerable difficulties in updating to 3.0 due to extension incompatibilities. This is one of the reasons why WooCommerce recommends making backups of your store and testing the 3.1 update on a staging site to see how it affects themes and extensions. The changes in 3.1 should be backwards compatible with 3.0.x sites, but impact on extensions needs to be tested before pushing the update live.</p>\n<div id=\"epoch-width-sniffer\"></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, 29 Jun 2017 00:30: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: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:77:\"WPTavern: WordPress Opens Up More Channels for Gutenberg Testing and Feedback\";s:7:\"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:58:\"https://wptavern.com?p=72583&preview=true&preview_id=72583\";s:7:\"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:88:\"https://wptavern.com/wordpress-opens-up-more-channels-for-gutenberg-testing-and-feedback\";s: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:3501:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/06/testing.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/23YKF6ZUWV\">Vojtech Okenka</a>\n<p>Gutenberg testing is in full swing and the WordPress Testing Handbook has a new page to help users <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">get started</a>. It clearly defines the purpose of the new block editor as not just for writing content but also for creating layouts. Users are invited to offer general feedback or engage in specific task-based tests.</p>\n<p>The new testing page erases boundaries for feedback by allowing users to submit their thoughts and suggestions using an <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSdCVZ5ooeVYzjp26LAxKZVgkvcRraSTD6pRM_cjGuJfvLKQKw/viewform\">online form</a>. Previously, the only way to offer feedback was by creating an issue on <a href=\"https://github.com/WordPress/gutenberg\">GitHub</a> or contacting the contributors on WordPress&#x27; #core-editor Slack channel. </p>\n<p>At this stage in Gutenberg development, it may be difficult to discern what is a bug versus what is an unpolished feature. WordPress is using Storybook, an interactive development and testing environment for React and React-Native UI components, to create <a href=\"http://gutenberg-devdoc.surge.sh/\">Gutenberg&#x27;s documentation</a>. However, this collection of documents focuses more on technical details for developers. The plugin&#x27;s <a href=\"https://wordpress.org/plugins/gutenberg/#developers\">changelog</a> may provide some information about which features should be working. Before reporting an issue in the feedback form, it&#x27;s a good idea to review the project&#x27;s <a href=\"https://github.com/WordPress/gutenberg/issues\">GitHub issues</a> to see if it has already been logged.</p>\n<h3>Testing Gutenberg Outside of the WordPress&#x27; Developer Community is Critical to Its Success</h3>\n<p>A few weeks ago I helped one of my friends migrate her personal blog from Blogger to WordPress. She had put off setting up her new site for months after checking out the admin and getting overwhelmed. Getting familiar with the post editor was enough of a hurdle, without piling on the idea of widgets and shortcodes and different screens and methods for inserting different types of content. The new editor can solve this problem with a unified method of creating content and placing it on the page.</p>\n<p>Gutenberg has the potential to make WordPress content editing and layout building more user-friendly but only if it gets into the hands of non-technical users and those who are considering a switch from other platforms. WordPress&#x27; recurring <a href=\"https://wptavern.com/wordpress-editor-experience-survey-shows-75-of-respondents-dont-use-distraction-free-writing-mode\">failure to collect feedback beyond its own development community</a> needs to be addressed if Gutenberg is going to become a product that will attract non-WordPress users.</p>\n<p>As the plugin is still in the very early beta stage, this is a crucial point in time when feedback can have a big impact on shaping Gutenberg&#x27;s development. Including non-technical users as early in the process as possible, as the new <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">testing page</a> attempts to do, should provide a better overall picture of Gutenberg&#x27;s usability.</p>\n<div id=\"epoch-width-sniffer\"></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, 28 Jun 2017 20:30:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:24:\"WPTavern: Why Gutenberg?\";s:7:\"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:29:\"https://wptavern.com/?p=72563\";s:7:\"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:34:\"https://wptavern.com/why-gutenberg\";s: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:7502:\"<p>At WordCamp Europe 2017, Matt Mullenweg, co-founder of the WordPress open source project, <a href=\"https://wptavern.com/wordpress-new-gutenberg-editor-now-available-as-a-plugin-for-testing\">announced</a> that Gutenberg was available as a plugin for testing. In the past few weeks, members of the community have published their experiences with the new editor. Some of the reviews I&#8217;ve read so far include:</p>\n<ul class=\"wp-block-freeform wp-block-freeform wp-block-freeform wp-block-freeform wp-block-freeform wp-block-freeform wp-block-freeform wp-block-freeform\">\n<li><a href=\"https://daily.jorb.in/2017/06/random-thoughts-on-gutenberg/\"><cite></cite>Random Thoughts on Gutenberg </a></li>\n<li><a href=\"https://joost.blog/gutenberg-and-yoast-seo/\">Gutenberg and Yoast SEO </a></li>\n<li><a href=\"http://gschoppe.com/wordpress/improving-wordpress/improving-wordpress-pt-4-where-project-gutenberg-lost-me-open-letter-to-core/\">Improving WordPress Pt 4 – Where Gutenberg Lost Me (Open Letter to Core) </a></li>\n<li><a href=\"https://wplift.com/gutenberg-editor-first-look\">A First Look at Gutenberg Editor for WordPress: Mixed Opinions </a></li>\n<li><a href=\"https://kinsta.com/blog/gutenberg-wordpress-editor/\">Diving Into the New Gutenberg WordPress Editor (Pros and Cons) </a></li>\n<li><a href=\"https://www.customerservant.com/gutenberg-screen-reader-initial-thoughts-reactions/\">Gutenberg With A Screen Reader: Initial Thoughts And Reactions </a></li>\n<li><a href=\"https://mrwweb.com/first-reactions-gutenberg-future-of-wordpress/\">First Reactions to Gutenberg, the Future of WordPress</a></li>\n</ul>\n<p>There is one review in particular that has piqued my interest. Adrian Roselli not only <a href=\"http://adrianroselli.com/2017/06/first-reactions-to-gutenberg.html\">shares his first impressions</a> of Gutenberg, but also asks a couple of important questions and raises some interesting points:</p>\n<blockquote class=\"blocks-quote-style-1 wp-block-quote\"><p>When I first heard about Gutenberg, I asked some people at WordCamp London and later at WordCamp Europe who had requested it. Remembering that WordCamp is open source, I then re-jiggered my question and asked what problem it was trying to solve.</p>\n<p>Of the people I asked, I do not know who was a contributor. The answer I overwhelmingly got back was that Matt wanted it.</p></blockquote>\n<p>There are two things that concern me about Roselli&#8217;s statement. The first is that I have a few quirks with the current editor but I don&#8217;t often use short codes, custom HTML, or use custom embed codes. Thinking about what <a href=\"https://github.com/WordPress/gutenberg/blob/aae8cdd1349c6af7a74e84174724526386643a6e/docs/design.md\">problems Gutenberg solves</a> is somewhat perplexing if they&#8217;re not problems I encounter on a regular basis.</p>\n<p>The second is that people at WordCamps are answering the question by saying Mullenweg wants it in core. Roselli states that he doesn&#8217;t know if the people answering the question are contributors or not. Because Mullenweg wants something in core should never be the primary reason it&#8217;s added.</p>\n<p>It&#8217;s easy to see how one could come up with this answer. Earlier this year, Mullenweg took over core development as the project lead, and <a href=\"https://wptavern.com/matt-mullenweg-announces-tech-and-design-leads-for-new-focus-based-development-cycle\">assigned</a> Automattic employees Matias Ventura and Joen Asmussen to lead the development of Gutenberg. As project lead, Mullenweg can bypass the <a href=\"https://wptavern.com/matt-mullenweg-discusses-core-focuses-downsides-of-a-consensus-driven-model-and-more-on-apply-filters-podcast\">concensus-driven model</a>, and do what he thinks is best for the project without going through a committee.</p>\n<p>In the <a href=\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\">2016 State of the Word</a>, Mullenweg announced that the Editor would be one of three core focuses for 2017. In January of this year, the team published a <a href=\"https://make.wordpress.org/core/2017/01/17/editor-technical-overview/\">technical overview</a> of what the new editor would encompass. A month later, the team <a href=\"https://make.wordpress.org/design/2017/02/09/initial-editor-blocks-prototype-editor-testing/\">published an initial prototype</a> of a block-based editor.</p>\n<p>The team is moving rapidly with <a href=\"https://wptavern.com/wordpress-4-9-to-focus-on-managing-plugins-and-themes-gutenberg-targeted-for-5-0\">plans to ship Gutenberg</a> possibly in time for WordPress 5.0 expected later this year or early next. If all of the work thus far had to go through a committee, it&#8217;s likely Gutenberg development wouldn&#8217;t be where it&#8217;s at.</p>\n<p>Perhaps not enough people <a href=\"http://chrislema.com/misunderstanding-goal-gutenberg-writing-experience/\">understand the &#8216;Why&#8217; behind the project.</a> Who can blame them? Outside of specifying that it will help WordPress <a href=\"https://wptavern.com/wordpress-new-gutenberg-editor-now-available-as-a-plugin-for-testing\">leapfrog its competitors</a>, there&#8217;s not a lot of information on official channels that concretely explains and supports the idea that Gutenberg is necessary for millions of users.</p>\n<p>Mullenweg has a good track record of doing what&#8217;s best for the project. However, in the case of revamping the editor, which will radically change how everyone will create content in WordPress, it&#8217;s concerning that more user research, personas, usage data, etc. is not available to indicate such a major shift was warranted. There was an <a href=\"https://wptavern.com/wordpress-editor-experience-survey-shows-75-of-respondents-dont-use-distraction-free-writing-mode\">Editor survey published</a> earlier this year but the results were not representative of WordPress&#8217; global user base.</p>\n<p>&#8220;A lot of assertions on ease of use are made on the Gutenberg plugin page, with nothing to back them up,&#8221; Roselli said.</p>\n<p>Gutenberg is an exciting, ambitious project, but one that I&#8217;m not entirely sure is necessary. If WordPress core is going to fundamentally change the way I create content without giving me a choice, I want as much information and user research data as possible to convince me that it&#8217;s the better option.</p>\n<p>It may seem odd that these questions and concerns are being raised six months into the project but at the same time, development has moved so fast, it feels like the opportunity to have them addressed at the beginning was missed.</p>\n<p>Revamping the editor experience is a massive undertaking and, six months in, it&#8217;s not better than the editor I use today. I wrote this post in Gutenberg and it was a cumbersome, frustrating experience. It will need to address a lot of issues if it&#8217;s going to beat the current WordPress editor, let alone leapfrog its competitors. However, the team is <a href=\"https://make.wordpress.org/core/tag/gutenberg/\">making good progress</a> on a weekly basis.</p>\n<p>Gutenberg needs as many testers as possible if it&#8217;s going to be the best editor in its class. For instructions on how and what to test, read the <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">Gutenberg testing guide</a> on the Make WordPress Testing site.</p>\n<div id=\"epoch-width-sniffer\"></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, 28 Jun 2017 18:48:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"HeroPress: From Teaching Toddlers to Teaching the World\";s:7:\"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:56:\"https://heropress.com/?post_type=heropress-essays&p=1940\";s:7:\"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:138:\"https://heropress.com/essays/teaching-toddlers-teaching-world/?utm_source=rss&utm_medium=rss&utm_campaign=teaching-toddlers-teaching-world\";s: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:9327:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/06/062817-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: My goal was to learn as much as I could about WordPress so I too, can teach.\" /><p>I did not pick the computer life. It picked me. I can remember the summer between kindergarten and first grade; I had a computer summer class that introduced me to my passion. The first day when my mother picked me up I exclaimed “mommy I want a computer for Christmas!” I was five and had no realization that in 1986 they would cost more than about everything I owned. I remember being upset that Santa did not bring me the computer that I had been wishing for since June. Growing up, any time I got the chance to sit in front of a computer, I took it for as long as I could. In high school, I even designed the website of one of the groups I was in. It was still online up until last year when CCHS did a website redesign. However, I never actively pursued a career with computers or even took a class for them since that summer. It was not until after I got into WordPress that I actually took a computer class, and now I have an associate&#8217;s in Information Technology.</p>\n<p>My first career was as a preschool teacher. I loved teaching, loved the joy that it gave me, but it was a very under-valued career.</p>\n<blockquote><p>Most teachers, who go to college to become teachers, make anywhere between minimum wage to a dollar over that with no insurance and maybe a week’s paid vacation.</p></blockquote>\n<p>While spending 45 plus hours every week, I was dedicated to teaching our future, I was barely getting bills paid. So many times I would have to pay bills late, worry how I was going to make sure the next bill gets paid, and have enough gas in my car to make it to work the rest of the week. I devoted twelve years to teaching colors, shapes, letters, numbers, and how to get along with others. While I loved to teach, I needed more. Plus, if I wanted to be able to take care of my daughter, I needed to make a change or I would never even be able to have a savings.</p>\n<h3>And Then There Was WordPress</h3>\n<p>Around 2011, I got the idea that I wanted to write a blog. I had heard my friend Chris talk about blogging so I knew he would point me in the right direction. At that time he was working on a security plugin to help the sites he managed for work. He told me “if you want me to help you build a blog, I&#8217;m going to teach you so you can do it on your own later.” We bought a domain, set up hosting, and ran the install. I instantly became hooked. The more I built, the more I wanted to learn about WordPress, and the more I wanted to do.</p>\n<blockquote><p>Almost every night, after my daughter would go to bed, I would spend working on my blog, reading about what one can do with WordPress, and trying everything I learned.</p></blockquote>\n<p>Sometimes things would go great, and other times I would accidentally delete out my entire site on FileZilla without a backup and would start from scratch again. Most of my learning came from my failed attempts and what not to do. That is what was my first clue that I would like to be a “fixer” instead of a “builder”.</p>\n<p>The more I learned, the more I wanted to learn. By 2013 I decided that “I could actually do this. I could make money from WordPress” but I still had about zero clue of how to go about it. I decided to leave preschool for good. I took a full time job working for a local IT agency that also built sites on WordPress. I spent a year there but during that time Chris introduced me to Regina at WP Security Lock. We hit it off and I quickly became a part time employee in April of 2014 helping her with the sites she managed and then learning how to clean hacked websites.</p>\n<p>I spent almost two years working for WPSL. The first part of them I was working for the local agency. Regina showed me another option for working in WordPress. It was the idea of working remotely. My daughter was still at the age where she needed after school care, and it is expensive. So with the support of my then fiance, I took the leap to work remotely in September of 2014.</p>\n<p>Fast forward from working in with various plugin support teams and security support roles, to jumping into agency support that I did for almost a year, I am now at home with WP Media on their WP Rocket support team. While most do not feel that it is the most glamorous of career choices, I love fixing problems, finding solutions, and helping people. Most of all, WordPress and working with support, gives me many teaching opportunities to help out every person who asks.</p>\n<h3>The Want to Teach</h3>\n<p>My first ever WordPress Community event was WP Engine’s 10 year birthday party they threw for WordPress in Austin. The feeling the Austin WP community gave me led me to feel like this was really a place I wanted to be. After Chris saw how excited I was about the community, he asked if I would like to go to WordCamp Chicago. Coincidentally, four years ago today, I was attending my first ever WordCamp. How the speakers taught the attendees, my goal was to learn as much as I could about WordPress so I too, can teach.</p>\n<p>Even though I no longer had the official title of a teacher, I still loved to teach. WordCamp Austin 2014 gave me the first opportunity to teach others about Jetpack. I was a nervous wreck! Not only was my best friend there who I looked up to in the WordPress community, but also one of the wonderful Happiness Engineers for the Jetpack team. I had Kraft go over my slides for me to make sure there was not anything I was sticking my foot in my mouth for and away we went. Afterwards I had people coming up and thanking me for explaining Jetpack in a way they could understand.</p>\n<blockquote><p>After that WordCamp, I wanted to speak at all WordCamps.</p></blockquote>\n<p>One of the many advantages of working for companies that have roots in the WordPress Community is that they allow me to attend, speak, and volunteer at WordCamps. I now have over 20 speaking opportunities under my belt, and have no want to stop for the unforeseeable future. I love having any opportunity to teach. I have now grown from only speaking at WordCamps to teaching beginner’s WordPress at our local community college, writing a book on beginner’s WordPress, and starting WP Kids Slack group to be a resource for KidsCamps and teaching our youth on the value and joys of WordPress. Now I am proud to say that I have taught WordPress to all ages from children to the baby boomers and it feels great! I have even had the opportunity to teach my own daughter WordPress and she loves going to the WordCamps. She has even helped others at Camps which for me is what it is all about. It is such a delight teaching Kids Camps and seeing their creativity blossom while building a site of their own. Plus, getting youth and teenagers interested in WordPress, coding, design, and more ensures that what we are building now, will only become better in the future.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: From Teaching Toddlers to Teaching the World\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=From%20Teaching%20Toddlers%20to%20Teaching%20the%20World&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fteaching-toddlers-teaching-world%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: From Teaching Toddlers to Teaching the World\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fteaching-toddlers-teaching-world%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fteaching-toddlers-teaching-world%2F&title=From+Teaching+Toddlers+to+Teaching+the+World\" rel=\"nofollow\" target=\"_blank\" title=\"Share: From Teaching Toddlers to Teaching the World\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/teaching-toddlers-teaching-world/&media=https://heropress.com/wp-content/uploads/2018/06/062817-min-150x150.jpg&description=From Teaching Toddlers to Teaching the World\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: From Teaching Toddlers to Teaching the World\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/teaching-toddlers-teaching-world/\" title=\"From Teaching Toddlers to Teaching the World\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/teaching-toddlers-teaching-world/\">From Teaching Toddlers to Teaching the World</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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, 28 Jun 2017 14: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Michele Butcher-Jones\";s:7:\"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\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 23 Jul 2017 07:40:17 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Sun, 23 Jul 2017 07:30:09 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20170722143346\";}','no'),(10327,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1500838815','no'),(10328,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1500795615','no'),(10329,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1500838815','no'),(10330,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2017/07/the-month-in-wordpress-june-2017/\'>The Month in WordPress: June 2017</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/members-2-0-adds-capability-registration-system-introduces-new-settings-screen-for-add-ons\'>WPTavern: Members 2.0 Adds Capability Registration System, Introduces New Settings Screen for Add-Ons</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-4-8-1-adds-a-dedicated-custom-html-widget\'>WPTavern: WordPress 4.8.1 Adds a Dedicated Custom HTML Widget</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/petition-to-re-license-react-has-been-escalated-to-facebooks-engineering-directors\'>WPTavern: Petition to Re-License React has been Escalated to Facebook’s Engineering Directors</a></li></ul></div>','no'),(10335,'_transient_timeout__woocommerce_helper_updates','1500838843','no'),(10336,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1500795643;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(10348,'_transient_timeout_wflginfl_00000000000000000000ffffb4bf8345','1500818259','no'),(10349,'_transient_wflginfl_00000000000000000000ffffb4bf8345','2','no'),(10352,'_transient_timeout_wflginfl_00000000000000000000ffff4def4e87','1500818298','no'),(10353,'_transient_wflginfl_00000000000000000000ffff4def4e87','2','no'),(10366,'_transient_timeout_wflginfl_00000000000000000000ffffc501603a','1500832674','no'),(10367,'_transient_wflginfl_00000000000000000000ffffc501603a','2','no'),(10370,'_transient_timeout_wflginfl_00000000000000000000ffff5fb46ed2','1500835580','no'),(10371,'_transient_wflginfl_00000000000000000000ffff5fb46ed2','2','no'),(10373,'_site_transient_timeout_theme_roots','1500822978','no'),(10374,'_site_transient_theme_roots','a:6:{s:7:\"salient\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";}','no'),(10377,'_site_transient_timeout_browser_0cda34c3b57f4e0a8eff18fa7fded319','1501426972','no'),(10378,'_site_transient_browser_0cda34c3b57f4e0a8eff18fa7fded319','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"53.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(10379,'_site_transient_timeout_community-events-6c0fe005f549e2f3880c35cd44ac91a5','1500865392','no'),(10380,'_site_transient_community-events-6c0fe005f549e2f3880c35cd44ac91a5','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"125.166.230.0\";}s:6:\"events\";a:0:{}}','no'),(10381,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1500833001','no'),(10382,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4353;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2487;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2355;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:2210;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1823;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1594;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1575;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1432;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1347;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1345;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1328;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1270;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1265;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1114;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1047;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1042;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:995;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:938;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:815;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:801;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:799;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:772;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:762;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:667;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:662;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:659;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:652;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:642;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:636;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:636;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:617;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:601;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:591;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:586;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:585;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:573;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:571;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:563;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:553;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:541;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:539;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:533;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:520;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:509;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:502;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:494;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:493;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:480;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:472;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:471;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:468;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:465;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:444;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:439;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:436;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:436;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:436;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:424;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:420;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:411;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:405;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:404;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:399;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:399;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:398;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:395;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:380;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:379;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:376;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:369;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:352;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:344;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:333;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:331;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:330;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:329;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:329;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:323;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:323;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:320;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:319;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:317;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:317;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:302;}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";i:298;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:292;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:291;}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";i:290;}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";i:288;}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";i:282;}s:6:\"author\";a:3:{s:4:\"name\";s:6:\"author\";s:4:\"slug\";s:6:\"author\";s:5:\"count\";i:282;}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";i:280;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:279;}s:7:\"adsense\";a:3:{s:4:\"name\";s:7:\"adsense\";s:4:\"slug\";s:7:\"adsense\";s:5:\"count\";i:278;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:276;}s:8:\"lightbox\";a:3:{s:4:\"name\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";i:274;}s:14:\"administration\";a:3:{s:4:\"name\";s:14:\"administration\";s:4:\"slug\";s:14:\"administration\";s:5:\"count\";i:265;}s:7:\"captcha\";a:3:{s:4:\"name\";s:7:\"captcha\";s:4:\"slug\";s:7:\"captcha\";s:5:\"count\";i:265;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:265;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:265;}}','no'),(10383,'_transient_timeout__woocommerce_helper_subscriptions','1500823149','no'),(10384,'_transient__woocommerce_helper_subscriptions','a:0:{}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=6815 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,2,'_edit_lock','1453617174:1'),(63,527,'_menu_item_type','custom'),(64,527,'_menu_item_menu_item_parent','544'),(65,527,'_menu_item_object_id','527'),(66,527,'_menu_item_object','custom'),(67,527,'_menu_item_target',''),(68,527,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(69,527,'_menu_item_xfn',''),(70,527,'_menu_item_url','#'),(71,528,'_menu_item_type','custom'),(72,528,'_menu_item_menu_item_parent','0'),(73,528,'_menu_item_object_id','528'),(74,528,'_menu_item_object','custom'),(75,528,'_menu_item_target',''),(76,528,'_menu_item_classes','a:2:{i:0;s:8:\"megamenu\";i:1;s:9:\"columns-4\";}'),(77,528,'_menu_item_xfn',''),(78,528,'_menu_item_url','#'),(79,529,'_menu_item_type','custom'),(80,529,'_menu_item_menu_item_parent','0'),(81,529,'_menu_item_object_id','529'),(82,529,'_menu_item_object','custom'),(83,529,'_menu_item_target',''),(84,529,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(85,529,'_menu_item_xfn',''),(86,529,'_menu_item_url','#'),(87,530,'_menu_item_type','custom'),(88,530,'_menu_item_menu_item_parent','528'),(89,530,'_menu_item_object_id','530'),(90,530,'_menu_item_object','custom'),(91,530,'_menu_item_target',''),(92,530,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(93,530,'_menu_item_xfn',''),(94,530,'_menu_item_url','#'),(95,531,'_menu_item_type','custom'),(96,531,'_menu_item_menu_item_parent','528'),(97,531,'_menu_item_object_id','531'),(98,531,'_menu_item_object','custom'),(99,531,'_menu_item_target',''),(100,531,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(101,531,'_menu_item_xfn',''),(102,531,'_menu_item_url','#'),(103,532,'_menu_item_type','custom'),(104,532,'_menu_item_menu_item_parent','531'),(105,532,'_menu_item_object_id','532'),(106,532,'_menu_item_object','custom'),(107,532,'_menu_item_target',''),(108,532,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(109,532,'_menu_item_xfn',''),(110,532,'_menu_item_url','#'),(111,533,'_menu_item_type','custom'),(112,533,'_menu_item_menu_item_parent','530'),(113,533,'_menu_item_object_id','533'),(114,533,'_menu_item_object','custom'),(115,533,'_menu_item_target',''),(116,533,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(117,533,'_menu_item_xfn',''),(118,533,'_menu_item_url','http://themenectar.com/demo/salient-frostwave/contact-alternative/'),(119,534,'_menu_item_type','custom'),(120,534,'_menu_item_menu_item_parent','530'),(121,534,'_menu_item_object_id','534'),(122,534,'_menu_item_object','custom'),(123,534,'_menu_item_target',''),(124,534,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(125,534,'_menu_item_xfn',''),(126,534,'_menu_item_url','http://themenectar.com/demo/salient-frostwave/home-basic/'),(127,535,'_menu_item_type','custom'),(128,535,'_menu_item_menu_item_parent','530'),(129,535,'_menu_item_object_id','535'),(130,535,'_menu_item_object','custom'),(131,535,'_menu_item_target',''),(132,535,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133,535,'_menu_item_xfn',''),(134,535,'_menu_item_url','http://themenectar.com/demo/salient-frostwave/home-portfolio-eye-candy/'),(135,536,'_menu_item_type','custom'),(136,536,'_menu_item_menu_item_parent','528'),(137,536,'_menu_item_object_id','536'),(138,536,'_menu_item_object','custom'),(139,536,'_menu_item_target',''),(140,536,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(141,536,'_menu_item_xfn',''),(142,536,'_menu_item_url','http://#'),(143,537,'_menu_item_type','custom'),(144,537,'_menu_item_menu_item_parent','531'),(145,537,'_menu_item_object_id','537'),(146,537,'_menu_item_object','custom'),(147,537,'_menu_item_target',''),(148,537,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(149,537,'_menu_item_xfn',''),(150,537,'_menu_item_url','#'),(151,538,'_menu_item_type','custom'),(152,538,'_menu_item_menu_item_parent','531'),(153,538,'_menu_item_object_id','538'),(154,538,'_menu_item_object','custom'),(155,538,'_menu_item_target',''),(156,538,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(157,538,'_menu_item_xfn',''),(158,538,'_menu_item_url','#'),(159,539,'_menu_item_type','custom'),(160,539,'_menu_item_menu_item_parent','530'),(161,539,'_menu_item_object_id','539'),(162,539,'_menu_item_object','custom'),(163,539,'_menu_item_target',''),(164,539,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(165,539,'_menu_item_xfn',''),(166,539,'_menu_item_url','#'),(167,540,'_menu_item_type','custom'),(168,540,'_menu_item_menu_item_parent','542'),(169,540,'_menu_item_object_id','540'),(170,540,'_menu_item_object','custom'),(171,540,'_menu_item_target',''),(172,540,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(173,540,'_menu_item_xfn',''),(174,540,'_menu_item_url','#'),(175,541,'_menu_item_type','custom'),(176,541,'_menu_item_menu_item_parent','542'),(177,541,'_menu_item_object_id','541'),(178,541,'_menu_item_object','custom'),(179,541,'_menu_item_target',''),(180,541,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(181,541,'_menu_item_xfn',''),(182,541,'_menu_item_url','#'),(183,542,'_menu_item_type','custom'),(184,542,'_menu_item_menu_item_parent','0'),(185,542,'_menu_item_object_id','542'),(186,542,'_menu_item_object','custom'),(187,542,'_menu_item_target',''),(188,542,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(189,542,'_menu_item_xfn',''),(190,542,'_menu_item_url','#'),(191,543,'_menu_item_type','custom'),(192,543,'_menu_item_menu_item_parent','0'),(193,543,'_menu_item_object_id','543'),(194,543,'_menu_item_object','custom'),(195,543,'_menu_item_target',''),(196,543,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(197,543,'_menu_item_xfn',''),(198,543,'_menu_item_url','#'),(199,544,'_menu_item_type','custom'),(200,544,'_menu_item_menu_item_parent','0'),(201,544,'_menu_item_object_id','544'),(202,544,'_menu_item_object','custom'),(203,544,'_menu_item_target',''),(204,544,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(205,544,'_menu_item_xfn',''),(206,544,'_menu_item_url','#'),(502,652,'_edit_last','1'),(503,652,'_nectar_slider_bg_type','image_bg'),(504,652,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2013/06/Header.jpg'),(505,652,'_nectar_media_upload_webm',''),(506,652,'_nectar_media_upload_mp4',''),(507,652,'_nectar_media_upload_ogv',''),(508,652,'_nectar_slider_preview_image',''),(509,652,'_nectar_slider_video_texture','on'),(510,652,'_nectar_slider_slide_bg_alignment','bottom'),(511,652,'_nectar_slider_slide_font_color','light'),(512,652,'_nectar_slider_heading','Punjab Youth Club ( HK)'),(513,652,'_nectar_slider_caption','Punjab Youth Club \r\nHong Kong'),(514,652,'_nectar_slider_link_type','full_slide_link'),(515,652,'_nectar_slider_button',''),(516,652,'_nectar_slider_button_url',''),(517,652,'_nectar_slider_button_style','solid_color'),(518,652,'_nectar_slider_button_color','primary-color'),(519,652,'_nectar_slider_button_2',''),(520,652,'_nectar_slider_button_url_2',''),(521,652,'_nectar_slider_button_style_2','solid_color'),(522,652,'_nectar_slider_button_color_2','primary-color'),(523,652,'_nectar_slider_entire_link','#'),(524,652,'_nectar_slider_video_popup',''),(525,652,'_nectar_slide_xpos_alignment','centered'),(526,652,'_nectar_slide_ypos_alignment','middle'),(527,652,'_nectar_slider_slide_custom_class',''),(528,652,'_nectar_slider_caption_background','off'),(529,652,'_nectar_slider_down_arrow','on'),(530,672,'_edit_last','1'),(531,672,'_nectar_slider_bg_type','image_bg'),(532,672,'_nectar_slider_image','http://themenectar.com/demo/salient/wp-content/uploads/2013/09/black-bg1.png'),(533,672,'_nectar_media_upload_webm',''),(534,672,'_nectar_media_upload_mp4',''),(535,672,'_nectar_media_upload_ogv',''),(536,672,'_nectar_slider_preview_image',''),(537,672,'_nectar_slider_video_texture','off'),(538,672,'_nectar_slider_slide_bg_alignment','center'),(539,672,'_nectar_slider_slide_font_color','light'),(540,672,'_nectar_slider_heading',''),(541,672,'_nectar_slider_caption','<img src=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/11/salient-ink-text.png\" alt=\"salient ink text\" />'),(542,672,'_nectar_slider_caption_background','off'),(543,672,'_nectar_slider_link_type','button_links'),(544,672,'_nectar_slider_button',''),(545,672,'_nectar_slider_button_url',''),(546,672,'_nectar_slider_button_style','solid_color'),(547,672,'_nectar_slider_button_color','primary-color'),(548,672,'_nectar_slider_button_2',''),(549,672,'_nectar_slider_button_url_2',''),(550,672,'_nectar_slider_button_style_2','solid_color'),(551,672,'_nectar_slider_button_color_2','primary-color'),(552,672,'_nectar_slider_entire_link',''),(553,672,'_nectar_slider_video_popup',''),(554,672,'_nectar_slide_xpos_alignment','centered'),(555,672,'_nectar_slide_ypos_alignment','middle'),(556,672,'_nectar_slider_slide_custom_class',''),(557,672,'_nectar_love','0'),(558,672,'_nectar_slider_down_arrow','on'),(632,2057,'_edit_last','1'),(633,2057,'_nectar_slider_bg_type','image_bg'),(634,2057,'_nectar_slider_image','http://themenectar.com/demo/salient/wp-content/uploads/2013/09/black-bg1.png'),(635,2057,'_nectar_media_upload_webm',''),(636,2057,'_nectar_media_upload_mp4',''),(637,2057,'_nectar_media_upload_ogv',''),(638,2057,'_nectar_slider_preview_image',''),(639,2057,'_nectar_slider_video_texture','off'),(640,2057,'_nectar_slider_slide_bg_alignment','center'),(641,2057,'_nectar_slider_slide_font_color','light'),(642,2057,'_nectar_slider_heading',''),(643,2057,'_nectar_slider_caption','We\'re proud to announce weather app v1.0 is \nout and ready to download. Grab a copy and \nnever be unprepared for the weather again!'),(644,2057,'_nectar_slider_caption_background','on'),(645,2057,'_nectar_slider_down_arrow','off'),(646,2057,'_nectar_slider_link_type','button_links'),(647,2057,'_nectar_slider_button','Download App'),(648,2057,'_nectar_slider_button_url',''),(649,2057,'_nectar_slider_button_style','transparent'),(650,2057,'_nectar_slider_button_color','primary-color'),(651,2057,'_nectar_slider_button_2','View User Guide'),(652,2057,'_nectar_slider_button_url_2',''),(653,2057,'_nectar_slider_button_style_2','solid_color'),(654,2057,'_nectar_slider_button_color_2','primary-color'),(655,2057,'_nectar_slider_entire_link',''),(656,2057,'_nectar_slider_video_popup',''),(657,2057,'_nectar_slide_xpos_alignment','right'),(658,2057,'_nectar_slide_ypos_alignment','middle'),(659,2057,'_nectar_slider_slide_custom_class',''),(762,743,'_edit_last','1'),(763,743,'_wp_page_template','default'),(764,743,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(765,743,'nectar-metabox-portfolio-display-sortable','off'),(766,743,'_nectar_header_bg',''),(767,743,'_nectar_header_parallax','off'),(768,743,'_nectar_header_bg_height',''),(769,743,'_nectar_header_title',''),(770,743,'_nectar_header_subtitle',''),(771,743,'_wpb_vc_js_status','true'),(772,743,'_wpb_vc_js_interface_version','2'),(773,743,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(774,743,'_nectar_page_header_alignment','left'),(775,743,'_nectar_header_bg_color',''),(776,743,'_nectar_header_font_color',''),(948,65,'_edit_last','1'),(949,65,'_nectar_portfolio_custom_thumbnail',''),(950,65,'_nectar_video_m4v',''),(951,65,'_nectar_video_ogv',''),(952,65,'_nectar_video_poster',''),(953,65,'_nectar_video_embed',''),(954,65,'_nectar_love','0'),(955,65,'_nectar_video_height',''),(956,65,'_nectar_portfolio_extra_content',''),(957,65,'_wpb_vc_js_status','false'),(958,65,'_wpb_vc_js_interface_version','0'),(959,65,'_nectar_portfolio_item_layout','disabled'),(960,65,'_nectar_hide_featured','off'),(961,65,'_portfolio_item_masonry_sizing','wide'),(962,65,'_nectar_external_project_url',''),(963,65,'nectar-metabox-portfolio-parent-override','default'),(964,65,'_nectar_project_excerpt',''),(965,65,'_nectar_project_accent_color','#cdc18d'),(966,65,'_nectar_header_bg',''),(967,65,'_nectar_header_parallax','off'),(968,65,'_nectar_header_bg_height',''),(969,65,'_nectar_header_bg_color',''),(970,65,'_nectar_header_font_color',''),(971,70,'_edit_last','1'),(972,70,'_nectar_video_m4v',''),(973,70,'_nectar_video_ogv',''),(974,70,'_nectar_video_poster',''),(975,70,'_nectar_video_embed','<iframe src=\"http://player.vimeo.com/video/63987795\" width=\"720\" height=\"405\" frameborder=\"0\" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> '),(976,70,'_nectar_love','0'),(977,70,'_nectar_video_height',''),(978,70,'_nectar_portfolio_custom_thumbnail',''),(979,70,'_nectar_portfolio_extra_content','[vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"25\" vertically_center_columns=\"true\"][vc_column width=\"1/2\" enable_animation=\"true\" animation=\"flip-in\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_column_text]<img class=\"alignnone size-full wp-image-932\" alt=\"black-box\" src=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/no-portfolio-item.jpg\" width=\"800\" height=\"480\" />[/vc_column_text][/vc_column][vc_column width=\"1/2\" enable_animation=\"true\" animation=\"flip-in\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_column_text]<img class=\"alignnone size-full wp-image-934\" alt=\"black-box3\" src=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/no-portfolio-item.jpg\" width=\"800\" height=\"463\" />[/vc_column_text][/vc_column][/vc_row][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" bottom_padding=\"20\" top_padding=\"40\"][vc_column width=\"1/1\"][vc_column_text]\n<h4>The Key Aspects We Covered</h4>\n[/vc_column_text][divider line_type=\"No Line\" custom_height=\"5\"][tabbed_section][tab title=\"Discovery\" id=\"t1\"][vc_column_text] Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam rhoncus adipiscing malesuada. Ut ligula dui, condimentum pellentesque auctor at, eleifend eu eros. Cras viverra gravida erat egestas imperdiet. Pellentesque commodo, ante eget feugiat feugiat, lectus nunc mollis nisl, ac lobortis nisl enim vel tortor. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam rhoncus adipiscing malesuada. Ut ligula dui, condimentum pellentesque auctor at, eleifend eu eros. Cras viverra gravida erat egestas imperdiet. Pellentesque commodo, ante eget feugiat feugiat, lectus nunc mollis nisl, ac lobortis nisl enim vel tortor. [/vc_column_text][/tab][tab title=\"Content Creation\" id=\"t2\"][vc_column_text] Nam aliquet tincidunt rutrum. Maecenas accumsan libero ac sem molestie elementum. Vivamus sodales, tortor eu luctus tempor, turpis enim commodo tortor, condimentum ultricies nibh risus id ipsum. Nam nec sem ante, quis cursus enim. Morbi lacinia mollis augue vitae dapibus. eleifend eu eros Nam aliquet tincidunt rutrum. Maecenas accumsan libero ac sem molestie elementum. Vivamus sodales, tortor eu luctus tempor, turpis enim commodo tortor, condimentum ultricies nibh risus id ipsum. Nam nec sem ante, quis cursus enim. Morbi lacinia mollis augue vitae dapibus. eleifend eu eros[/vc_column_text][/tab][tab title=\"Branding\" id=\"t3\"][vc_column_text]Ut ipsum ligula, adipiscing et rutrum eget, vehicula nec ligula. In in ligula nec ligula adipiscing cursus. Duis condimentum elit eu mi sodales facilisis. Vestibulum erat risus, mollis non sagittis ac, scelerisque ac lectus. Praesent ornare augue sit amet lectus porttitor auctor. Adipiscing et rutrum eget, vehicula nec ligula. In in ligula nec ligula adipiscing cursus. Duis condimentum elit eu mi sodales facilisis. quis cursus enim. Morbi lacinia mollis augue vitae dapibus. eleifend eu ero[/vc_column_text][/tab][tab title=\"Social Reach\" id=\"t4\"][vc_column_text]Ut ipsum ligula, adipiscing et rutrum eget, vehicula nec ligula. In in ligula nec ligula adipiscing cursus. Duis condimentum elit eu mi sodales facilisis. Vestibulum erat risus, mollis non sagittis ac, scelerisque ac lectus. Praesent ornare augue sit amet lectus porttitor auctor. Adipiscing et rutrum eget, vehicula nec ligula. In in ligula nec ligula adipiscing cursus. Duis condimentum elit eu mi sodales facilisis. quis cursus enim. Morbi lacinia mollis augue vitae dapibus. eleifend eu ero[/vc_column_text][/tab][/tabbed_section][/vc_column][/vc_row]'),(980,70,'_wpb_vc_js_status','true'),(981,70,'_wpb_vc_js_interface_version','2'),(982,70,'_nectar_portfolio_item_layout','disabled'),(983,70,'_nectar_hide_featured','off'),(984,70,'_portfolio_item_masonry_sizing','regular'),(985,70,'_nectar_gallery_slider','off'),(986,70,'_nectar_external_project_url',''),(987,70,'nectar-metabox-portfolio-parent-override','default'),(988,70,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(989,70,'_nectar_project_excerpt',''),(990,70,'_nectar_project_accent_color','#9159a9'),(991,70,'_nectar_header_bg',''),(992,70,'_nectar_header_parallax','off'),(993,70,'_nectar_header_bg_height','400'),(994,70,'_nectar_header_bg_color',''),(995,70,'_nectar_header_font_color',''),(996,72,'_edit_last','1'),(997,72,'_nectar_portfolio_custom_thumbnail',''),(998,72,'_nectar_video_m4v',''),(999,72,'_nectar_video_ogv',''),(1000,72,'_nectar_video_poster',''),(1001,72,'_nectar_video_embed',''),(1002,72,'_nectar_love','0'),(1003,72,'_nectar_video_height',''),(1004,72,'_nectar_portfolio_extra_content',''),(1005,72,'_nectar_gallery_slider','off'),(1006,72,'_nectar_media_upload','http://localhost/wordpress-3-6/wp-content/uploads/2013/05/spacebound.ogv'),(1007,72,'_nectar_media_upload_poster',''),(1008,72,'_nectar_portfolio_item_layout','disabled'),(1009,72,'_nectar_hide_featured','off'),(1010,72,'_portfolio_item_masonry_sizing','regular'),(1011,72,'_nectar_external_project_url',''),(1012,72,'nectar-metabox-portfolio-parent-override','default'),(1013,72,'_wpb_vc_js_status','false'),(1014,72,'_wpb_vc_js_interface_version','0'),(1015,72,'_nectar_project_excerpt',''),(1016,72,'_nectar_project_accent_color','#31b500'),(1017,72,'_nectar_header_bg',''),(1018,72,'_nectar_header_parallax','on'),(1019,72,'_nectar_header_bg_height','300'),(1020,72,'_nectar_header_bg_color','#616b6d'),(1021,72,'_nectar_header_font_color','#ffffff'),(1022,76,'_edit_last','1'),(1023,76,'_nectar_portfolio_custom_thumbnail',''),(1024,76,'_nectar_video_m4v',''),(1025,76,'_nectar_video_ogv',''),(1026,76,'_nectar_video_poster',''),(1027,76,'_nectar_video_embed',''),(1028,76,'_nectar_love','0'),(1029,76,'_nectar_portfolio_extra_content',''),(1030,76,'_nectar_video_height',''),(1031,76,'_wpb_vc_js_status','false'),(1032,76,'_wpb_vc_js_interface_version','0'),(1033,76,'_nectar_portfolio_item_layout','disabled'),(1034,76,'_nectar_hide_featured','off'),(1035,76,'_portfolio_item_masonry_sizing','regular'),(1036,76,'_nectar_external_project_url',''),(1037,76,'nectar-metabox-portfolio-parent-override','default'),(1038,76,'_nectar_project_excerpt',''),(1039,76,'_nectar_project_accent_color','#eab897'),(1040,76,'_nectar_header_bg',''),(1041,76,'_nectar_header_parallax','off'),(1042,76,'_nectar_header_bg_height',''),(1043,76,'_nectar_header_bg_color',''),(1044,76,'_nectar_header_font_color',''),(1045,629,'_edit_last','1'),(1046,629,'_nectar_portfolio_item_layout','enabled'),(1047,629,'_nectar_portfolio_custom_thumbnail',''),(1048,629,'_nectar_hide_featured','on'),(1049,629,'_nectar_gallery_slider','off'),(1050,629,'_nectar_portfolio_extra_content','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider full_width=\"true\" desktop_swipe=\"true\" location=\"Lowpoly\" slider_height=\"550\" bullet_navigation=\"true\" min_slider_height=\"300\" flexible_slider_height=\"true\" fullscreen=\"true\"][/vc_column][/vc_row][full_width_section bg_pos=\"Left Top\" bg_repeat=\"No-Repeat\" text_color=\"dark\" top_padding=\"90\" bottom_padding=\"90\" background_color=\"#ffffff\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 class=\"light\" style=\"text-align: center;\"><span style=\"color: #27ccc0;\">The GeoWolf App Was One Of Our Greatest Achievements</span></h2>\n<h4 class=\"light\" style=\"text-align: center;\">Phasellus enim libero, blandit vel sapien vitae, condimentum ultricies magna et. Quisque euismod\nlobortis aliquam. Aliquam in tortor enim. orci ut et lobortis aliquam. Aliquam in tortor enim.</h4>\n[/vc_column_text][/vc_column][/full_width_section][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"90\" bottom_padding=\"90\"][vc_column width=\"1/2\"][image_with_animation animation=\"Fade In From Left\" image_url=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/09/geowofl-device-1.png\" img_link_target=\"_self\"] [/image_with_animation][/vc_column][vc_column width=\"1/2\" enable_animation=\"true\" animation=\"flip-in\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_column_text]\n<h2>Built With iOS In Mind</h2>\nSalient was built from the ground up with responsive design in mind rather than it being an after thought. Your users will appreciate the difference of its carefully planned layouts and browse your site with ease! In addition, Retina support will guarantee your site displays as crisp as possible on the latest devices.\n\n[button color=\"accent-color\" size=\"large\" url=\"#\" text=\"Continue The Tour\" color_override=\"#27ccc0\"][/vc_column_text][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" bg_color=\"#ffffff\" text_color=\"dark\" text_align=\"left\" top_padding=\"90\" bottom_padding=\"0\"][vc_column width=\"1/2\" enable_animation=\"true\" animation=\"flip-in\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_column_text]\n<h2>Perfect On All Devices</h2>\nSalient gives you an arsenal of beautifully crafted elements and pre-defined structures that will bring life to your prject. Now with more power than ever, you have control over advanced options such as unlimited full-width &amp; parallax sections + multiple accent colors.\n\nAll of the elements in this theme were carefully crafted with a high attention to detail to ensure a consistent &amp; high-end design. Unlock your contents full potential and start getting noticed today!\n\n[button color=\"Accent-Color\" color_override=\"#27ccc0\" url=\"#\" size=\"large\" text=\"Show Me The Goods\"][/vc_column_text][/vc_column][vc_column width=\"1/2\"][image_with_animation animation=\"Fade In From Right\" image_url=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/09/geowolf-device-2.png\"] [/image_with_animation][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"light\" text_align=\"center\" top_padding=\"120\" bottom_padding=\"120\" enable_video_color_overlay=\"true\" video_overlay_color=\"#1fd9fb\" bg_color=\"#020202\"][vc_column width=\"1/1\"][vc_column_text]\n<h1>Ready To Stand Out?</h1>\n[divider line_type=\"No Line\" custom_height=\"30\"]\n\n[button color=\"See-Through\" size=\"large\" url=\"http://themeforest.net/item/salient-responsive-multipurpose-theme/4363266\" text=\"Buy Salient Now\" image=\"default-arrow\"]  [button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/contact-alternative/\" text=\"Reach Out To Us\" image=\"default-arrow\"]\n\n[/vc_column_text][/vc_column][/vc_row]'),(1051,629,'_nectar_video_m4v',''),(1052,629,'_nectar_video_ogv',''),(1053,629,'_nectar_video_height',''),(1054,629,'_nectar_video_poster',''),(1055,629,'_nectar_video_embed',''),(1056,629,'_nectar_love','1'),(1057,629,'_portfolio_item_masonry_sizing','regular'),(1058,629,'_nectar_external_project_url',''),(1059,629,'nectar-metabox-portfolio-parent-override','default'),(1060,629,'_wpb_vc_js_status','true'),(1061,629,'_wpb_vc_js_interface_version','2'),(1062,629,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(1063,629,'_nectar_project_excerpt',''),(1064,629,'_nectar_project_accent_color',''),(1065,629,'_nectar_header_bg',''),(1066,629,'_nectar_header_parallax','off'),(1067,629,'_nectar_header_bg_height','220'),(1068,629,'_nectar_header_bg_color','#4f3a3b'),(1069,629,'_nectar_header_font_color',''),(1070,654,'_edit_last','1'),(1071,654,'_nectar_portfolio_item_layout','enabled'),(1072,654,'_nectar_portfolio_custom_thumbnail',''),(1073,654,'_nectar_hide_featured','on'),(1074,654,'_nectar_gallery_slider','off'),(1075,654,'_nectar_portfolio_extra_content','[full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"Dark\" top_padding=\"90\" bottom_padding=\"90\" background_color=\"#fafafa\"][one_half][vc_column_text]\n<h2>A Mobile Project</h2>\nIn et massa a massa egestas suscipit tincidunt ut est. Curabitur rutrum faucibus elit, at convallis diam mattis eget. Aliquam scelerisque erat a felis dignissim, a consequat tortor rhoncus. Nullam vulputate nibh at nisi consectetur, nec rutrum nunc iaculis. Donec at aliquam felis. Fusce quis pellentesque odio. Nulla porttitor neque vitae ligula luctus imperdiet molestie at dui. Mauris.[/vc_column_text][/one_half][one_half_last][vc_column_text]\n<h2>Our Approach</h2>\nIn et massa a massa egestas suscipit tincidunt ut est. Curabitur rutrum faucibus elit, at convallis diam mattis eget. Aliquam scelerisque erat a felis dignissim, a consequat tortor rhoncus. Nullam vulputate nibh at nisi consectetur, nec rutrum nunc iaculis. Donec at aliquam felis. Fusce quis pellentesque odio. Nulla porttitor neque vitae ligula luctus imperdiet molestie at dui. Mauris.[/vc_column_text][/one_half_last][/full_width_section][vc_row type=\"full_width_background\" bg_image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/09/weather-app13.png\" bg_position=\"center center\" bg_repeat=\"no-repeat\" bg_color=\"#212121\" text_color=\"light\" text_align=\"left\" top_padding=\"130\" bottom_padding=\"130\"][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][image_with_animation animation=\"Grow In\" image_url=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/09/weather-icon-11.png\"] [/image_with_animation][/vc_column_inner][vc_column_inner width=\"3/4\"][vc_column_text]\n<h2>Custom Icon Design</h2>\nPhasellus enim libero, blandit vel sapien vitae, condim entum ultricies magna et. Quisque euismod orci ut et ipsum primis lobortis aliquam. Aliquam in tortor enim.[/vc_column_text][/vc_column_inner][/vc_row_inner][divider line_type=\"No Line\" custom_height=\"20\"][vc_row_inner][vc_column_inner width=\"1/4\"][image_with_animation animation=\"Grow In\" image_url=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/09/weather-icon-21.png\"] [/image_with_animation][/vc_column_inner][vc_column_inner width=\"3/4\"][vc_column_text]\n<h2>User Interface Design</h2>\nPhasellus enim libero, blandit vel sapien vitae, condim entum ultricies magna et. Quisque euismod orci ut et ipsum primis lobortis aliquam. Aliquam in tortor enim.[/vc_column_text][/vc_column_inner][/vc_row_inner][divider line_type=\"No Line\" custom_height=\"20\"][vc_row_inner][vc_column_inner width=\"1/4\"][image_with_animation animation=\"Grow In\" image_url=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/09/weather-icon-31.png\"] [/image_with_animation][/vc_column_inner][vc_column_inner width=\"3/4\"][vc_column_text]\n<h2>User Experience Design</h2>\nPhasellus enim libero, blandit vel sapien vitae, condim entum ultricies magna et. Quisque euismod orci ut et ipsum primis lobortis aliquam. Aliquam in tortor enim.[/vc_column_text][/vc_column_inner][/vc_row_inner][divider line_type=\"No Line\" custom_height=\"20\"][vc_row_inner][vc_column_inner width=\"1/4\"][image_with_animation animation=\"Grow In\" image_url=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/09/weather-icon-41.png\"] [/image_with_animation][/vc_column_inner][vc_column_inner width=\"3/4\"][vc_column_text]\n<h2>Responsive Web Design</h2>\nPhasellus enim libero, blandit vel sapien vitae, condim entum ultricies magna et. Quisque euismod orci ut et ipsum primis lobortis aliquam. Aliquam in tortor enim.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"5\" bottom_padding=\"5\" background_color=\"#161616\" type=\"full_width_content\" text_align=\"left\" image_url=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/09/line1.jpg\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"90\" bottom_padding=\"90\" background_color=\"#111111\" type=\"full_width_background\" text_align=\"left\"][one_fourth][milestone color=\"Extra-color-1\" number=\"12\" subject=\"Team Members\"][/one_fourth][one_fourth][milestone color=\"Extra-color-1\" number=\"145\" subject=\"Days to make\"][/one_fourth][one_fourth][milestone color=\"Accent-Color\" number=\"36\" subject=\"Git Branches\" symbol_position=\"after\"][/one_fourth][one_fourth_last][milestone color=\"Accent-Color\" number=\"759\" subject=\"Current Downloads\" symbol_position=\"after\"][/one_fourth_last][/full_width_section][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/1\"][nectar_slider full_width=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Weather App\" slider_height=\"650\" loop=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"center\" bottom_padding=\"60\" top_padding=\"60\"][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][social_buttons nectar_love=\"true\" facebook=\"true\" twitter=\"true\" pinterest=\"true\"][vc_column_text]\n<p style=\"text-align: center;\">If you like this project, please take a second\nto share with the world so weather app can grow!\n\n[/vc_column_text][/vc_column][/vc_row]'),(1076,654,'_nectar_video_m4v',''),(1077,654,'_nectar_video_ogv',''),(1078,654,'_nectar_video_height',''),(1079,654,'_nectar_video_poster',''),(1080,654,'_nectar_video_embed',''),(1081,654,'_nectar_love','1'),(1082,654,'_portfolio_item_masonry_sizing','wide_tall'),(1083,654,'_nectar_external_project_url',''),(1084,654,'nectar-metabox-portfolio-parent-override','default'),(1085,654,'_wpb_vc_js_status','true'),(1086,654,'_wpb_vc_js_interface_version','2'),(1087,654,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(1088,654,'_nectar_project_excerpt',''),(1089,654,'_nectar_project_accent_color','#27cbc0'),(1090,654,'_nectar_header_bg',''),(1091,654,'_nectar_header_parallax','on'),(1092,654,'_nectar_header_bg_height',''),(1093,654,'_nectar_header_bg_color','#1e1e1e'),(1094,654,'_nectar_header_font_color',''),(1095,1242,'_edit_last','1'),(1096,1242,'_nectar_love','14'),(1097,1242,'_nectar_gallery_slider','off'),(1098,1242,'_nectar_quote','If you wish to make an apple pie from scratch, you must first invent the universe.'),(1099,1242,'_nectar_link',''),(1100,1242,'_nectar_video_m4v',''),(1101,1242,'_nectar_video_ogv',''),(1102,1242,'_nectar_video_poster',''),(1103,1242,'_nectar_video_embed',''),(1104,1242,'_nectar_audio_mp3',''),(1105,1242,'_nectar_audio_ogg',''),(1106,1242,'_edit_last','1'),(1107,1242,'_nectar_love','14'),(1108,1242,'_nectar_gallery_slider','off'),(1109,1242,'_nectar_quote','If you wish to make an apple pie from scratch, you must first invent the universe.'),(1110,1242,'_nectar_link',''),(1111,1242,'_nectar_video_m4v',''),(1112,1242,'_nectar_video_ogv',''),(1113,1242,'_nectar_video_poster',''),(1114,1242,'_nectar_video_embed',''),(1115,1242,'_nectar_audio_mp3',''),(1116,1242,'_nectar_audio_ogg',''),(1117,1251,'_edit_last','1'),(1118,1251,'_nectar_love','33'),(1119,1251,'_nectar_gallery_slider','off'),(1120,1251,'_nectar_quote',''),(1121,1251,'_nectar_link',''),(1122,1251,'_nectar_video_m4v',''),(1123,1251,'_nectar_video_ogv',''),(1124,1251,'_nectar_video_poster',''),(1125,1251,'_nectar_video_embed',''),(1126,1251,'_nectar_audio_mp3',''),(1127,1251,'_nectar_audio_ogg',''),(1128,1251,'_wp_old_slug','spacebound'),(1129,1251,'_edit_last','1'),(1130,1251,'_nectar_love','33'),(1131,1251,'_nectar_gallery_slider','off'),(1132,1251,'_nectar_quote',''),(1133,1251,'_nectar_link',''),(1134,1251,'_nectar_video_m4v',''),(1135,1251,'_nectar_video_ogv',''),(1136,1251,'_nectar_video_poster',''),(1137,1251,'_nectar_video_embed',''),(1138,1251,'_nectar_audio_mp3',''),(1139,1251,'_nectar_audio_ogg',''),(1140,1251,'_wp_old_slug','spacebound'),(1141,1251,'_wpb_vc_js_status','false'),(1142,1251,'_wpb_vc_js_interface_version','0'),(1143,1251,'_nectar_header_bg',''),(1144,1251,'_nectar_header_parallax','off'),(1145,1251,'_nectar_header_bg_height',''),(1146,1251,'_nectar_header_bg_color',''),(1147,1251,'_nectar_header_font_color',''),(1148,1829,'_edit_last','1'),(1149,1829,'_wpb_vc_js_status','true'),(1150,1829,'_wpb_vc_js_interface_version','2'),(1151,1829,'_nectar_portfolio_extra_content','[vc_row type=\"full_width_content\" vertically_center_columns=\"true\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"light\" text_align=\"left\"][vc_column width=\"1/2\" animation=\"none\" column_padding=\"no-extra-padding\" background_color=\"#151611\" background_color_opacity=\"1\"][vc_column_text]<iframe src=\"http://player.vimeo.com/video/23711782?title=0&amp;byline=0&amp;portrait=0&amp;color=ffffff&amp;autoplay=1&amp;loop=1\" height=\"309\" width=\"549\" allowfullscreen=\"\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][vc_column width=\"1/2\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"flip-in\" column_padding=\"no-extra-padding\"][vc_column_text]\n<h2>A Project By Pedro Conti</h2>\n[divider line_type=\"No Line\" custom_height=\"15\"]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer lorem quam, adipiscing condimentum tristique vel, eleifend sed turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer lorem quam, adipiscing condimentum tristique vel, eleifend sed turpis.\n\n[button open_new_tab=\"true\" color=\"see-through\" image=\"default-arrow\" size=\"large\" url=\"www.pedroconti.com/\" text=\"Check out Pedro\'s Work\" color_override=\"\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"5\" bottom_padding=\"5\" vertically_center_columns=\"true\" bg_color=\"#303030\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"no-extra-padding\" background_color=\"#303030\" background_color_opacity=\"1\" centered_text=\"true\"][image_with_animation image_url=\"2293\" animation=\"Fade In\" img_link_target=\"_self\"][/vc_column][/vc_row]'),(1152,1829,'_nectar_portfolio_item_layout','enabled'),(1153,1829,'_nectar_portfolio_custom_thumbnail',''),(1154,1829,'_nectar_hide_featured','on'),(1155,1829,'_portfolio_item_masonry_sizing','wide_tall'),(1156,1829,'_nectar_external_project_url',''),(1157,1829,'nectar-metabox-portfolio-parent-override','default'),(1158,1829,'_nectar_project_excerpt',''),(1159,1829,'_nectar_project_accent_color','#50b1ce'),(1160,1829,'_nectar_header_bg',''),(1161,1829,'_nectar_header_parallax','off'),(1162,1829,'_nectar_header_bg_height','570'),(1163,1829,'_nectar_header_bg_color','#020202'),(1164,1829,'_nectar_header_font_color',''),(1165,1829,'_nectar_video_m4v',''),(1166,1829,'_nectar_video_ogv',''),(1167,1829,'_nectar_video_height',''),(1168,1829,'_nectar_video_poster',''),(1169,1829,'_nectar_video_embed',''),(1170,1829,'_nectar_love','1'),(1171,1832,'_edit_last','1'),(1172,1832,'_wpb_vc_js_status','false'),(1173,1832,'_wpb_vc_js_interface_version','2'),(1174,1832,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][image_with_animation image_url=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/no-portfolio-item.jpg\" animation=\"Fade In\" img_link_target=\"_self\"][/vc_column][/vc_row]'),(1175,1832,'_nectar_portfolio_item_layout','disabled'),(1176,1832,'_nectar_portfolio_custom_thumbnail',''),(1177,1832,'_nectar_hide_featured','on'),(1178,1832,'_portfolio_item_masonry_sizing','regular'),(1179,1832,'_nectar_external_project_url',''),(1180,1832,'nectar-metabox-portfolio-parent-override','default'),(1181,1832,'_nectar_project_excerpt',''),(1182,1832,'_nectar_project_accent_color','#14e2ca'),(1183,1832,'_nectar_header_bg',''),(1184,1832,'_nectar_header_parallax','off'),(1185,1832,'_nectar_header_bg_height','350'),(1186,1832,'_nectar_header_bg_color','#020202'),(1187,1832,'_nectar_header_font_color',''),(1188,1832,'_nectar_video_m4v',''),(1189,1832,'_nectar_video_ogv',''),(1190,1832,'_nectar_video_height',''),(1191,1832,'_nectar_video_poster',''),(1192,1832,'_nectar_video_embed',''),(1193,1832,'_nectar_love','1'),(1194,1835,'_edit_last','1'),(1195,1835,'_wpb_vc_js_status','true'),(1196,1835,'_wpb_vc_js_interface_version','2'),(1197,1835,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][image_with_animation image_url=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/no-portfolio-item.jpg\" animation=\"Flip In\" img_link_target=\"_self\"][/vc_column][/vc_row]'),(1198,1835,'_nectar_portfolio_item_layout','disabled'),(1199,1835,'_nectar_portfolio_custom_thumbnail',''),(1200,1835,'_nectar_hide_featured','on'),(1201,1835,'_portfolio_item_masonry_sizing','regular'),(1202,1835,'_nectar_external_project_url',''),(1203,1835,'nectar-metabox-portfolio-parent-override','default'),(1204,1835,'_nectar_project_excerpt',''),(1205,1835,'_nectar_project_accent_color','#9b64c3'),(1206,1835,'_nectar_header_bg',''),(1207,1835,'_nectar_header_parallax','off'),(1208,1835,'_nectar_header_bg_height',''),(1209,1835,'_nectar_header_bg_color',''),(1210,1835,'_nectar_header_font_color',''),(1211,1835,'_nectar_video_m4v',''),(1212,1835,'_nectar_video_ogv',''),(1213,1835,'_nectar_video_height',''),(1214,1835,'_nectar_video_poster',''),(1215,1835,'_nectar_video_embed',''),(1216,1835,'_nectar_love','0'),(1217,1838,'_edit_last','1'),(1218,1838,'_wpb_vc_js_status','false'),(1219,1838,'_wpb_vc_js_interface_version','2'),(1220,1838,'_nectar_portfolio_extra_content','[video poster=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/03/bigBuck.jpg\" ogg=\"http://themenectar.com/demo/salient/video/big_buck_bunny.ogg\" mp4=\"http://themenectar.com/demo/salient/video/big_buck_bunny.mp4\" ]'),(1221,1838,'_nectar_portfolio_item_layout','disabled'),(1222,1838,'_nectar_portfolio_custom_thumbnail',''),(1223,1838,'_nectar_hide_featured','on'),(1224,1838,'_portfolio_item_masonry_sizing','regular'),(1225,1838,'_nectar_external_project_url',''),(1226,1838,'nectar-metabox-portfolio-parent-override','default'),(1227,1838,'_nectar_project_excerpt',''),(1228,1838,'_nectar_project_accent_color','#f3825b'),(1229,1838,'_nectar_header_bg',''),(1230,1838,'_nectar_header_parallax','on'),(1231,1838,'_nectar_header_bg_height','300'),(1232,1838,'_nectar_header_bg_color','#616b6d'),(1233,1838,'_nectar_header_font_color','#ffffff'),(1234,1838,'_nectar_video_m4v',''),(1235,1838,'_nectar_video_ogv',''),(1236,1838,'_nectar_video_height',''),(1237,1838,'_nectar_video_poster',''),(1238,1838,'_nectar_video_embed',''),(1239,1838,'_nectar_love','1'),(1263,1851,'_edit_last','1'),(1264,1851,'_wpb_vc_js_status','true'),(1265,1851,'_wpb_vc_js_interface_version','2'),(1266,1851,'_nectar_portfolio_extra_content','[vc_row][vc_column][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2860,2859,2858,2857,2856,2855,2854,2853,2852,2851,2850,2849,2848,2847,2846,2845,2861,2844,2843,2842,2841,2840,2839,2838,2837,2836,2835,2834,2833,2832,2831,2830,2829,2828,2827,2826,2825,2824,2823,2822,2821,2820,2819,2818,3459,3458,3461,3464,3465,3457,3447,3445,3434\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row]'),(1267,1851,'_nectar_portfolio_item_layout','enabled'),(1268,1851,'_nectar_portfolio_custom_thumbnail','http://punjabyouthclub.com/wp-content/uploads/2015/07/mann035.jpg'),(1269,1851,'_nectar_hide_featured','off'),(1270,1851,'_portfolio_item_masonry_sizing','wide'),(1271,1851,'_nectar_external_project_url',''),(1272,1851,'nectar-metabox-portfolio-parent-override','default'),(1273,1851,'_nectar_project_excerpt',''),(1274,1851,'_nectar_project_accent_color','#8a6f7e'),(1275,1851,'_nectar_header_bg',''),(1276,1851,'_nectar_header_parallax','off'),(1277,1851,'_nectar_header_bg_height',''),(1278,1851,'_nectar_header_bg_color',''),(1279,1851,'_nectar_header_font_color',''),(1280,1851,'_nectar_video_m4v',''),(1281,1851,'_nectar_video_ogv',''),(1282,1851,'_nectar_video_height',''),(1283,1851,'_nectar_video_poster',''),(1284,1851,'_nectar_video_embed',''),(1285,1851,'_nectar_love','1'),(1372,82,'_edit_last','1'),(1373,82,'_nectar_quote',''),(1374,82,'_nectar_link',''),(1375,82,'_nectar_video_m4v',''),(1376,82,'_nectar_video_ogv',''),(1377,82,'_nectar_video_poster',''),(1378,82,'_nectar_video_embed',''),(1379,82,'_nectar_audio_mp3','http://themenectar.com/demo/salient/audio/the_dark_world.mp3'),(1380,82,'_nectar_audio_ogg','http://themenectar.com/demo/salient/audio/the_dark_world.ogg'),(1381,82,'_nectar_love','128'),(1382,82,'_nectar_gallery_slider','off'),(1383,84,'_edit_last','1'),(1384,84,'_nectar_quote',''),(1385,84,'_nectar_link',''),(1386,84,'_nectar_video_m4v','http://themenectar.com/demo/salient/video/big_buck_bunny.mp4'),(1387,84,'_nectar_video_ogv','http://themenectar.com/demo/salient/video/big_buck_bunny.ogg'),(1388,84,'_nectar_video_poster','http://themenectar.com/demo/salient/wp-content/uploads/2013/03/bigBuck.jpg'),(1389,84,'_nectar_video_embed',''),(1390,84,'_nectar_audio_mp3',''),(1391,84,'_nectar_audio_ogg',''),(1392,84,'_nectar_love','838'),(1393,84,'_thumbnail_id','182'),(1394,108,'_edit_last','1'),(1395,108,'_nectar_quote',''),(1396,108,'_nectar_link',''),(1397,108,'_nectar_video_m4v',''),(1398,108,'_nectar_video_ogv',''),(1399,108,'_nectar_video_poster',''),(1400,108,'_nectar_video_embed','<iframe src=\"http://player.vimeo.com/video/53027095\" width=\"800\" height=\"450\" frameborder=\"0\"></iframe> '),(1401,108,'_nectar_audio_mp3',''),(1402,108,'_nectar_audio_ogg',''),(1403,108,'_nectar_love','63'),(1404,108,'_nectar_gallery_slider','off'),(1423,137,'_edit_last','1'),(1424,137,'_nectar_quote',''),(1425,137,'_nectar_link','http://www.themenectar.com'),(1426,137,'_nectar_video_m4v',''),(1427,137,'_nectar_video_ogv',''),(1428,137,'_nectar_video_poster',''),(1429,137,'_nectar_video_embed',''),(1430,137,'_nectar_audio_mp3',''),(1431,137,'_nectar_audio_ogg',''),(1432,137,'_nectar_love','61'),(1433,152,'_edit_last','1'),(1434,152,'_nectar_quote',''),(1435,152,'_nectar_link',''),(1436,152,'_nectar_video_m4v',''),(1437,152,'_nectar_video_ogv',''),(1438,152,'_nectar_video_poster',''),(1439,152,'_nectar_video_embed','<iframe src=\"//player.vimeo.com/video/51478176?title=0&byline=0\" width=\"500\" height=\"281\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> '),(1440,152,'_nectar_audio_mp3',''),(1441,152,'_nectar_audio_ogg',''),(1442,152,'_nectar_love','92'),(1443,152,'_nectar_gallery_slider','off'),(1444,152,'_edit_last','1'),(1445,152,'_nectar_quote',''),(1446,152,'_nectar_link',''),(1447,152,'_nectar_video_m4v',''),(1448,152,'_nectar_video_ogv',''),(1449,152,'_nectar_video_poster',''),(1450,152,'_nectar_video_embed','<iframe src=\"//player.vimeo.com/video/51478176?title=0&byline=0\" width=\"500\" height=\"281\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> '),(1451,152,'_nectar_audio_mp3',''),(1452,152,'_nectar_audio_ogg',''),(1453,152,'_nectar_love','92'),(1454,152,'_nectar_gallery_slider','off'),(1455,152,'_wpb_vc_js_status','false'),(1456,152,'_wpb_vc_js_interface_version','0'),(1457,152,'_nectar_header_bg',''),(1458,152,'_nectar_header_parallax','off'),(1459,152,'_nectar_header_bg_height',''),(1460,152,'_nectar_header_bg_color',''),(1461,152,'_nectar_header_font_color',''),(1462,559,'_edit_last','1'),(1463,559,'_nectar_quote',''),(1464,559,'_nectar_link',''),(1465,559,'_nectar_video_m4v',''),(1466,559,'_nectar_video_ogv',''),(1467,559,'_nectar_video_poster',''),(1468,559,'_nectar_video_embed',''),(1469,559,'_nectar_audio_mp3',''),(1470,559,'_nectar_audio_ogg',''),(1471,559,'_nectar_love','108'),(1472,559,'_edit_last','1'),(1473,559,'_nectar_quote',''),(1474,559,'_nectar_link',''),(1475,559,'_nectar_video_m4v',''),(1476,559,'_nectar_video_ogv',''),(1477,559,'_nectar_video_poster',''),(1478,559,'_nectar_video_embed',''),(1479,559,'_nectar_audio_mp3',''),(1480,559,'_nectar_audio_ogg',''),(1481,559,'_nectar_love','108'),(1482,559,'_wpb_vc_js_status','false'),(1483,559,'_wpb_vc_js_interface_version','0'),(1484,559,'_nectar_gallery_slider','off'),(1485,559,'_nectar_header_bg',''),(1486,559,'_nectar_header_parallax','off'),(1487,559,'_nectar_header_bg_height',''),(1488,559,'_nectar_header_bg_color',''),(1489,559,'_nectar_header_font_color',''),(1490,1239,'_edit_last','1'),(1491,1239,'_nectar_love','30'),(1492,1239,'_nectar_gallery_slider','off'),(1493,1239,'_nectar_quote',''),(1494,1239,'_nectar_link',''),(1495,1239,'_nectar_video_m4v',''),(1496,1239,'_nectar_video_ogv',''),(1497,1239,'_nectar_video_poster',''),(1498,1239,'_nectar_video_embed',''),(1499,1239,'_nectar_audio_mp3',''),(1500,1239,'_nectar_audio_ogg',''),(1501,1239,'_edit_last','1'),(1502,1239,'_nectar_love','30'),(1503,1239,'_nectar_gallery_slider','off'),(1504,1239,'_nectar_quote',''),(1505,1239,'_nectar_link',''),(1506,1239,'_nectar_video_m4v',''),(1507,1239,'_nectar_video_ogv',''),(1508,1239,'_nectar_video_poster',''),(1509,1239,'_nectar_video_embed',''),(1510,1239,'_nectar_audio_mp3',''),(1511,1239,'_nectar_audio_ogg',''),(1512,1239,'_wpb_vc_js_status','false'),(1513,1239,'_wpb_vc_js_interface_version','0'),(1514,1239,'_nectar_header_bg',''),(1515,1239,'_nectar_header_parallax','off'),(1516,1239,'_nectar_header_bg_height',''),(1517,1239,'_nectar_header_bg_color',''),(1518,1239,'_nectar_header_font_color',''),(1519,1247,'_edit_last','1'),(1520,1247,'_thumbnail_id','1248'),(1521,1247,'_nectar_love','17'),(1522,1247,'_nectar_gallery_slider','off'),(1523,1247,'_nectar_quote',''),(1524,1247,'_nectar_link',''),(1525,1247,'_nectar_video_m4v',''),(1526,1247,'_nectar_video_ogv',''),(1527,1247,'_nectar_video_poster',''),(1528,1247,'_nectar_video_embed',''),(1529,1247,'_nectar_audio_mp3',''),(1530,1247,'_nectar_audio_ogg',''),(1531,1247,'_edit_last','1'),(1532,1247,'_thumbnail_id','1248'),(1533,1247,'_nectar_love','17'),(1534,1247,'_nectar_gallery_slider','off'),(1535,1247,'_nectar_quote',''),(1536,1247,'_nectar_link',''),(1537,1247,'_nectar_video_m4v',''),(1538,1247,'_nectar_video_ogv',''),(1539,1247,'_nectar_video_poster',''),(1540,1247,'_nectar_video_embed',''),(1541,1247,'_nectar_audio_mp3',''),(1542,1247,'_nectar_audio_ogg',''),(1543,2327,'_nectar_quote','Courage is not the absence of fear, but rather the judgement that something else is more important than fear'),(1544,2327,'_nectar_link',''),(1545,2327,'_nectar_video_m4v',''),(1546,2327,'_nectar_video_ogv',''),(1547,2327,'_nectar_video_poster',''),(1548,2327,'_nectar_video_embed',''),(1549,2327,'_nectar_audio_mp3',''),(1550,2327,'_nectar_audio_ogg',''),(1551,2327,'_edit_last','1'),(1552,2327,'_nectar_love','355'),(1553,2327,'_nectar_quote','Courage is not the absence of fear, but rather the judgement that something else is more important than fear'),(1554,2327,'_nectar_link',''),(1555,2327,'_nectar_video_m4v',''),(1556,2327,'_nectar_video_ogv',''),(1557,2327,'_nectar_video_poster',''),(1558,2327,'_nectar_video_embed',''),(1559,2327,'_nectar_audio_mp3',''),(1560,2327,'_nectar_audio_ogg',''),(1561,2327,'_edit_last','1'),(1562,2327,'_nectar_love','355'),(1563,2328,'_edit_last','1'),(1564,2328,'_nectar_quote',''),(1565,2328,'_nectar_link',''),(1566,2328,'_nectar_video_m4v',''),(1567,2328,'_nectar_video_ogv',''),(1568,2328,'_nectar_video_poster',''),(1569,2328,'_nectar_video_embed',''),(1570,2328,'_nectar_audio_mp3',''),(1571,2328,'_nectar_audio_ogg',''),(1572,2328,'_nectar_love','162'),(1573,2328,'_edit_last','1'),(1574,2328,'_nectar_quote',''),(1575,2328,'_nectar_link',''),(1576,2328,'_nectar_video_m4v',''),(1577,2328,'_nectar_video_ogv',''),(1578,2328,'_nectar_video_poster',''),(1579,2328,'_nectar_video_embed',''),(1580,2328,'_nectar_audio_mp3',''),(1581,2328,'_nectar_audio_ogg',''),(1582,2328,'_nectar_love','162'),(1583,2328,'_wpb_vc_js_status','false'),(1584,2328,'_wpb_vc_js_interface_version','0'),(1585,2328,'_nectar_gallery_slider','off'),(1586,2328,'_nectar_header_bg',''),(1587,2328,'_nectar_header_parallax','off'),(1588,2328,'_nectar_header_bg_height',''),(1589,2328,'_nectar_header_bg_color',''),(1590,2328,'_nectar_header_font_color',''),(1591,2329,'_edit_last','1'),(1592,2329,'_nectar_quote',''),(1593,2329,'_nectar_link',''),(1594,2329,'_nectar_video_m4v',''),(1595,2329,'_nectar_video_ogv',''),(1596,2329,'_nectar_video_poster',''),(1597,2329,'_nectar_video_embed',''),(1598,2329,'_nectar_audio_mp3',''),(1599,2329,'_nectar_audio_ogg',''),(1600,2329,'_nectar_love','73'),(1601,2329,'_edit_last','1'),(1602,2329,'_nectar_quote',''),(1603,2329,'_nectar_link',''),(1604,2329,'_nectar_video_m4v',''),(1605,2329,'_nectar_video_ogv',''),(1606,2329,'_nectar_video_poster',''),(1607,2329,'_nectar_video_embed',''),(1608,2329,'_nectar_audio_mp3',''),(1609,2329,'_nectar_audio_ogg',''),(1610,2329,'_nectar_love','73'),(1611,2329,'_wpb_vc_js_status','false'),(1612,2329,'_wpb_vc_js_interface_version','0'),(1613,2329,'_nectar_gallery_slider','off'),(1614,2329,'_nectar_header_bg',''),(1615,2329,'_nectar_header_parallax','off'),(1616,2329,'_nectar_header_bg_height',''),(1617,2329,'_nectar_header_bg_color',''),(1618,2329,'_nectar_header_font_color',''),(1731,2593,'_menu_item_type','post_type'),(1732,2593,'_menu_item_menu_item_parent','541'),(1733,2593,'_menu_item_object_id','743'),(1734,2593,'_menu_item_object','page'),(1735,2593,'_menu_item_target',''),(1736,2593,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1737,2593,'_menu_item_xfn',''),(1738,2593,'_menu_item_url',''),(1899,2614,'_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>'),(1900,2614,'_mail','a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:43:\"[your-name] <wordpress@punjabyouthclub.com>\";s:4:\"body\";s:171:\"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 My Blog (http://punjabyouthclub.com)\";s:9:\"recipient\";s:21:\"sajjadzia10@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(1901,2614,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:39:\"My Blog <wordpress@punjabyouthclub.com>\";s:4:\"body\";s:113:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on My Blog (http://punjabyouthclub.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:31:\"Reply-To: sajjadzia10@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(1902,2614,'_messages','a:8:{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:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";}'),(1903,2614,'_additional_settings',''),(1904,2614,'_locale','en_US'),(1907,2617,'_wp_attached_file','2015/07/Untitled-1.jpg'),(1908,2617,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2015/07/Untitled-1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Untitled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Untitled-1-210x300.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"Untitled-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"Untitled-1-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"Untitled-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"Untitled-1-700x500.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"Untitled-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"Untitled-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"Untitled-1-700x1000.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1909,2622,'_wp_attached_file','2013/06/Header.jpg'),(1910,2622,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1045;s:6:\"height\";i:197;s:4:\"file\";s:18:\"2013/06/Header.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Header-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:\"Header-300x57.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"Header-1024x193.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:16:\"Header-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:18:\"Header-600x197.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:18:\"Header-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"Header-1000x197.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:18:\"Header-500x197.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:18:\"Header-500x197.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:19:\"Header-1000x197.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1987,2662,'_edit_last','1'),(1988,2662,'_wp_page_template','default'),(1989,2662,'_wpb_vc_js_status','true'),(1990,2662,'_wpb_vc_js_interface_version','2'),(1991,2662,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(1992,2662,'nectar-metabox-portfolio-display-sortable','off'),(1993,2662,'_nectar_header_bg',''),(1994,2662,'_nectar_header_parallax','off'),(1995,2662,'_nectar_header_bg_height',''),(1996,2662,'_nectar_header_title',''),(1997,2662,'_nectar_header_subtitle',''),(1998,2662,'_nectar_page_header_alignment','left'),(1999,2662,'_nectar_header_bg_color',''),(2000,2662,'_nectar_header_font_color',''),(2001,2662,'_disable_transparent_header','off'),(2002,2662,'_force_transparent_header','off'),(2003,2662,'_edit_lock','1453617270:1'),(2004,2664,'_edit_last','1'),(2005,2664,'_wp_page_template','default'),(2006,2664,'_wpb_vc_js_status','true'),(2007,2664,'_wpb_vc_js_interface_version','2'),(2008,2664,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(2009,2664,'nectar-metabox-portfolio-display-sortable','off'),(2010,2664,'_nectar_header_bg',''),(2011,2664,'_nectar_header_parallax','off'),(2012,2664,'_nectar_header_bg_height',''),(2013,2664,'_nectar_header_title',''),(2014,2664,'_nectar_header_subtitle',''),(2015,2664,'_nectar_page_header_alignment','left'),(2016,2664,'_nectar_header_bg_color',''),(2017,2664,'_nectar_header_font_color',''),(2018,2664,'_disable_transparent_header','off'),(2019,2664,'_force_transparent_header','off'),(2020,2664,'_edit_lock','1436602254:1'),(2021,2666,'_edit_last','1'),(2022,2666,'_wp_page_template','default'),(2023,2666,'_wpb_vc_js_status','false'),(2024,2666,'_wpb_vc_js_interface_version','2'),(2025,2666,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(2026,2666,'nectar-metabox-portfolio-display-sortable','off'),(2027,2666,'_nectar_header_bg',''),(2028,2666,'_nectar_header_parallax','off'),(2029,2666,'_nectar_header_bg_height',''),(2030,2666,'_nectar_header_title',''),(2031,2666,'_nectar_header_subtitle',''),(2032,2666,'_nectar_page_header_alignment','left'),(2033,2666,'_nectar_header_bg_color',''),(2034,2666,'_nectar_header_font_color',''),(2035,2666,'_disable_transparent_header','off'),(2036,2666,'_force_transparent_header','off'),(2037,2666,'_edit_lock','1449013302:1'),(2038,2668,'_edit_last','1'),(2039,2668,'_wp_page_template','default'),(2040,2668,'_wpb_vc_js_status','false'),(2041,2668,'_wpb_vc_js_interface_version','2'),(2042,2668,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(2043,2668,'nectar-metabox-portfolio-display-sortable','off'),(2044,2668,'_nectar_header_bg',''),(2045,2668,'_nectar_header_parallax','off'),(2046,2668,'_nectar_header_bg_height',''),(2047,2668,'_nectar_header_title',''),(2048,2668,'_nectar_header_subtitle',''),(2049,2668,'_nectar_page_header_alignment','left'),(2050,2668,'_nectar_header_bg_color',''),(2051,2668,'_nectar_header_font_color',''),(2052,2668,'_disable_transparent_header','off'),(2053,2668,'_force_transparent_header','off'),(2054,2668,'_edit_lock','1436514209:1'),(2055,2670,'_menu_item_type','post_type'),(2056,2670,'_menu_item_menu_item_parent','3695'),(2057,2670,'_menu_item_object_id','2668'),(2058,2670,'_menu_item_object','page'),(2059,2670,'_menu_item_target',''),(2060,2670,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2061,2670,'_menu_item_xfn',''),(2062,2670,'_menu_item_url',''),(2064,2671,'_menu_item_type','post_type'),(2065,2671,'_menu_item_menu_item_parent','3695'),(2066,2671,'_menu_item_object_id','2666'),(2067,2671,'_menu_item_object','page'),(2068,2671,'_menu_item_target',''),(2069,2671,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2070,2671,'_menu_item_xfn',''),(2071,2671,'_menu_item_url',''),(2073,2672,'_menu_item_type','post_type'),(2074,2672,'_menu_item_menu_item_parent','3695'),(2075,2672,'_menu_item_object_id','2664'),(2076,2672,'_menu_item_object','page'),(2077,2672,'_menu_item_target',''),(2078,2672,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2079,2672,'_menu_item_xfn',''),(2080,2672,'_menu_item_url',''),(2082,2673,'_menu_item_type','post_type'),(2083,2673,'_menu_item_menu_item_parent','3695'),(2084,2673,'_menu_item_object_id','2662'),(2085,2673,'_menu_item_object','page'),(2086,2673,'_menu_item_target',''),(2087,2673,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2088,2673,'_menu_item_xfn',''),(2089,2673,'_menu_item_url',''),(2102,2680,'_edit_last','1'),(2103,2680,'_wp_page_template','default'),(2104,2680,'_wpb_vc_js_status','false'),(2105,2680,'_wpb_vc_js_interface_version','2'),(2106,2680,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(2107,2680,'nectar-metabox-portfolio-display-sortable','off'),(2108,2680,'_nectar_header_bg','http://punjabyouthclub.com/wp-content/uploads/2013/06/Header.jpg'),(2109,2680,'_nectar_header_parallax','off'),(2110,2680,'_nectar_header_bg_height',''),(2111,2680,'_nectar_header_title',''),(2112,2680,'_nectar_header_subtitle',''),(2113,2680,'_nectar_page_header_alignment','left'),(2114,2680,'_nectar_header_bg_color',''),(2115,2680,'_nectar_header_font_color',''),(2116,2680,'_disable_transparent_header','off'),(2117,2680,'_force_transparent_header','off'),(2118,2680,'_edit_lock','1471965862:1'),(2119,2682,'_edit_last','1'),(2120,2682,'_wp_page_template','default'),(2121,2682,'_wpb_vc_js_status','true'),(2122,2682,'_wpb_vc_js_interface_version','2'),(2123,2682,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(2124,2682,'nectar-metabox-portfolio-display-sortable','off'),(2125,2682,'_nectar_header_bg',''),(2126,2682,'_nectar_header_parallax','off'),(2127,2682,'_nectar_header_bg_height',''),(2128,2682,'_nectar_header_title',''),(2129,2682,'_nectar_header_subtitle',''),(2130,2682,'_nectar_page_header_alignment','left'),(2131,2682,'_nectar_header_bg_color',''),(2132,2682,'_nectar_header_font_color',''),(2133,2682,'_disable_transparent_header','off'),(2134,2682,'_force_transparent_header','off'),(2135,2682,'_edit_lock','1473291895:1'),(2154,2688,'_edit_last','1'),(2155,2688,'_edit_lock','1440579191:1'),(2156,2688,'_wp_page_template','default'),(2157,2688,'_wpb_vc_js_status','true'),(2158,2688,'_wpb_vc_js_interface_version','2'),(2159,2688,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(2160,2688,'nectar-metabox-portfolio-display-sortable','off'),(2161,2688,'_nectar_header_bg',''),(2162,2688,'_nectar_header_parallax','off'),(2163,2688,'_nectar_header_bg_height',''),(2164,2688,'_nectar_header_title',''),(2165,2688,'_nectar_header_subtitle',''),(2166,2688,'_nectar_page_header_alignment','left'),(2167,2688,'_nectar_header_bg_color',''),(2168,2688,'_nectar_header_font_color',''),(2169,2688,'_disable_transparent_header','off'),(2170,2688,'_force_transparent_header','off'),(2171,2690,'_edit_last','1'),(2172,2690,'_edit_lock','1440581239:1'),(2173,2690,'_wp_page_template','default'),(2174,2690,'_wpb_vc_js_status','true'),(2175,2690,'_wpb_vc_js_interface_version','2'),(2176,2690,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(2177,2690,'nectar-metabox-portfolio-display-sortable','off'),(2178,2690,'_nectar_header_bg',''),(2179,2690,'_nectar_header_parallax','off'),(2180,2690,'_nectar_header_bg_height',''),(2181,2690,'_nectar_header_title',''),(2182,2690,'_nectar_header_subtitle',''),(2183,2690,'_nectar_page_header_alignment','left'),(2184,2690,'_nectar_header_bg_color',''),(2185,2690,'_nectar_header_font_color',''),(2186,2690,'_disable_transparent_header','off'),(2187,2690,'_force_transparent_header','off'),(2188,2692,'_edit_last','1'),(2189,2692,'_edit_lock','1469283080:1'),(2190,2692,'_wp_page_template','default'),(2191,2692,'_wpb_vc_js_status','true'),(2192,2692,'_wpb_vc_js_interface_version','2'),(2193,2692,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(2194,2692,'nectar-metabox-portfolio-display-sortable','off'),(2195,2692,'_nectar_header_bg',''),(2196,2692,'_nectar_header_parallax','off'),(2197,2692,'_nectar_header_bg_height',''),(2198,2692,'_nectar_header_title',''),(2199,2692,'_nectar_header_subtitle',''),(2200,2692,'_nectar_page_header_alignment','center'),(2201,2692,'_nectar_header_bg_color',''),(2202,2692,'_nectar_header_font_color',''),(2203,2692,'_disable_transparent_header','off'),(2204,2692,'_force_transparent_header','off'),(2205,2694,'_menu_item_type','post_type'),(2206,2694,'_menu_item_menu_item_parent','2696'),(2207,2694,'_menu_item_object_id','2692'),(2208,2694,'_menu_item_object','page'),(2209,2694,'_menu_item_target',''),(2210,2694,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2211,2694,'_menu_item_xfn',''),(2212,2694,'_menu_item_url',''),(2214,2695,'_menu_item_type','post_type'),(2215,2695,'_menu_item_menu_item_parent','2696'),(2216,2695,'_menu_item_object_id','2690'),(2217,2695,'_menu_item_object','page'),(2218,2695,'_menu_item_target',''),(2219,2695,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2220,2695,'_menu_item_xfn',''),(2221,2695,'_menu_item_url',''),(2223,2696,'_menu_item_type','post_type'),(2224,2696,'_menu_item_menu_item_parent','0'),(2225,2696,'_menu_item_object_id','2688'),(2226,2696,'_menu_item_object','page'),(2227,2696,'_menu_item_target',''),(2228,2696,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2229,2696,'_menu_item_xfn',''),(2230,2696,'_menu_item_url',''),(2232,2697,'_edit_last','1'),(2233,2697,'_edit_lock','1473291613:1'),(2234,2697,'_wp_page_template','default'),(2235,2697,'_wpb_vc_js_status','true'),(2236,2697,'_wpb_vc_js_interface_version','2'),(2237,2697,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(2238,2697,'nectar-metabox-portfolio-display-sortable','off'),(2239,2697,'_nectar_header_bg',''),(2240,2697,'_nectar_header_parallax','off'),(2241,2697,'_nectar_header_bg_height',''),(2242,2697,'_nectar_header_title',''),(2243,2697,'_nectar_header_subtitle',''),(2244,2697,'_nectar_page_header_alignment','left'),(2245,2697,'_nectar_header_bg_color',''),(2246,2697,'_nectar_header_font_color',''),(2247,2697,'_disable_transparent_header','off'),(2248,2697,'_force_transparent_header','off'),(2249,2699,'_edit_last','1'),(2250,2699,'_edit_lock','1436515082:1'),(2251,2699,'_wp_page_template','default'),(2252,2699,'_wpb_vc_js_status','false'),(2253,2699,'_wpb_vc_js_interface_version','2'),(2254,2699,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(2255,2699,'nectar-metabox-portfolio-display-sortable','off'),(2256,2699,'_nectar_header_bg',''),(2257,2699,'_nectar_header_parallax','off'),(2258,2699,'_nectar_header_bg_height',''),(2259,2699,'_nectar_header_title',''),(2260,2699,'_nectar_header_subtitle',''),(2261,2699,'_nectar_page_header_alignment','left'),(2262,2699,'_nectar_header_bg_color',''),(2263,2699,'_nectar_header_font_color',''),(2264,2699,'_disable_transparent_header','off'),(2265,2699,'_force_transparent_header','off'),(2266,2701,'_edit_last','1'),(2267,2701,'_edit_lock','1469436024:1'),(2268,2701,'_wp_page_template','default'),(2269,2701,'_wpb_vc_js_status','false'),(2270,2701,'_wpb_vc_js_interface_version','2'),(2271,2701,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(2272,2701,'nectar-metabox-portfolio-display-sortable','off'),(2273,2701,'_nectar_header_bg',''),(2274,2701,'_nectar_header_parallax','off'),(2275,2701,'_nectar_header_bg_height',''),(2276,2701,'_nectar_header_title',''),(2277,2701,'_nectar_header_subtitle',''),(2278,2701,'_nectar_page_header_alignment','left'),(2279,2701,'_nectar_header_bg_color',''),(2280,2701,'_nectar_header_font_color',''),(2281,2701,'_disable_transparent_header','off'),(2282,2701,'_force_transparent_header','off'),(2300,2705,'_edit_last','1'),(2301,2705,'_edit_lock','1453617918:1'),(2302,2705,'_wp_page_template','default'),(2303,2705,'_wpb_vc_js_status','true'),(2304,2705,'_wpb_vc_js_interface_version','2'),(2305,2705,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(2306,2705,'nectar-metabox-portfolio-display-sortable','off'),(2307,2705,'_nectar_header_bg',''),(2308,2705,'_nectar_header_parallax','off'),(2309,2705,'_nectar_header_bg_height',''),(2310,2705,'_nectar_header_title',''),(2311,2705,'_nectar_header_subtitle',''),(2312,2705,'_nectar_page_header_alignment','left'),(2313,2705,'_nectar_header_bg_color',''),(2314,2705,'_nectar_header_font_color',''),(2315,2705,'_disable_transparent_header','off'),(2316,2705,'_force_transparent_header','off'),(2317,2707,'_edit_last','1'),(2318,2707,'_edit_lock','1449013392:1'),(2319,2707,'_wp_page_template','default'),(2320,2707,'_wpb_vc_js_status','true'),(2321,2707,'_wpb_vc_js_interface_version','2'),(2322,2707,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(2323,2707,'nectar-metabox-portfolio-display-sortable','off'),(2324,2707,'_nectar_header_bg',''),(2325,2707,'_nectar_header_parallax','off'),(2326,2707,'_nectar_header_bg_height',''),(2327,2707,'_nectar_header_title',''),(2328,2707,'_nectar_header_subtitle',''),(2329,2707,'_nectar_page_header_alignment','left'),(2330,2707,'_nectar_header_bg_color',''),(2331,2707,'_nectar_header_font_color',''),(2332,2707,'_disable_transparent_header','on'),(2333,2707,'_force_transparent_header','off'),(2334,2709,'_edit_last','1'),(2335,2709,'_wp_page_template','default'),(2336,2709,'_wpb_vc_js_status','true'),(2337,2709,'_wpb_vc_js_interface_version','2'),(2338,2709,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(2339,2709,'nectar-metabox-portfolio-display-sortable','off'),(2340,2709,'_nectar_header_bg',''),(2341,2709,'_nectar_header_parallax','off'),(2342,2709,'_nectar_header_bg_height',''),(2343,2709,'_nectar_header_title',''),(2344,2709,'_nectar_header_subtitle',''),(2345,2709,'_nectar_page_header_alignment','left'),(2346,2709,'_nectar_header_bg_color',''),(2347,2709,'_nectar_header_font_color',''),(2348,2709,'_disable_transparent_header','off'),(2349,2709,'_force_transparent_header','off'),(2350,2709,'_edit_lock','1472367791:1'),(2351,2711,'_menu_item_type','post_type'),(2352,2711,'_menu_item_menu_item_parent','0'),(2353,2711,'_menu_item_object_id','2709'),(2354,2711,'_menu_item_object','page'),(2355,2711,'_menu_item_target',''),(2356,2711,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2357,2711,'_menu_item_xfn',''),(2358,2711,'_menu_item_url',''),(2360,2712,'_menu_item_type','post_type'),(2361,2712,'_menu_item_menu_item_parent','0'),(2362,2712,'_menu_item_object_id','2707'),(2363,2712,'_menu_item_object','page'),(2364,2712,'_menu_item_target',''),(2365,2712,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2366,2712,'_menu_item_xfn',''),(2367,2712,'_menu_item_url',''),(2369,2713,'_menu_item_type','post_type'),(2370,2713,'_menu_item_menu_item_parent','0'),(2371,2713,'_menu_item_object_id','2705'),(2372,2713,'_menu_item_object','page'),(2373,2713,'_menu_item_target',''),(2374,2713,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2375,2713,'_menu_item_xfn',''),(2376,2713,'_menu_item_url',''),(2405,2717,'_menu_item_type','post_type'),(2406,2717,'_menu_item_menu_item_parent','0'),(2407,2717,'_menu_item_object_id','2697'),(2408,2717,'_menu_item_object','page'),(2409,2717,'_menu_item_target',''),(2410,2717,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2411,2717,'_menu_item_xfn',''),(2412,2717,'_menu_item_url',''),(2480,2726,'_menu_item_type','custom'),(2481,2726,'_menu_item_menu_item_parent','2743'),(2482,2726,'_menu_item_object_id','2726'),(2483,2726,'_menu_item_object','custom'),(2484,2726,'_menu_item_target',''),(2485,2726,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2486,2726,'_menu_item_xfn',''),(2487,2726,'_menu_item_url','#'),(2488,2727,'_menu_item_type','custom'),(2489,2727,'_menu_item_menu_item_parent','0'),(2490,2727,'_menu_item_object_id','2727'),(2491,2727,'_menu_item_object','custom'),(2492,2727,'_menu_item_target',''),(2493,2727,'_menu_item_classes','a:2:{i:0;s:8:\"megamenu\";i:1;s:9:\"columns-4\";}'),(2494,2727,'_menu_item_xfn',''),(2495,2727,'_menu_item_url','#'),(2496,2728,'_menu_item_type','custom'),(2497,2728,'_menu_item_menu_item_parent','0'),(2498,2728,'_menu_item_object_id','2728'),(2499,2728,'_menu_item_object','custom'),(2500,2728,'_menu_item_target',''),(2501,2728,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2502,2728,'_menu_item_xfn',''),(2503,2728,'_menu_item_url','#'),(2504,2729,'_menu_item_type','custom'),(2505,2729,'_menu_item_menu_item_parent','2727'),(2506,2729,'_menu_item_object_id','2729'),(2507,2729,'_menu_item_object','custom'),(2508,2729,'_menu_item_target',''),(2509,2729,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2510,2729,'_menu_item_xfn',''),(2511,2729,'_menu_item_url','#'),(2512,2730,'_menu_item_type','custom'),(2513,2730,'_menu_item_menu_item_parent','2727'),(2514,2730,'_menu_item_object_id','2730'),(2515,2730,'_menu_item_object','custom'),(2516,2730,'_menu_item_target',''),(2517,2730,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2518,2730,'_menu_item_xfn',''),(2519,2730,'_menu_item_url','#'),(2520,2731,'_menu_item_type','custom'),(2521,2731,'_menu_item_menu_item_parent','2730'),(2522,2731,'_menu_item_object_id','2731'),(2523,2731,'_menu_item_object','custom'),(2524,2731,'_menu_item_target',''),(2525,2731,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2526,2731,'_menu_item_xfn',''),(2527,2731,'_menu_item_url','#'),(2528,2732,'_menu_item_type','custom'),(2529,2732,'_menu_item_menu_item_parent','2729'),(2530,2732,'_menu_item_object_id','2732'),(2531,2732,'_menu_item_object','custom'),(2532,2732,'_menu_item_target',''),(2533,2732,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2534,2732,'_menu_item_xfn',''),(2535,2732,'_menu_item_url','http://themenectar.com/demo/salient-frostwave/contact-alternative/'),(2536,2733,'_menu_item_type','custom'),(2537,2733,'_menu_item_menu_item_parent','2729'),(2538,2733,'_menu_item_object_id','2733'),(2539,2733,'_menu_item_object','custom'),(2540,2733,'_menu_item_target',''),(2541,2733,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2542,2733,'_menu_item_xfn',''),(2543,2733,'_menu_item_url','http://themenectar.com/demo/salient-frostwave/home-basic/'),(2544,2734,'_menu_item_type','custom'),(2545,2734,'_menu_item_menu_item_parent','2729'),(2546,2734,'_menu_item_object_id','2734'),(2547,2734,'_menu_item_object','custom'),(2548,2734,'_menu_item_target',''),(2549,2734,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2550,2734,'_menu_item_xfn',''),(2551,2734,'_menu_item_url','http://themenectar.com/demo/salient-frostwave/home-portfolio-eye-candy/'),(2552,2735,'_menu_item_type','custom'),(2553,2735,'_menu_item_menu_item_parent','2727'),(2554,2735,'_menu_item_object_id','2735'),(2555,2735,'_menu_item_object','custom'),(2556,2735,'_menu_item_target',''),(2557,2735,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2558,2735,'_menu_item_xfn',''),(2559,2735,'_menu_item_url','http://#'),(2560,2736,'_menu_item_type','custom'),(2561,2736,'_menu_item_menu_item_parent','2730'),(2562,2736,'_menu_item_object_id','2736'),(2563,2736,'_menu_item_object','custom'),(2564,2736,'_menu_item_target',''),(2565,2736,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2566,2736,'_menu_item_xfn',''),(2567,2736,'_menu_item_url','#'),(2568,2737,'_menu_item_type','custom'),(2569,2737,'_menu_item_menu_item_parent','2730'),(2570,2737,'_menu_item_object_id','2737'),(2571,2737,'_menu_item_object','custom'),(2572,2737,'_menu_item_target',''),(2573,2737,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2574,2737,'_menu_item_xfn',''),(2575,2737,'_menu_item_url','#'),(2576,2738,'_menu_item_type','custom'),(2577,2738,'_menu_item_menu_item_parent','2729'),(2578,2738,'_menu_item_object_id','2738'),(2579,2738,'_menu_item_object','custom'),(2580,2738,'_menu_item_target',''),(2581,2738,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2582,2738,'_menu_item_xfn',''),(2583,2738,'_menu_item_url','#'),(2584,2739,'_menu_item_type','custom'),(2585,2739,'_menu_item_menu_item_parent','2741'),(2586,2739,'_menu_item_object_id','2739'),(2587,2739,'_menu_item_object','custom'),(2588,2739,'_menu_item_target',''),(2589,2739,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2590,2739,'_menu_item_xfn',''),(2591,2739,'_menu_item_url','#'),(2592,2740,'_menu_item_type','custom'),(2593,2740,'_menu_item_menu_item_parent','2741'),(2594,2740,'_menu_item_object_id','2740'),(2595,2740,'_menu_item_object','custom'),(2596,2740,'_menu_item_target',''),(2597,2740,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2598,2740,'_menu_item_xfn',''),(2599,2740,'_menu_item_url','#'),(2600,2741,'_menu_item_type','custom'),(2601,2741,'_menu_item_menu_item_parent','0'),(2602,2741,'_menu_item_object_id','2741'),(2603,2741,'_menu_item_object','custom'),(2604,2741,'_menu_item_target',''),(2605,2741,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2606,2741,'_menu_item_xfn',''),(2607,2741,'_menu_item_url','#'),(2608,2742,'_menu_item_type','custom'),(2609,2742,'_menu_item_menu_item_parent','0'),(2610,2742,'_menu_item_object_id','2742'),(2611,2742,'_menu_item_object','custom'),(2612,2742,'_menu_item_target',''),(2613,2742,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2614,2742,'_menu_item_xfn',''),(2615,2742,'_menu_item_url','#'),(2616,2743,'_menu_item_type','custom'),(2617,2743,'_menu_item_menu_item_parent','0'),(2618,2743,'_menu_item_object_id','2743'),(2619,2743,'_menu_item_object','custom'),(2620,2743,'_menu_item_target',''),(2621,2743,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2622,2743,'_menu_item_xfn',''),(2623,2743,'_menu_item_url','#'),(2787,2744,'_edit_last','1'),(2788,2744,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(2789,2744,'nectar-metabox-portfolio-display-sortable','off'),(2790,2744,'_nectar_header_bg',''),(2791,2744,'_nectar_header_bg_height',''),(2792,2744,'_nectar_header_title',''),(2793,2744,'_nectar_header_subtitle',''),(2794,2744,'_wp_page_template','default'),(2795,2744,'_nectar_header_parallax','off'),(2796,2744,'_wpb_vc_js_status','true'),(2797,2744,'_wpb_vc_js_interface_version','2'),(2798,2744,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(2799,2744,'_nectar_page_header_alignment','left'),(2800,2744,'_nectar_header_bg_color',''),(2801,2744,'_nectar_header_font_color',''),(2919,652,'_edit_last','1'),(2920,652,'_nectar_slider_bg_type','image_bg'),(2921,652,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2013/06/Header.jpg'),(2922,652,'_nectar_media_upload_webm',''),(2923,652,'_nectar_media_upload_mp4',''),(2924,652,'_nectar_media_upload_ogv',''),(2925,652,'_nectar_slider_preview_image',''),(2926,652,'_nectar_slider_video_texture','on'),(2927,652,'_nectar_slider_slide_bg_alignment','bottom'),(2928,652,'_nectar_slider_slide_font_color','light'),(2929,652,'_nectar_slider_heading','Punjab Youth Club ( HK)'),(2930,652,'_nectar_slider_caption','Punjab Youth Club \r\nHong Kong'),(2931,652,'_nectar_slider_link_type','full_slide_link'),(2932,652,'_nectar_slider_button',''),(2933,652,'_nectar_slider_button_url',''),(2934,652,'_nectar_slider_button_style','solid_color'),(2935,652,'_nectar_slider_button_color','primary-color'),(2936,652,'_nectar_slider_button_2',''),(2937,652,'_nectar_slider_button_url_2',''),(2938,652,'_nectar_slider_button_style_2','solid_color'),(2939,652,'_nectar_slider_button_color_2','primary-color'),(2940,652,'_nectar_slider_entire_link','#'),(2941,652,'_nectar_slider_video_popup',''),(2942,652,'_nectar_slide_xpos_alignment','centered'),(2943,652,'_nectar_slide_ypos_alignment','middle'),(2944,652,'_nectar_slider_slide_custom_class',''),(2945,652,'_nectar_slider_caption_background','off'),(2946,652,'_nectar_slider_down_arrow','on'),(2947,672,'_edit_last','1'),(2948,672,'_nectar_slider_bg_type','image_bg'),(2949,672,'_nectar_slider_image','http://themenectar.com/demo/salient/wp-content/uploads/2013/09/black-bg1.png'),(2950,672,'_nectar_media_upload_webm',''),(2951,672,'_nectar_media_upload_mp4',''),(2952,672,'_nectar_media_upload_ogv',''),(2953,672,'_nectar_slider_preview_image',''),(2954,672,'_nectar_slider_video_texture','off'),(2955,672,'_nectar_slider_slide_bg_alignment','center'),(2956,672,'_nectar_slider_slide_font_color','light'),(2957,672,'_nectar_slider_heading',''),(2958,672,'_nectar_slider_caption','<img src=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/11/salient-ink-text.png\" alt=\"salient ink text\" />'),(2959,672,'_nectar_slider_caption_background','off'),(2960,672,'_nectar_slider_link_type','button_links'),(2961,672,'_nectar_slider_button',''),(2962,672,'_nectar_slider_button_url',''),(2963,672,'_nectar_slider_button_style','solid_color'),(2964,672,'_nectar_slider_button_color','primary-color'),(2965,672,'_nectar_slider_button_2',''),(2966,672,'_nectar_slider_button_url_2',''),(2967,672,'_nectar_slider_button_style_2','solid_color'),(2968,672,'_nectar_slider_button_color_2','primary-color'),(2969,672,'_nectar_slider_entire_link',''),(2970,672,'_nectar_slider_video_popup',''),(2971,672,'_nectar_slide_xpos_alignment','centered'),(2972,672,'_nectar_slide_ypos_alignment','middle'),(2973,672,'_nectar_slider_slide_custom_class',''),(2974,672,'_nectar_love','0'),(2975,672,'_nectar_slider_down_arrow','on'),(3049,2057,'_edit_last','1'),(3050,2057,'_nectar_slider_bg_type','image_bg'),(3051,2057,'_nectar_slider_image','http://themenectar.com/demo/salient/wp-content/uploads/2013/09/black-bg1.png'),(3052,2057,'_nectar_media_upload_webm',''),(3053,2057,'_nectar_media_upload_mp4',''),(3054,2057,'_nectar_media_upload_ogv',''),(3055,2057,'_nectar_slider_preview_image',''),(3056,2057,'_nectar_slider_video_texture','off'),(3057,2057,'_nectar_slider_slide_bg_alignment','center'),(3058,2057,'_nectar_slider_slide_font_color','light'),(3059,2057,'_nectar_slider_heading',''),(3060,2057,'_nectar_slider_caption','We\'re proud to announce weather app v1.0 is \nout and ready to download. Grab a copy and \nnever be unprepared for the weather again!'),(3061,2057,'_nectar_slider_caption_background','on'),(3062,2057,'_nectar_slider_down_arrow','off'),(3063,2057,'_nectar_slider_link_type','button_links'),(3064,2057,'_nectar_slider_button','Download App'),(3065,2057,'_nectar_slider_button_url',''),(3066,2057,'_nectar_slider_button_style','transparent'),(3067,2057,'_nectar_slider_button_color','primary-color'),(3068,2057,'_nectar_slider_button_2','View User Guide'),(3069,2057,'_nectar_slider_button_url_2',''),(3070,2057,'_nectar_slider_button_style_2','solid_color'),(3071,2057,'_nectar_slider_button_color_2','primary-color'),(3072,2057,'_nectar_slider_entire_link',''),(3073,2057,'_nectar_slider_video_popup',''),(3074,2057,'_nectar_slide_xpos_alignment','right'),(3075,2057,'_nectar_slide_ypos_alignment','middle'),(3076,2057,'_nectar_slider_slide_custom_class',''),(3179,743,'_edit_last','1'),(3180,743,'_wp_page_template','default'),(3181,743,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(3182,743,'nectar-metabox-portfolio-display-sortable','off'),(3183,743,'_nectar_header_bg',''),(3184,743,'_nectar_header_parallax','off'),(3185,743,'_nectar_header_bg_height',''),(3186,743,'_nectar_header_title',''),(3187,743,'_nectar_header_subtitle',''),(3188,743,'_wpb_vc_js_status','true'),(3189,743,'_wpb_vc_js_interface_version','2'),(3190,743,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(3191,743,'_nectar_page_header_alignment','left'),(3192,743,'_nectar_header_bg_color',''),(3193,743,'_nectar_header_font_color',''),(3365,65,'_edit_last','1'),(3366,65,'_nectar_portfolio_custom_thumbnail',''),(3367,65,'_nectar_video_m4v',''),(3368,65,'_nectar_video_ogv',''),(3369,65,'_nectar_video_poster',''),(3370,65,'_nectar_video_embed',''),(3371,65,'_nectar_love','0'),(3372,65,'_nectar_video_height',''),(3373,65,'_nectar_portfolio_extra_content',''),(3374,65,'_wpb_vc_js_status','false'),(3375,65,'_wpb_vc_js_interface_version','0'),(3376,65,'_nectar_portfolio_item_layout','disabled'),(3377,65,'_nectar_hide_featured','off'),(3378,65,'_portfolio_item_masonry_sizing','wide'),(3379,65,'_nectar_external_project_url',''),(3380,65,'nectar-metabox-portfolio-parent-override','default'),(3381,65,'_nectar_project_excerpt',''),(3382,65,'_nectar_project_accent_color','#cdc18d'),(3383,65,'_nectar_header_bg',''),(3384,65,'_nectar_header_parallax','off'),(3385,65,'_nectar_header_bg_height',''),(3386,65,'_nectar_header_bg_color',''),(3387,65,'_nectar_header_font_color',''),(3388,70,'_edit_last','1'),(3389,70,'_nectar_video_m4v',''),(3390,70,'_nectar_video_ogv',''),(3391,70,'_nectar_video_poster',''),(3392,70,'_nectar_video_embed','<iframe src=\"http://player.vimeo.com/video/63987795\" width=\"720\" height=\"405\" frameborder=\"0\" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> '),(3393,70,'_nectar_love','0'),(3394,70,'_nectar_video_height',''),(3395,70,'_nectar_portfolio_custom_thumbnail',''),(3396,70,'_nectar_portfolio_extra_content','[vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"25\" vertically_center_columns=\"true\"][vc_column width=\"1/2\" enable_animation=\"true\" animation=\"flip-in\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_column_text]<img class=\"alignnone size-full wp-image-932\" alt=\"black-box\" src=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/no-portfolio-item.jpg\" width=\"800\" height=\"480\" />[/vc_column_text][/vc_column][vc_column width=\"1/2\" enable_animation=\"true\" animation=\"flip-in\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_column_text]<img class=\"alignnone size-full wp-image-934\" alt=\"black-box3\" src=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/no-portfolio-item.jpg\" width=\"800\" height=\"463\" />[/vc_column_text][/vc_column][/vc_row][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" bottom_padding=\"20\" top_padding=\"40\"][vc_column width=\"1/1\"][vc_column_text]\n<h4>The Key Aspects We Covered</h4>\n[/vc_column_text][divider line_type=\"No Line\" custom_height=\"5\"][tabbed_section][tab title=\"Discovery\" id=\"t1\"][vc_column_text] Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam rhoncus adipiscing malesuada. Ut ligula dui, condimentum pellentesque auctor at, eleifend eu eros. Cras viverra gravida erat egestas imperdiet. Pellentesque commodo, ante eget feugiat feugiat, lectus nunc mollis nisl, ac lobortis nisl enim vel tortor. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam rhoncus adipiscing malesuada. Ut ligula dui, condimentum pellentesque auctor at, eleifend eu eros. Cras viverra gravida erat egestas imperdiet. Pellentesque commodo, ante eget feugiat feugiat, lectus nunc mollis nisl, ac lobortis nisl enim vel tortor. [/vc_column_text][/tab][tab title=\"Content Creation\" id=\"t2\"][vc_column_text] Nam aliquet tincidunt rutrum. Maecenas accumsan libero ac sem molestie elementum. Vivamus sodales, tortor eu luctus tempor, turpis enim commodo tortor, condimentum ultricies nibh risus id ipsum. Nam nec sem ante, quis cursus enim. Morbi lacinia mollis augue vitae dapibus. eleifend eu eros Nam aliquet tincidunt rutrum. Maecenas accumsan libero ac sem molestie elementum. Vivamus sodales, tortor eu luctus tempor, turpis enim commodo tortor, condimentum ultricies nibh risus id ipsum. Nam nec sem ante, quis cursus enim. Morbi lacinia mollis augue vitae dapibus. eleifend eu eros[/vc_column_text][/tab][tab title=\"Branding\" id=\"t3\"][vc_column_text]Ut ipsum ligula, adipiscing et rutrum eget, vehicula nec ligula. In in ligula nec ligula adipiscing cursus. Duis condimentum elit eu mi sodales facilisis. Vestibulum erat risus, mollis non sagittis ac, scelerisque ac lectus. Praesent ornare augue sit amet lectus porttitor auctor. Adipiscing et rutrum eget, vehicula nec ligula. In in ligula nec ligula adipiscing cursus. Duis condimentum elit eu mi sodales facilisis. quis cursus enim. Morbi lacinia mollis augue vitae dapibus. eleifend eu ero[/vc_column_text][/tab][tab title=\"Social Reach\" id=\"t4\"][vc_column_text]Ut ipsum ligula, adipiscing et rutrum eget, vehicula nec ligula. In in ligula nec ligula adipiscing cursus. Duis condimentum elit eu mi sodales facilisis. Vestibulum erat risus, mollis non sagittis ac, scelerisque ac lectus. Praesent ornare augue sit amet lectus porttitor auctor. Adipiscing et rutrum eget, vehicula nec ligula. In in ligula nec ligula adipiscing cursus. Duis condimentum elit eu mi sodales facilisis. quis cursus enim. Morbi lacinia mollis augue vitae dapibus. eleifend eu ero[/vc_column_text][/tab][/tabbed_section][/vc_column][/vc_row]'),(3397,70,'_wpb_vc_js_status','true'),(3398,70,'_wpb_vc_js_interface_version','2'),(3399,70,'_nectar_portfolio_item_layout','disabled'),(3400,70,'_nectar_hide_featured','off'),(3401,70,'_portfolio_item_masonry_sizing','regular'),(3402,70,'_nectar_gallery_slider','off'),(3403,70,'_nectar_external_project_url',''),(3404,70,'nectar-metabox-portfolio-parent-override','default'),(3405,70,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(3406,70,'_nectar_project_excerpt',''),(3407,70,'_nectar_project_accent_color','#9159a9'),(3408,70,'_nectar_header_bg',''),(3409,70,'_nectar_header_parallax','off'),(3410,70,'_nectar_header_bg_height','400'),(3411,70,'_nectar_header_bg_color',''),(3412,70,'_nectar_header_font_color',''),(3413,72,'_edit_last','1'),(3414,72,'_nectar_portfolio_custom_thumbnail',''),(3415,72,'_nectar_video_m4v',''),(3416,72,'_nectar_video_ogv',''),(3417,72,'_nectar_video_poster',''),(3418,72,'_nectar_video_embed',''),(3419,72,'_nectar_love','0'),(3420,72,'_nectar_video_height',''),(3421,72,'_nectar_portfolio_extra_content',''),(3422,72,'_nectar_gallery_slider','off'),(3423,72,'_nectar_media_upload','http://localhost/wordpress-3-6/wp-content/uploads/2013/05/spacebound.ogv'),(3424,72,'_nectar_media_upload_poster',''),(3425,72,'_nectar_portfolio_item_layout','disabled'),(3426,72,'_nectar_hide_featured','off'),(3427,72,'_portfolio_item_masonry_sizing','regular'),(3428,72,'_nectar_external_project_url',''),(3429,72,'nectar-metabox-portfolio-parent-override','default'),(3430,72,'_wpb_vc_js_status','false'),(3431,72,'_wpb_vc_js_interface_version','0'),(3432,72,'_nectar_project_excerpt',''),(3433,72,'_nectar_project_accent_color','#31b500'),(3434,72,'_nectar_header_bg',''),(3435,72,'_nectar_header_parallax','on'),(3436,72,'_nectar_header_bg_height','300'),(3437,72,'_nectar_header_bg_color','#616b6d'),(3438,72,'_nectar_header_font_color','#ffffff'),(3439,76,'_edit_last','1'),(3440,76,'_nectar_portfolio_custom_thumbnail',''),(3441,76,'_nectar_video_m4v',''),(3442,76,'_nectar_video_ogv',''),(3443,76,'_nectar_video_poster',''),(3444,76,'_nectar_video_embed',''),(3445,76,'_nectar_love','0'),(3446,76,'_nectar_portfolio_extra_content',''),(3447,76,'_nectar_video_height',''),(3448,76,'_wpb_vc_js_status','false'),(3449,76,'_wpb_vc_js_interface_version','0'),(3450,76,'_nectar_portfolio_item_layout','disabled'),(3451,76,'_nectar_hide_featured','off'),(3452,76,'_portfolio_item_masonry_sizing','regular'),(3453,76,'_nectar_external_project_url',''),(3454,76,'nectar-metabox-portfolio-parent-override','default'),(3455,76,'_nectar_project_excerpt',''),(3456,76,'_nectar_project_accent_color','#eab897'),(3457,76,'_nectar_header_bg',''),(3458,76,'_nectar_header_parallax','off'),(3459,76,'_nectar_header_bg_height',''),(3460,76,'_nectar_header_bg_color',''),(3461,76,'_nectar_header_font_color',''),(3462,629,'_edit_last','1'),(3463,629,'_nectar_portfolio_item_layout','enabled'),(3464,629,'_nectar_portfolio_custom_thumbnail',''),(3465,629,'_nectar_hide_featured','on'),(3466,629,'_nectar_gallery_slider','off'),(3467,629,'_nectar_portfolio_extra_content','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider full_width=\"true\" desktop_swipe=\"true\" location=\"Lowpoly\" slider_height=\"550\" bullet_navigation=\"true\" min_slider_height=\"300\" flexible_slider_height=\"true\" fullscreen=\"true\"][/vc_column][/vc_row][full_width_section bg_pos=\"Left Top\" bg_repeat=\"No-Repeat\" text_color=\"dark\" top_padding=\"90\" bottom_padding=\"90\" background_color=\"#ffffff\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\n<h2 class=\"light\" style=\"text-align: center;\"><span style=\"color: #27ccc0;\">The GeoWolf App Was One Of Our Greatest Achievements</span></h2>\n<h4 class=\"light\" style=\"text-align: center;\">Phasellus enim libero, blandit vel sapien vitae, condimentum ultricies magna et. Quisque euismod\nlobortis aliquam. Aliquam in tortor enim. orci ut et lobortis aliquam. Aliquam in tortor enim.</h4>\n[/vc_column_text][/vc_column][/full_width_section][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"90\" bottom_padding=\"90\"][vc_column width=\"1/2\"][image_with_animation animation=\"Fade In From Left\" image_url=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/09/geowofl-device-1.png\" img_link_target=\"_self\"] [/image_with_animation][/vc_column][vc_column width=\"1/2\" enable_animation=\"true\" animation=\"flip-in\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_column_text]\n<h2>Built With iOS In Mind</h2>\nSalient was built from the ground up with responsive design in mind rather than it being an after thought. Your users will appreciate the difference of its carefully planned layouts and browse your site with ease! In addition, Retina support will guarantee your site displays as crisp as possible on the latest devices.\n\n[button color=\"accent-color\" size=\"large\" url=\"#\" text=\"Continue The Tour\" color_override=\"#27ccc0\"][/vc_column_text][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" bg_color=\"#ffffff\" text_color=\"dark\" text_align=\"left\" top_padding=\"90\" bottom_padding=\"0\"][vc_column width=\"1/2\" enable_animation=\"true\" animation=\"flip-in\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_column_text]\n<h2>Perfect On All Devices</h2>\nSalient gives you an arsenal of beautifully crafted elements and pre-defined structures that will bring life to your prject. Now with more power than ever, you have control over advanced options such as unlimited full-width &amp; parallax sections + multiple accent colors.\n\nAll of the elements in this theme were carefully crafted with a high attention to detail to ensure a consistent &amp; high-end design. Unlock your contents full potential and start getting noticed today!\n\n[button color=\"Accent-Color\" color_override=\"#27ccc0\" url=\"#\" size=\"large\" text=\"Show Me The Goods\"][/vc_column_text][/vc_column][vc_column width=\"1/2\"][image_with_animation animation=\"Fade In From Right\" image_url=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/09/geowolf-device-2.png\"] [/image_with_animation][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"light\" text_align=\"center\" top_padding=\"120\" bottom_padding=\"120\" enable_video_color_overlay=\"true\" video_overlay_color=\"#1fd9fb\" bg_color=\"#020202\"][vc_column width=\"1/1\"][vc_column_text]\n<h1>Ready To Stand Out?</h1>\n[divider line_type=\"No Line\" custom_height=\"30\"]\n\n[button color=\"See-Through\" size=\"large\" url=\"http://themeforest.net/item/salient-responsive-multipurpose-theme/4363266\" text=\"Buy Salient Now\" image=\"default-arrow\"]  [button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/contact-alternative/\" text=\"Reach Out To Us\" image=\"default-arrow\"]\n\n[/vc_column_text][/vc_column][/vc_row]'),(3468,629,'_nectar_video_m4v',''),(3469,629,'_nectar_video_ogv',''),(3470,629,'_nectar_video_height',''),(3471,629,'_nectar_video_poster',''),(3472,629,'_nectar_video_embed',''),(3473,629,'_nectar_love','1'),(3474,629,'_portfolio_item_masonry_sizing','regular'),(3475,629,'_nectar_external_project_url',''),(3476,629,'nectar-metabox-portfolio-parent-override','default'),(3477,629,'_wpb_vc_js_status','true'),(3478,629,'_wpb_vc_js_interface_version','2'),(3479,629,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(3480,629,'_nectar_project_excerpt',''),(3481,629,'_nectar_project_accent_color',''),(3482,629,'_nectar_header_bg',''),(3483,629,'_nectar_header_parallax','off'),(3484,629,'_nectar_header_bg_height','220'),(3485,629,'_nectar_header_bg_color','#4f3a3b'),(3486,629,'_nectar_header_font_color',''),(3487,654,'_edit_last','1'),(3488,654,'_nectar_portfolio_item_layout','enabled'),(3489,654,'_nectar_portfolio_custom_thumbnail',''),(3490,654,'_nectar_hide_featured','on'),(3491,654,'_nectar_gallery_slider','off'),(3492,654,'_nectar_portfolio_extra_content','[full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"Dark\" top_padding=\"90\" bottom_padding=\"90\" background_color=\"#fafafa\"][one_half][vc_column_text]\n<h2>A Mobile Project</h2>\nIn et massa a massa egestas suscipit tincidunt ut est. Curabitur rutrum faucibus elit, at convallis diam mattis eget. Aliquam scelerisque erat a felis dignissim, a consequat tortor rhoncus. Nullam vulputate nibh at nisi consectetur, nec rutrum nunc iaculis. Donec at aliquam felis. Fusce quis pellentesque odio. Nulla porttitor neque vitae ligula luctus imperdiet molestie at dui. Mauris.[/vc_column_text][/one_half][one_half_last][vc_column_text]\n<h2>Our Approach</h2>\nIn et massa a massa egestas suscipit tincidunt ut est. Curabitur rutrum faucibus elit, at convallis diam mattis eget. Aliquam scelerisque erat a felis dignissim, a consequat tortor rhoncus. Nullam vulputate nibh at nisi consectetur, nec rutrum nunc iaculis. Donec at aliquam felis. Fusce quis pellentesque odio. Nulla porttitor neque vitae ligula luctus imperdiet molestie at dui. Mauris.[/vc_column_text][/one_half_last][/full_width_section][vc_row type=\"full_width_background\" bg_image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/09/weather-app13.png\" bg_position=\"center center\" bg_repeat=\"no-repeat\" bg_color=\"#212121\" text_color=\"light\" text_align=\"left\" top_padding=\"130\" bottom_padding=\"130\"][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][image_with_animation animation=\"Grow In\" image_url=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/09/weather-icon-11.png\"] [/image_with_animation][/vc_column_inner][vc_column_inner width=\"3/4\"][vc_column_text]\n<h2>Custom Icon Design</h2>\nPhasellus enim libero, blandit vel sapien vitae, condim entum ultricies magna et. Quisque euismod orci ut et ipsum primis lobortis aliquam. Aliquam in tortor enim.[/vc_column_text][/vc_column_inner][/vc_row_inner][divider line_type=\"No Line\" custom_height=\"20\"][vc_row_inner][vc_column_inner width=\"1/4\"][image_with_animation animation=\"Grow In\" image_url=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/09/weather-icon-21.png\"] [/image_with_animation][/vc_column_inner][vc_column_inner width=\"3/4\"][vc_column_text]\n<h2>User Interface Design</h2>\nPhasellus enim libero, blandit vel sapien vitae, condim entum ultricies magna et. Quisque euismod orci ut et ipsum primis lobortis aliquam. Aliquam in tortor enim.[/vc_column_text][/vc_column_inner][/vc_row_inner][divider line_type=\"No Line\" custom_height=\"20\"][vc_row_inner][vc_column_inner width=\"1/4\"][image_with_animation animation=\"Grow In\" image_url=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/09/weather-icon-31.png\"] [/image_with_animation][/vc_column_inner][vc_column_inner width=\"3/4\"][vc_column_text]\n<h2>User Experience Design</h2>\nPhasellus enim libero, blandit vel sapien vitae, condim entum ultricies magna et. Quisque euismod orci ut et ipsum primis lobortis aliquam. Aliquam in tortor enim.[/vc_column_text][/vc_column_inner][/vc_row_inner][divider line_type=\"No Line\" custom_height=\"20\"][vc_row_inner][vc_column_inner width=\"1/4\"][image_with_animation animation=\"Grow In\" image_url=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/09/weather-icon-41.png\"] [/image_with_animation][/vc_column_inner][vc_column_inner width=\"3/4\"][vc_column_text]\n<h2>Responsive Web Design</h2>\nPhasellus enim libero, blandit vel sapien vitae, condim entum ultricies magna et. Quisque euismod orci ut et ipsum primis lobortis aliquam. Aliquam in tortor enim.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"5\" bottom_padding=\"5\" background_color=\"#161616\" type=\"full_width_content\" text_align=\"left\" image_url=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/09/line1.jpg\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"90\" bottom_padding=\"90\" background_color=\"#111111\" type=\"full_width_background\" text_align=\"left\"][one_fourth][milestone color=\"Extra-color-1\" number=\"12\" subject=\"Team Members\"][/one_fourth][one_fourth][milestone color=\"Extra-color-1\" number=\"145\" subject=\"Days to make\"][/one_fourth][one_fourth][milestone color=\"Accent-Color\" number=\"36\" subject=\"Git Branches\" symbol_position=\"after\"][/one_fourth][one_fourth_last][milestone color=\"Accent-Color\" number=\"759\" subject=\"Current Downloads\" symbol_position=\"after\"][/one_fourth_last][/full_width_section][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/1\"][nectar_slider full_width=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Weather App\" slider_height=\"650\" loop=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"center\" bottom_padding=\"60\" top_padding=\"60\"][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][social_buttons nectar_love=\"true\" facebook=\"true\" twitter=\"true\" pinterest=\"true\"][vc_column_text]\n<p style=\"text-align: center;\">If you like this project, please take a second\nto share with the world so weather app can grow!\n\n[/vc_column_text][/vc_column][/vc_row]'),(3493,654,'_nectar_video_m4v',''),(3494,654,'_nectar_video_ogv',''),(3495,654,'_nectar_video_height',''),(3496,654,'_nectar_video_poster',''),(3497,654,'_nectar_video_embed',''),(3498,654,'_nectar_love','1'),(3499,654,'_portfolio_item_masonry_sizing','wide_tall'),(3500,654,'_nectar_external_project_url',''),(3501,654,'nectar-metabox-portfolio-parent-override','default'),(3502,654,'_wpb_vc_js_status','true'),(3503,654,'_wpb_vc_js_interface_version','2'),(3504,654,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(3505,654,'_nectar_project_excerpt',''),(3506,654,'_nectar_project_accent_color','#27cbc0'),(3507,654,'_nectar_header_bg',''),(3508,654,'_nectar_header_parallax','on'),(3509,654,'_nectar_header_bg_height',''),(3510,654,'_nectar_header_bg_color','#1e1e1e'),(3511,654,'_nectar_header_font_color',''),(3512,1242,'_edit_last','1'),(3513,1242,'_nectar_love','14'),(3514,1242,'_nectar_gallery_slider','off'),(3515,1242,'_nectar_quote','If you wish to make an apple pie from scratch, you must first invent the universe.'),(3516,1242,'_nectar_link',''),(3517,1242,'_nectar_video_m4v',''),(3518,1242,'_nectar_video_ogv',''),(3519,1242,'_nectar_video_poster',''),(3520,1242,'_nectar_video_embed',''),(3521,1242,'_nectar_audio_mp3',''),(3522,1242,'_nectar_audio_ogg',''),(3523,1242,'_edit_last','1'),(3524,1242,'_nectar_love','14'),(3525,1242,'_nectar_gallery_slider','off'),(3526,1242,'_nectar_quote','If you wish to make an apple pie from scratch, you must first invent the universe.'),(3527,1242,'_nectar_link',''),(3528,1242,'_nectar_video_m4v',''),(3529,1242,'_nectar_video_ogv',''),(3530,1242,'_nectar_video_poster',''),(3531,1242,'_nectar_video_embed',''),(3532,1242,'_nectar_audio_mp3',''),(3533,1242,'_nectar_audio_ogg',''),(3534,1251,'_edit_last','1'),(3535,1251,'_nectar_love','33'),(3536,1251,'_nectar_gallery_slider','off'),(3537,1251,'_nectar_quote',''),(3538,1251,'_nectar_link',''),(3539,1251,'_nectar_video_m4v',''),(3540,1251,'_nectar_video_ogv',''),(3541,1251,'_nectar_video_poster',''),(3542,1251,'_nectar_video_embed',''),(3543,1251,'_nectar_audio_mp3',''),(3544,1251,'_nectar_audio_ogg',''),(3545,1251,'_wp_old_slug','spacebound'),(3546,1251,'_edit_last','1'),(3547,1251,'_nectar_love','33'),(3548,1251,'_nectar_gallery_slider','off'),(3549,1251,'_nectar_quote',''),(3550,1251,'_nectar_link',''),(3551,1251,'_nectar_video_m4v',''),(3552,1251,'_nectar_video_ogv',''),(3553,1251,'_nectar_video_poster',''),(3554,1251,'_nectar_video_embed',''),(3555,1251,'_nectar_audio_mp3',''),(3556,1251,'_nectar_audio_ogg',''),(3557,1251,'_wp_old_slug','spacebound'),(3558,1251,'_wpb_vc_js_status','false'),(3559,1251,'_wpb_vc_js_interface_version','0'),(3560,1251,'_nectar_header_bg',''),(3561,1251,'_nectar_header_parallax','off'),(3562,1251,'_nectar_header_bg_height',''),(3563,1251,'_nectar_header_bg_color',''),(3564,1251,'_nectar_header_font_color',''),(3565,1829,'_edit_last','1'),(3566,1829,'_wpb_vc_js_status','true'),(3567,1829,'_wpb_vc_js_interface_version','2'),(3568,1829,'_nectar_portfolio_extra_content','[vc_row type=\"full_width_content\" vertically_center_columns=\"true\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"light\" text_align=\"left\"][vc_column width=\"1/2\" animation=\"none\" column_padding=\"no-extra-padding\" background_color=\"#151611\" background_color_opacity=\"1\"][vc_column_text]<iframe src=\"http://player.vimeo.com/video/23711782?title=0&amp;byline=0&amp;portrait=0&amp;color=ffffff&amp;autoplay=1&amp;loop=1\" height=\"309\" width=\"549\" allowfullscreen=\"\" frameborder=\"0\"></iframe>[/vc_column_text][/vc_column][vc_column width=\"1/2\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"flip-in\" column_padding=\"no-extra-padding\"][vc_column_text]\n<h2>A Project By Pedro Conti</h2>\n[divider line_type=\"No Line\" custom_height=\"15\"]\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer lorem quam, adipiscing condimentum tristique vel, eleifend sed turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer lorem quam, adipiscing condimentum tristique vel, eleifend sed turpis.\n\n[button open_new_tab=\"true\" color=\"see-through\" image=\"default-arrow\" size=\"large\" url=\"www.pedroconti.com/\" text=\"Check out Pedro\'s Work\" color_override=\"\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"5\" bottom_padding=\"5\" vertically_center_columns=\"true\" bg_color=\"#303030\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"no-extra-padding\" background_color=\"#303030\" background_color_opacity=\"1\" centered_text=\"true\"][image_with_animation image_url=\"2293\" animation=\"Fade In\" img_link_target=\"_self\"][/vc_column][/vc_row]'),(3569,1829,'_nectar_portfolio_item_layout','enabled'),(3570,1829,'_nectar_portfolio_custom_thumbnail',''),(3571,1829,'_nectar_hide_featured','on'),(3572,1829,'_portfolio_item_masonry_sizing','wide_tall'),(3573,1829,'_nectar_external_project_url',''),(3574,1829,'nectar-metabox-portfolio-parent-override','default'),(3575,1829,'_nectar_project_excerpt',''),(3576,1829,'_nectar_project_accent_color','#50b1ce'),(3577,1829,'_nectar_header_bg',''),(3578,1829,'_nectar_header_parallax','off'),(3579,1829,'_nectar_header_bg_height','570'),(3580,1829,'_nectar_header_bg_color','#020202'),(3581,1829,'_nectar_header_font_color',''),(3582,1829,'_nectar_video_m4v',''),(3583,1829,'_nectar_video_ogv',''),(3584,1829,'_nectar_video_height',''),(3585,1829,'_nectar_video_poster',''),(3586,1829,'_nectar_video_embed',''),(3587,1829,'_nectar_love','1'),(3588,1832,'_edit_last','1'),(3589,1832,'_wpb_vc_js_status','false'),(3590,1832,'_wpb_vc_js_interface_version','2'),(3591,1832,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][image_with_animation image_url=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/no-portfolio-item.jpg\" animation=\"Fade In\" img_link_target=\"_self\"][/vc_column][/vc_row]'),(3592,1832,'_nectar_portfolio_item_layout','disabled'),(3593,1832,'_nectar_portfolio_custom_thumbnail',''),(3594,1832,'_nectar_hide_featured','on'),(3595,1832,'_portfolio_item_masonry_sizing','regular'),(3596,1832,'_nectar_external_project_url',''),(3597,1832,'nectar-metabox-portfolio-parent-override','default'),(3598,1832,'_nectar_project_excerpt',''),(3599,1832,'_nectar_project_accent_color','#14e2ca'),(3600,1832,'_nectar_header_bg',''),(3601,1832,'_nectar_header_parallax','off'),(3602,1832,'_nectar_header_bg_height','350'),(3603,1832,'_nectar_header_bg_color','#020202'),(3604,1832,'_nectar_header_font_color',''),(3605,1832,'_nectar_video_m4v',''),(3606,1832,'_nectar_video_ogv',''),(3607,1832,'_nectar_video_height',''),(3608,1832,'_nectar_video_poster',''),(3609,1832,'_nectar_video_embed',''),(3610,1832,'_nectar_love','1'),(3611,1835,'_edit_last','1'),(3612,1835,'_wpb_vc_js_status','true'),(3613,1835,'_wpb_vc_js_interface_version','2'),(3614,1835,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][image_with_animation image_url=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/no-portfolio-item.jpg\" animation=\"Flip In\" img_link_target=\"_self\"][/vc_column][/vc_row]'),(3615,1835,'_nectar_portfolio_item_layout','disabled'),(3616,1835,'_nectar_portfolio_custom_thumbnail',''),(3617,1835,'_nectar_hide_featured','on'),(3618,1835,'_portfolio_item_masonry_sizing','regular'),(3619,1835,'_nectar_external_project_url',''),(3620,1835,'nectar-metabox-portfolio-parent-override','default'),(3621,1835,'_nectar_project_excerpt',''),(3622,1835,'_nectar_project_accent_color','#9b64c3'),(3623,1835,'_nectar_header_bg',''),(3624,1835,'_nectar_header_parallax','off'),(3625,1835,'_nectar_header_bg_height',''),(3626,1835,'_nectar_header_bg_color',''),(3627,1835,'_nectar_header_font_color',''),(3628,1835,'_nectar_video_m4v',''),(3629,1835,'_nectar_video_ogv',''),(3630,1835,'_nectar_video_height',''),(3631,1835,'_nectar_video_poster',''),(3632,1835,'_nectar_video_embed',''),(3633,1835,'_nectar_love','0'),(3634,1838,'_edit_last','1'),(3635,1838,'_wpb_vc_js_status','false'),(3636,1838,'_wpb_vc_js_interface_version','2'),(3637,1838,'_nectar_portfolio_extra_content','[video poster=\"http://themenectar.com/demo/salient/wp-content/uploads/2013/03/bigBuck.jpg\" ogg=\"http://themenectar.com/demo/salient/video/big_buck_bunny.ogg\" mp4=\"http://themenectar.com/demo/salient/video/big_buck_bunny.mp4\" ]'),(3638,1838,'_nectar_portfolio_item_layout','disabled'),(3639,1838,'_nectar_portfolio_custom_thumbnail',''),(3640,1838,'_nectar_hide_featured','on'),(3641,1838,'_portfolio_item_masonry_sizing','regular'),(3642,1838,'_nectar_external_project_url',''),(3643,1838,'nectar-metabox-portfolio-parent-override','default'),(3644,1838,'_nectar_project_excerpt',''),(3645,1838,'_nectar_project_accent_color','#f3825b'),(3646,1838,'_nectar_header_bg',''),(3647,1838,'_nectar_header_parallax','on'),(3648,1838,'_nectar_header_bg_height','300'),(3649,1838,'_nectar_header_bg_color','#616b6d'),(3650,1838,'_nectar_header_font_color','#ffffff'),(3651,1838,'_nectar_video_m4v',''),(3652,1838,'_nectar_video_ogv',''),(3653,1838,'_nectar_video_height',''),(3654,1838,'_nectar_video_poster',''),(3655,1838,'_nectar_video_embed',''),(3656,1838,'_nectar_love','1'),(3680,1851,'_edit_last','1'),(3681,1851,'_wpb_vc_js_status','true'),(3682,1851,'_wpb_vc_js_interface_version','2'),(3683,1851,'_nectar_portfolio_extra_content','[vc_row][vc_column][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2860,2859,2858,2857,2856,2855,2854,2853,2852,2851,2850,2849,2848,2847,2846,2845,2861,2844,2843,2842,2841,2840,2839,2838,2837,2836,2835,2834,2833,2832,2831,2830,2829,2828,2827,2826,2825,2824,2823,2822,2821,2820,2819,2818,3459,3458,3461,3464,3465,3457,3447,3445,3434\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row]'),(3684,1851,'_nectar_portfolio_item_layout','enabled'),(3685,1851,'_nectar_portfolio_custom_thumbnail','http://punjabyouthclub.com/wp-content/uploads/2015/07/mann035.jpg'),(3686,1851,'_nectar_hide_featured','off'),(3687,1851,'_portfolio_item_masonry_sizing','wide'),(3688,1851,'_nectar_external_project_url',''),(3689,1851,'nectar-metabox-portfolio-parent-override','default'),(3690,1851,'_nectar_project_excerpt',''),(3691,1851,'_nectar_project_accent_color','#8a6f7e'),(3692,1851,'_nectar_header_bg',''),(3693,1851,'_nectar_header_parallax','off'),(3694,1851,'_nectar_header_bg_height',''),(3695,1851,'_nectar_header_bg_color',''),(3696,1851,'_nectar_header_font_color',''),(3697,1851,'_nectar_video_m4v',''),(3698,1851,'_nectar_video_ogv',''),(3699,1851,'_nectar_video_height',''),(3700,1851,'_nectar_video_poster',''),(3701,1851,'_nectar_video_embed',''),(3702,1851,'_nectar_love','1'),(3789,82,'_edit_last','1'),(3790,82,'_nectar_quote',''),(3791,82,'_nectar_link',''),(3792,82,'_nectar_video_m4v',''),(3793,82,'_nectar_video_ogv',''),(3794,82,'_nectar_video_poster',''),(3795,82,'_nectar_video_embed',''),(3796,82,'_nectar_audio_mp3','http://themenectar.com/demo/salient/audio/the_dark_world.mp3'),(3797,82,'_nectar_audio_ogg','http://themenectar.com/demo/salient/audio/the_dark_world.ogg'),(3798,82,'_nectar_love','128'),(3799,82,'_nectar_gallery_slider','off'),(3800,84,'_edit_last','1'),(3801,84,'_nectar_quote',''),(3802,84,'_nectar_link',''),(3803,84,'_nectar_video_m4v','http://themenectar.com/demo/salient/video/big_buck_bunny.mp4'),(3804,84,'_nectar_video_ogv','http://themenectar.com/demo/salient/video/big_buck_bunny.ogg'),(3805,84,'_nectar_video_poster','http://themenectar.com/demo/salient/wp-content/uploads/2013/03/bigBuck.jpg'),(3806,84,'_nectar_video_embed',''),(3807,84,'_nectar_audio_mp3',''),(3808,84,'_nectar_audio_ogg',''),(3809,84,'_nectar_love','838'),(3810,84,'_thumbnail_id','182'),(3811,108,'_edit_last','1'),(3812,108,'_nectar_quote',''),(3813,108,'_nectar_link',''),(3814,108,'_nectar_video_m4v',''),(3815,108,'_nectar_video_ogv',''),(3816,108,'_nectar_video_poster',''),(3817,108,'_nectar_video_embed','<iframe src=\"http://player.vimeo.com/video/53027095\" width=\"800\" height=\"450\" frameborder=\"0\"></iframe> '),(3818,108,'_nectar_audio_mp3',''),(3819,108,'_nectar_audio_ogg',''),(3820,108,'_nectar_love','63'),(3821,108,'_nectar_gallery_slider','off'),(3840,137,'_edit_last','1'),(3841,137,'_nectar_quote',''),(3842,137,'_nectar_link','http://www.themenectar.com'),(3843,137,'_nectar_video_m4v',''),(3844,137,'_nectar_video_ogv',''),(3845,137,'_nectar_video_poster',''),(3846,137,'_nectar_video_embed',''),(3847,137,'_nectar_audio_mp3',''),(3848,137,'_nectar_audio_ogg',''),(3849,137,'_nectar_love','61'),(3850,152,'_edit_last','1'),(3851,152,'_nectar_quote',''),(3852,152,'_nectar_link',''),(3853,152,'_nectar_video_m4v',''),(3854,152,'_nectar_video_ogv',''),(3855,152,'_nectar_video_poster',''),(3856,152,'_nectar_video_embed','<iframe src=\"//player.vimeo.com/video/51478176?title=0&byline=0\" width=\"500\" height=\"281\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> '),(3857,152,'_nectar_audio_mp3',''),(3858,152,'_nectar_audio_ogg',''),(3859,152,'_nectar_love','92'),(3860,152,'_nectar_gallery_slider','off'),(3861,152,'_edit_last','1'),(3862,152,'_nectar_quote',''),(3863,152,'_nectar_link',''),(3864,152,'_nectar_video_m4v',''),(3865,152,'_nectar_video_ogv',''),(3866,152,'_nectar_video_poster',''),(3867,152,'_nectar_video_embed','<iframe src=\"//player.vimeo.com/video/51478176?title=0&byline=0\" width=\"500\" height=\"281\" frameborder=\"0\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> '),(3868,152,'_nectar_audio_mp3',''),(3869,152,'_nectar_audio_ogg',''),(3870,152,'_nectar_love','92'),(3871,152,'_nectar_gallery_slider','off'),(3872,152,'_wpb_vc_js_status','false'),(3873,152,'_wpb_vc_js_interface_version','0'),(3874,152,'_nectar_header_bg',''),(3875,152,'_nectar_header_parallax','off'),(3876,152,'_nectar_header_bg_height',''),(3877,152,'_nectar_header_bg_color',''),(3878,152,'_nectar_header_font_color',''),(3879,559,'_edit_last','1'),(3880,559,'_nectar_quote',''),(3881,559,'_nectar_link',''),(3882,559,'_nectar_video_m4v',''),(3883,559,'_nectar_video_ogv',''),(3884,559,'_nectar_video_poster',''),(3885,559,'_nectar_video_embed',''),(3886,559,'_nectar_audio_mp3',''),(3887,559,'_nectar_audio_ogg',''),(3888,559,'_nectar_love','108'),(3889,559,'_edit_last','1'),(3890,559,'_nectar_quote',''),(3891,559,'_nectar_link',''),(3892,559,'_nectar_video_m4v',''),(3893,559,'_nectar_video_ogv',''),(3894,559,'_nectar_video_poster',''),(3895,559,'_nectar_video_embed',''),(3896,559,'_nectar_audio_mp3',''),(3897,559,'_nectar_audio_ogg',''),(3898,559,'_nectar_love','108'),(3899,559,'_wpb_vc_js_status','false'),(3900,559,'_wpb_vc_js_interface_version','0'),(3901,559,'_nectar_gallery_slider','off'),(3902,559,'_nectar_header_bg',''),(3903,559,'_nectar_header_parallax','off'),(3904,559,'_nectar_header_bg_height',''),(3905,559,'_nectar_header_bg_color',''),(3906,559,'_nectar_header_font_color',''),(3907,1239,'_edit_last','1'),(3908,1239,'_nectar_love','30'),(3909,1239,'_nectar_gallery_slider','off'),(3910,1239,'_nectar_quote',''),(3911,1239,'_nectar_link',''),(3912,1239,'_nectar_video_m4v',''),(3913,1239,'_nectar_video_ogv',''),(3914,1239,'_nectar_video_poster',''),(3915,1239,'_nectar_video_embed',''),(3916,1239,'_nectar_audio_mp3',''),(3917,1239,'_nectar_audio_ogg',''),(3918,1239,'_edit_last','1'),(3919,1239,'_nectar_love','30'),(3920,1239,'_nectar_gallery_slider','off'),(3921,1239,'_nectar_quote',''),(3922,1239,'_nectar_link',''),(3923,1239,'_nectar_video_m4v',''),(3924,1239,'_nectar_video_ogv',''),(3925,1239,'_nectar_video_poster',''),(3926,1239,'_nectar_video_embed',''),(3927,1239,'_nectar_audio_mp3',''),(3928,1239,'_nectar_audio_ogg',''),(3929,1239,'_wpb_vc_js_status','false'),(3930,1239,'_wpb_vc_js_interface_version','0'),(3931,1239,'_nectar_header_bg',''),(3932,1239,'_nectar_header_parallax','off'),(3933,1239,'_nectar_header_bg_height',''),(3934,1239,'_nectar_header_bg_color',''),(3935,1239,'_nectar_header_font_color',''),(3936,1247,'_edit_last','1'),(3937,1247,'_thumbnail_id','1248'),(3938,1247,'_nectar_love','17'),(3939,1247,'_nectar_gallery_slider','off'),(3940,1247,'_nectar_quote',''),(3941,1247,'_nectar_link',''),(3942,1247,'_nectar_video_m4v',''),(3943,1247,'_nectar_video_ogv',''),(3944,1247,'_nectar_video_poster',''),(3945,1247,'_nectar_video_embed',''),(3946,1247,'_nectar_audio_mp3',''),(3947,1247,'_nectar_audio_ogg',''),(3948,1247,'_edit_last','1'),(3949,1247,'_thumbnail_id','1248'),(3950,1247,'_nectar_love','17'),(3951,1247,'_nectar_gallery_slider','off'),(3952,1247,'_nectar_quote',''),(3953,1247,'_nectar_link',''),(3954,1247,'_nectar_video_m4v',''),(3955,1247,'_nectar_video_ogv',''),(3956,1247,'_nectar_video_poster',''),(3957,1247,'_nectar_video_embed',''),(3958,1247,'_nectar_audio_mp3',''),(3959,1247,'_nectar_audio_ogg',''),(3960,2327,'_nectar_quote','Courage is not the absence of fear, but rather the judgement that something else is more important than fear'),(3961,2327,'_nectar_link',''),(3962,2327,'_nectar_video_m4v',''),(3963,2327,'_nectar_video_ogv',''),(3964,2327,'_nectar_video_poster',''),(3965,2327,'_nectar_video_embed',''),(3966,2327,'_nectar_audio_mp3',''),(3967,2327,'_nectar_audio_ogg',''),(3968,2327,'_edit_last','1'),(3969,2327,'_nectar_love','355'),(3970,2327,'_nectar_quote','Courage is not the absence of fear, but rather the judgement that something else is more important than fear'),(3971,2327,'_nectar_link',''),(3972,2327,'_nectar_video_m4v',''),(3973,2327,'_nectar_video_ogv',''),(3974,2327,'_nectar_video_poster',''),(3975,2327,'_nectar_video_embed',''),(3976,2327,'_nectar_audio_mp3',''),(3977,2327,'_nectar_audio_ogg',''),(3978,2327,'_edit_last','1'),(3979,2327,'_nectar_love','355'),(3980,2328,'_edit_last','1'),(3981,2328,'_nectar_quote',''),(3982,2328,'_nectar_link',''),(3983,2328,'_nectar_video_m4v',''),(3984,2328,'_nectar_video_ogv',''),(3985,2328,'_nectar_video_poster',''),(3986,2328,'_nectar_video_embed',''),(3987,2328,'_nectar_audio_mp3',''),(3988,2328,'_nectar_audio_ogg',''),(3989,2328,'_nectar_love','162'),(3990,2328,'_edit_last','1'),(3991,2328,'_nectar_quote',''),(3992,2328,'_nectar_link',''),(3993,2328,'_nectar_video_m4v',''),(3994,2328,'_nectar_video_ogv',''),(3995,2328,'_nectar_video_poster',''),(3996,2328,'_nectar_video_embed',''),(3997,2328,'_nectar_audio_mp3',''),(3998,2328,'_nectar_audio_ogg',''),(3999,2328,'_nectar_love','162'),(4000,2328,'_wpb_vc_js_status','false'),(4001,2328,'_wpb_vc_js_interface_version','0'),(4002,2328,'_nectar_gallery_slider','off'),(4003,2328,'_nectar_header_bg',''),(4004,2328,'_nectar_header_parallax','off'),(4005,2328,'_nectar_header_bg_height',''),(4006,2328,'_nectar_header_bg_color',''),(4007,2328,'_nectar_header_font_color',''),(4008,2329,'_edit_last','1'),(4009,2329,'_nectar_quote',''),(4010,2329,'_nectar_link',''),(4011,2329,'_nectar_video_m4v',''),(4012,2329,'_nectar_video_ogv',''),(4013,2329,'_nectar_video_poster',''),(4014,2329,'_nectar_video_embed',''),(4015,2329,'_nectar_audio_mp3',''),(4016,2329,'_nectar_audio_ogg',''),(4017,2329,'_nectar_love','73'),(4018,2329,'_edit_last','1'),(4019,2329,'_nectar_quote',''),(4020,2329,'_nectar_link',''),(4021,2329,'_nectar_video_m4v',''),(4022,2329,'_nectar_video_ogv',''),(4023,2329,'_nectar_video_poster',''),(4024,2329,'_nectar_video_embed',''),(4025,2329,'_nectar_audio_mp3',''),(4026,2329,'_nectar_audio_ogg',''),(4027,2329,'_nectar_love','73'),(4028,2329,'_wpb_vc_js_status','false'),(4029,2329,'_wpb_vc_js_interface_version','0'),(4030,2329,'_nectar_gallery_slider','off'),(4031,2329,'_nectar_header_bg',''),(4032,2329,'_nectar_header_parallax','off'),(4033,2329,'_nectar_header_bg_height',''),(4034,2329,'_nectar_header_bg_color',''),(4035,2329,'_nectar_header_font_color',''),(4100,2753,'_menu_item_type','post_type'),(4101,2753,'_menu_item_menu_item_parent','2728'),(4102,2753,'_menu_item_object_id','2744'),(4103,2753,'_menu_item_object','page'),(4104,2753,'_menu_item_target',''),(4105,2753,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4106,2753,'_menu_item_xfn',''),(4107,2753,'_menu_item_url',''),(4148,2759,'_menu_item_type','post_type'),(4149,2759,'_menu_item_menu_item_parent','2740'),(4150,2759,'_menu_item_object_id','743'),(4151,2759,'_menu_item_object','page'),(4152,2759,'_menu_item_target',''),(4153,2759,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4154,2759,'_menu_item_xfn',''),(4155,2759,'_menu_item_url',''),(4316,2744,'_edit_lock','1474815024:1'),(4319,2744,'_disable_transparent_header','off'),(4320,2744,'_force_transparent_header','off'),(4321,2781,'_menu_item_type','custom'),(4322,2781,'_menu_item_menu_item_parent','0'),(4323,2781,'_menu_item_object_id','2781'),(4324,2781,'_menu_item_object','custom'),(4325,2781,'_menu_item_target',''),(4326,2781,'_menu_item_classes','a:2:{i:0;s:8:\"megamenu\";i:1;s:6:\"column\";}'),(4327,2781,'_menu_item_xfn',''),(4328,2781,'_menu_item_url','http://punjabyouthclub.com/'),(4334,2784,'_wp_attached_file','2015/07/mann035.jpg'),(4335,2784,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2015/07/mann035.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann035-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:\"mann035-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann035-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann035-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann035-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann035-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann035-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann035-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4340,2787,'_wp_attached_file','2015/07/IMG_3101.jpg'),(4341,2787,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2015/07/IMG_3101.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3101-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3101-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3101-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3101-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3101-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3101-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3101-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3101-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4342,2622,'_edit_lock','1436547291:1'),(4343,2788,'_wp_attached_file','2015/07/logo_test.jpg'),(4344,2788,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:133;s:4:\"file\";s:21:\"2015/07/logo_test.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"logo_test-150x133.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"logo_test-300x67.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"logo_test-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"logo_test-600x133.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"logo_test-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"logo_test-500x133.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"logo_test-500x133.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4346,1242,'_edit_lock','1436774544:1'),(4347,652,'_edit_lock','1436539980:1'),(4348,2790,'_wp_attached_file','2015/07/PYC-logo-new-3B-e1436767850903.png'),(4349,2790,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:42:\"2015/07/PYC-logo-new-3B-e1436767850903.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"PYC-logo-new-3B-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:27:\"PYC-logo-new-3B-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:29:\"PYC-logo-new-3B-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"PYC-logo-new-3B-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"PYC-logo-new-3B-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"PYC-logo-new-3B-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:28:\"PYC-logo-new-3B-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:27:\"PYC-logo-new-3B-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:28:\"PYC-logo-new-3B-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:29:\"PYC-logo-new-3B-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4356,2796,'_wp_attached_file','2015/07/PYC_Banner_Logo.png'),(4357,2796,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:748;s:6:\"height\";i:120;s:4:\"file\";s:27:\"2015/07/PYC_Banner_Logo.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"PYC_Banner_Logo-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"PYC_Banner_Logo-300x48.png\";s:5:\"width\";i:300;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"PYC_Banner_Logo-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"PYC_Banner_Logo-600x120.png\";s:5:\"width\";i:600;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"PYC_Banner_Logo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:27:\"PYC_Banner_Logo-500x120.png\";s:5:\"width\";i:500;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:27:\"PYC_Banner_Logo-500x120.png\";s:5:\"width\";i:500;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4358,2797,'_wp_attached_file','2015/07/PYC_Banner_Logo-1.png'),(4359,2797,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:748;s:6:\"height\";i:120;s:4:\"file\";s:29:\"2015/07/PYC_Banner_Logo-1.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"PYC_Banner_Logo-1-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"PYC_Banner_Logo-1-300x48.png\";s:5:\"width\";i:300;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:27:\"PYC_Banner_Logo-1-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:29:\"PYC_Banner_Logo-1-600x120.png\";s:5:\"width\";i:600;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:29:\"PYC_Banner_Logo-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:29:\"PYC_Banner_Logo-1-500x120.png\";s:5:\"width\";i:500;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:29:\"PYC_Banner_Logo-1-500x120.png\";s:5:\"width\";i:500;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4360,743,'_edit_lock','1436931441:1'),(4361,1851,'_edit_lock','1473291966:1'),(4362,1851,'_disable_transparent_header','on'),(4363,2622,'_edit_last','1'),(4364,743,'_disable_transparent_header','off'),(4365,743,'_force_transparent_header','off'),(4369,2811,'_wp_attached_file','2013/06/pchetna-Logo-copy.jpg'),(4370,2811,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:615;s:6:\"height\";i:615;s:4:\"file\";s:29:\"2013/06/pchetna-Logo-copy.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"pchetna-Logo-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"pchetna-Logo-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:27:\"pchetna-Logo-copy-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:29:\"pchetna-Logo-copy-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:29:\"pchetna-Logo-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:29:\"pchetna-Logo-copy-615x500.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:29:\"pchetna-Logo-copy-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:29:\"pchetna-Logo-copy-500x615.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:615;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4371,2784,'_nectar_love','0'),(4372,2818,'_wp_attached_file','2014/03/DSC07235.jpg'),(4373,2818,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/DSC07235.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC07235-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:\"DSC07235-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC07235-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC07235-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC07235-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"DSC07235-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC07235-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"DSC07235-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4374,2819,'_wp_attached_file','2014/03/IMG_3101.jpg'),(4375,2819,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3101.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3101-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3101-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3101-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3101-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3101-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3101-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3101-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3101-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4376,2820,'_wp_attached_file','2014/03/IMG_3102.jpg'),(4377,2820,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3102.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3102-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3102-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3102-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3102-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3102-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3102-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3102-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3102-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4378,2821,'_wp_attached_file','2014/03/IMG_3104.jpg'),(4379,2821,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3104.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3104-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3104-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3104-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3104-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3104-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3104-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3104-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3104-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4380,2822,'_wp_attached_file','2014/03/IMG_3105.jpg'),(4381,2822,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3105.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3105-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3105-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3105-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3105-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3105-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3105-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3105-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3105-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4382,2823,'_wp_attached_file','2014/03/IMG_3114.jpg'),(4383,2823,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3114.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3114-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3114-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3114-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3114-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3114-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3114-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3114-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3114-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4384,2824,'_wp_attached_file','2014/03/IMG_3115.jpg'),(4385,2824,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3115.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3115-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3115-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3115-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3115-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3115-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3115-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3115-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3115-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4386,2825,'_wp_attached_file','2014/03/IMG_3117.jpg'),(4387,2825,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3117.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3117-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3117-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3117-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3117-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3117-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3117-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3117-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3117-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4388,2826,'_wp_attached_file','2014/03/IMG_3119.jpg'),(4389,2826,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3119.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3119-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3119-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3119-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3119-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3119-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3119-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3119-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3119-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4390,2827,'_wp_attached_file','2014/03/IMG_3123.jpg'),(4391,2827,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3123.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3123-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3123-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3123-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3123-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3123-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3123-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3123-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3123-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4392,2828,'_wp_attached_file','2014/03/IMG_3125.jpg'),(4393,2828,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3125.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3125-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3125-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3125-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3125-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3125-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3125-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3125-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3125-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4394,2829,'_wp_attached_file','2014/03/IMG_3126.jpg'),(4395,2829,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3126.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3126-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3126-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3126-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3126-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3126-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3126-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3126-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3126-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4396,2830,'_wp_attached_file','2014/03/IMG_3128.jpg'),(4397,2830,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3128.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3128-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3128-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3128-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3128-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3128-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3128-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3128-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3128-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4398,2831,'_wp_attached_file','2014/03/IMG_3133.jpg'),(4399,2831,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3133.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3133-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3133-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3133-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3133-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3133-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3133-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3133-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3133-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4400,2832,'_wp_attached_file','2014/03/IMG_3137.jpg'),(4401,2832,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3137.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3137-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3137-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3137-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3137-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3137-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3137-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3137-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3137-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4402,2833,'_wp_attached_file','2014/03/IMG_3143.jpg'),(4403,2833,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3143.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3143-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3143-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3143-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3143-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3143-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3143-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3143-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3143-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4404,2834,'_wp_attached_file','2014/03/IMG_3144.jpg'),(4405,2834,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3144.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3144-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3144-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3144-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3144-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3144-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3144-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3144-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3144-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4406,2835,'_wp_attached_file','2014/03/IMG_3145.jpg'),(4407,2835,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3145.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3145-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3145-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3145-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3145-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3145-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3145-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3145-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3145-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4408,2836,'_wp_attached_file','2014/03/IMG_3147.jpg'),(4409,2836,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3147.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3147-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3147-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3147-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3147-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3147-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3147-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3147-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3147-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4410,2837,'_wp_attached_file','2014/03/IMG_3150.jpg'),(4411,2837,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3150.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3150-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3150-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3150-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3150-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3150-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3150-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3150-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3150-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4412,2838,'_wp_attached_file','2014/03/IMG_3157.jpg'),(4413,2838,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3157.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3157-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3157-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3157-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3157-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3157-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3157-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3157-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3157-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4414,2839,'_wp_attached_file','2014/03/IMG_3161.jpg'),(4415,2839,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3161.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3161-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3161-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3161-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3161-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3161-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3161-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3161-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3161-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4416,2840,'_wp_attached_file','2014/03/IMG_3162.jpg'),(4417,2840,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3162.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3162-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3162-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3162-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3162-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3162-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3162-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3162-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3162-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4418,2841,'_wp_attached_file','2014/03/IMG_3163.jpg'),(4419,2841,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3163.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3163-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3163-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3163-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3163-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3163-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3163-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3163-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3163-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4420,2842,'_wp_attached_file','2014/03/IMG_3166.jpg'),(4421,2842,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3166.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3166-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3166-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3166-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3166-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3166-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3166-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3166-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3166-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4422,2843,'_wp_attached_file','2014/03/IMG_3173.jpg'),(4423,2843,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/IMG_3173.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3173-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3173-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3173-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3173-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3173-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"IMG_3173-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3173-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"IMG_3173-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4424,2844,'_wp_attached_file','2014/03/IMG_3183.jpg'),(4425,2844,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2357;s:6:\"height\";i:1661;s:4:\"file\";s:20:\"2014/03/IMG_3183.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3183-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3183-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3183-1024x722.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3183-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3183-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3183-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"IMG_3183-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3183-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"IMG_3183-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"IMG_3183-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4426,2845,'_wp_attached_file','2014/03/mann004.jpg'),(4427,2845,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:19:\"2014/03/mann004.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann004-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:\"mann004-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"mann004-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann004-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann004-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann004-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"mann004-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann004-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"mann004-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:21:\"mann004-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4428,2846,'_wp_attached_file','2014/03/mann006.jpg'),(4429,2846,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2014/03/mann006.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann006-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:\"mann006-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann006-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann006-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann006-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann006-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann006-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann006-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4430,2847,'_wp_attached_file','2014/03/mann007.jpg'),(4431,2847,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:681;s:4:\"file\";s:19:\"2014/03/mann007.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann007-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:\"mann007-300x255.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann007-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann007-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann007-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann007-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann007-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann007-500x681.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4432,2848,'_wp_attached_file','2014/03/mann008.jpg'),(4433,2848,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:801;s:4:\"file\";s:19:\"2014/03/mann008.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann008-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:\"mann008-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann008-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann008-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann008-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann008-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann008-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann008-500x801.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4434,2849,'_wp_attached_file','2014/03/mann009.jpg'),(4435,2849,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2014/03/mann009.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann009-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:\"mann009-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann009-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann009-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann009-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann009-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann009-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann009-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4436,2850,'_wp_attached_file','2014/03/mann010.jpg'),(4437,2850,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1067;s:4:\"file\";s:19:\"2014/03/mann010.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann010-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:\"mann010-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"mann010-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann010-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann010-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann010-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann010-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann010-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"mann010-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:20:\"mann010-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4438,2851,'_wp_attached_file','2014/03/mann011.jpg'),(4439,2851,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:801;s:6:\"height\";i:601;s:4:\"file\";s:19:\"2014/03/mann011.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann011-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:\"mann011-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann011-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann011-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann011-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann011-801x500.jpg\";s:5:\"width\";i:801;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann011-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann011-500x601.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4440,2852,'_wp_attached_file','2014/03/mann012.jpg'),(4441,2852,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2014/03/mann012.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann012-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:\"mann012-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann012-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann012-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann012-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann012-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann012-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann012-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4442,2853,'_wp_attached_file','2014/03/mann013.jpg'),(4443,2853,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2014/03/mann013.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann013-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:\"mann013-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann013-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann013-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann013-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann013-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann013-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann013-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4444,2854,'_wp_attached_file','2014/03/mann015.jpg'),(4445,2854,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2014/03/mann015.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann015-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:\"mann015-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann015-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann015-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann015-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann015-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann015-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann015-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4446,2855,'_wp_attached_file','2014/03/mann023.jpg'),(4447,2855,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2014/03/mann023.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann023-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:\"mann023-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann023-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann023-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann023-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann023-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann023-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann023-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4448,2856,'_wp_attached_file','2014/03/mann024.jpg'),(4449,2856,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2014/03/mann024.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann024-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:\"mann024-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann024-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann024-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann024-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann024-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann024-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann024-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4450,2857,'_wp_attached_file','2014/03/mann026.jpg'),(4451,2857,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2014/03/mann026.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann026-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:\"mann026-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann026-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann026-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann026-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann026-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann026-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann026-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4452,2858,'_wp_attached_file','2014/03/mann027.jpg'),(4453,2858,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2014/03/mann027.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann027-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:\"mann027-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann027-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann027-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann027-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann027-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann027-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann027-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4454,2859,'_wp_attached_file','2014/03/mann028.jpg'),(4455,2859,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2014/03/mann028.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann028-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:\"mann028-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann028-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann028-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann028-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann028-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann028-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann028-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4456,2860,'_wp_attached_file','2014/03/mann034.jpg'),(4457,2860,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2014/03/mann034.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann034-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:\"mann034-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann034-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann034-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann034-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann034-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann034-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann034-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4458,2861,'_wp_attached_file','2014/03/mann037.jpg'),(4459,2861,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2014/03/mann037.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann037-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:\"mann037-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann037-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann037-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann037-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"mann037-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann037-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"mann037-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4460,2867,'_menu_item_type','post_type'),(4461,2867,'_menu_item_menu_item_parent','0'),(4462,2867,'_menu_item_object_id','743'),(4463,2867,'_menu_item_object','page'),(4464,2867,'_menu_item_target',''),(4465,2867,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4466,2867,'_menu_item_xfn',''),(4467,2867,'_menu_item_url',''),(4469,2869,'_wp_attached_file','2015/07/NO-DRUGS_2014-copy.jpg'),(4470,2869,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:30:\"2015/07/NO-DRUGS_2014-copy.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"NO-DRUGS_2014-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"NO-DRUGS_2014-copy-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:32:\"NO-DRUGS_2014-copy-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:28:\"NO-DRUGS_2014-copy-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:30:\"NO-DRUGS_2014-copy-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:30:\"NO-DRUGS_2014-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:31:\"NO-DRUGS_2014-copy-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:30:\"NO-DRUGS_2014-copy-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:31:\"NO-DRUGS_2014-copy-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:32:\"NO-DRUGS_2014-copy-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4473,2871,'_wp_attached_file','2015/07/NO-DRUGS_2014-B-copy.jpg'),(4474,2871,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:32:\"2015/07/NO-DRUGS_2014-B-copy.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"NO-DRUGS_2014-B-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"NO-DRUGS_2014-B-copy-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:34:\"NO-DRUGS_2014-B-copy-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:30:\"NO-DRUGS_2014-B-copy-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:32:\"NO-DRUGS_2014-B-copy-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:32:\"NO-DRUGS_2014-B-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:33:\"NO-DRUGS_2014-B-copy-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:32:\"NO-DRUGS_2014-B-copy-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:33:\"NO-DRUGS_2014-B-copy-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:34:\"NO-DRUGS_2014-B-copy-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4475,2872,'_wp_attached_file','2015/07/No-Drugs-PBC_S.jpg'),(4476,2872,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4134;s:6:\"height\";i:4134;s:4:\"file\";s:26:\"2015/07/No-Drugs-PBC_S.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"No-Drugs-PBC_S-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"No-Drugs-PBC_S-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"No-Drugs-PBC_S-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:24:\"No-Drugs-PBC_S-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:26:\"No-Drugs-PBC_S-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:26:\"No-Drugs-PBC_S-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:27:\"No-Drugs-PBC_S-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:26:\"No-Drugs-PBC_S-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:27:\"No-Drugs-PBC_S-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:28:\"No-Drugs-PBC_S-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4477,2873,'_wp_attached_file','2015/07/KGM-hockey_-2014-NO-DRUGS1.png'),(4478,2873,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4961;s:6:\"height\";i:3508;s:4:\"file\";s:38:\"2015/07/KGM-hockey_-2014-NO-DRUGS1.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"KGM-hockey_-2014-NO-DRUGS1-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:38:\"KGM-hockey_-2014-NO-DRUGS1-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-2014-NO-DRUGS1-1024x724.png\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:36:\"KGM-hockey_-2014-NO-DRUGS1-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:38:\"KGM-hockey_-2014-NO-DRUGS1-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:38:\"KGM-hockey_-2014-NO-DRUGS1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-2014-NO-DRUGS1-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:38:\"KGM-hockey_-2014-NO-DRUGS1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-2014-NO-DRUGS1-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:40:\"KGM-hockey_-2014-NO-DRUGS1-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4479,2874,'_wp_attached_file','2015/07/KGM-hockey_-2014-NO-DRUGS-1.png'),(4480,2874,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4961;s:6:\"height\";i:3508;s:4:\"file\";s:39:\"2015/07/KGM-hockey_-2014-NO-DRUGS-1.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-2014-NO-DRUGS-1-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:\"KGM-hockey_-2014-NO-DRUGS-1-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"KGM-hockey_-2014-NO-DRUGS-1-1024x724.png\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:37:\"KGM-hockey_-2014-NO-DRUGS-1-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-2014-NO-DRUGS-1-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-2014-NO-DRUGS-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:40:\"KGM-hockey_-2014-NO-DRUGS-1-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-2014-NO-DRUGS-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:40:\"KGM-hockey_-2014-NO-DRUGS-1-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:41:\"KGM-hockey_-2014-NO-DRUGS-1-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4481,2875,'_wp_attached_file','2015/07/KGM-hockey_-2014-NO-DRUGS-2-e1436552212686.png'),(4482,2875,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:212;s:4:\"file\";s:54:\"2015/07/KGM-hockey_-2014-NO-DRUGS-2-e1436552212686.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-2014-NO-DRUGS-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:39:\"KGM-hockey_-2014-NO-DRUGS-2-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"KGM-hockey_-2014-NO-DRUGS-2-1024x724.png\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:37:\"KGM-hockey_-2014-NO-DRUGS-2-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-2014-NO-DRUGS-2-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-2014-NO-DRUGS-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:40:\"KGM-hockey_-2014-NO-DRUGS-2-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-2014-NO-DRUGS-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:40:\"KGM-hockey_-2014-NO-DRUGS-2-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:41:\"KGM-hockey_-2014-NO-DRUGS-2-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4483,2876,'_wp_attached_file','2015/07/KGM-hockey_-2014-NO-DRUGS-3.png'),(4484,2876,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4961;s:6:\"height\";i:3508;s:4:\"file\";s:39:\"2015/07/KGM-hockey_-2014-NO-DRUGS-3.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-2014-NO-DRUGS-3-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:\"KGM-hockey_-2014-NO-DRUGS-3-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"KGM-hockey_-2014-NO-DRUGS-3-1024x724.png\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:37:\"KGM-hockey_-2014-NO-DRUGS-3-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-2014-NO-DRUGS-3-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-2014-NO-DRUGS-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:40:\"KGM-hockey_-2014-NO-DRUGS-3-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-2014-NO-DRUGS-3-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:40:\"KGM-hockey_-2014-NO-DRUGS-3-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:41:\"KGM-hockey_-2014-NO-DRUGS-3-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4485,2877,'_wp_attached_file','2015/07/NO-DRUGS_2014-C-copy.jpg'),(4486,2877,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:32:\"2015/07/NO-DRUGS_2014-C-copy.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"NO-DRUGS_2014-C-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"NO-DRUGS_2014-C-copy-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:34:\"NO-DRUGS_2014-C-copy-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:30:\"NO-DRUGS_2014-C-copy-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:32:\"NO-DRUGS_2014-C-copy-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:32:\"NO-DRUGS_2014-C-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:33:\"NO-DRUGS_2014-C-copy-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:32:\"NO-DRUGS_2014-C-copy-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:33:\"NO-DRUGS_2014-C-copy-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:34:\"NO-DRUGS_2014-C-copy-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4487,2879,'_wp_attached_file','2015/07/IMG_9637a-e1436550332352.jpg'),(4488,2879,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:588;s:4:\"file\";s:36:\"2015/07/IMG_9637a-e1436550332352.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"IMG_9637a-e1436550332352-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"IMG_9637a-e1436550332352-300x110.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"IMG_9637a-e1436550332352-1024x376.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:376;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:34:\"IMG_9637a-e1436550332352-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:36:\"IMG_9637a-e1436550332352-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:36:\"IMG_9637a-e1436550332352-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:37:\"IMG_9637a-e1436550332352-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:36:\"IMG_9637a-e1436550332352-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:36:\"IMG_9637a-e1436550332352-500x588.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:37:\"IMG_9637a-e1436550332352-1000x588.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4489,2879,'_edit_lock','1436550210:1'),(4490,2879,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1600;s:6:\"height\";i:692;s:4:\"file\";s:13:\"IMG_9637a.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:21:\"IMG_9637a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:21:\"IMG_9637a-300x130.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:22:\"IMG_9637a-1024x443.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"blog-widget-orig\";a:4:{s:4:\"file\";s:19:\"IMG_9637a-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"portfolio-thumb-orig\";a:4:{s:4:\"file\";s:21:\"IMG_9637a-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"portfolio-widget-orig\";a:4:{s:4:\"file\";s:21:\"IMG_9637a-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide-orig\";a:4:{s:4:\"file\";s:22:\"IMG_9637a-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"regular-orig\";a:4:{s:4:\"file\";s:21:\"IMG_9637a-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tall-orig\";a:4:{s:4:\"file\";s:21:\"IMG_9637a-500x692.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:692;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"wide_tall-orig\";a:4:{s:4:\"file\";s:22:\"IMG_9637a-1000x692.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:692;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(4491,2879,'_edit_last','1'),(4492,2882,'_edit_last','1'),(4493,2882,'_nectar_slider_bg_type','image_bg'),(4494,2882,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2015/07/KGM-hockey_-2014-NO-DRUGS-3.png'),(4495,2882,'_nectar_media_upload_webm',''),(4496,2882,'_nectar_media_upload_mp4',''),(4497,2882,'_nectar_media_upload_ogv',''),(4498,2882,'_nectar_slider_preview_image',''),(4499,2882,'_nectar_slider_video_texture','off'),(4500,2882,'_nectar_slider_slide_bg_alignment','center'),(4501,2882,'_nectar_slider_slide_font_color','light'),(4502,2882,'_nectar_slider_heading',''),(4503,2882,'_nectar_slider_caption',''),(4504,2882,'_nectar_slider_caption_background','off'),(4505,2882,'_nectar_slider_down_arrow','off'),(4506,2882,'_nectar_slider_link_type','full_slide_link'),(4507,2882,'_nectar_slider_button',''),(4508,2882,'_nectar_slider_button_url',''),(4509,2882,'_nectar_slider_button_style','solid_color'),(4510,2882,'_nectar_slider_button_color','primary-color'),(4511,2882,'_nectar_slider_button_2',''),(4512,2882,'_nectar_slider_button_url_2',''),(4513,2882,'_nectar_slider_button_style_2','solid_color'),(4514,2882,'_nectar_slider_button_color_2','primary-color'),(4515,2882,'_nectar_slider_entire_link',''),(4516,2882,'_nectar_slider_video_popup',''),(4517,2882,'_nectar_slide_xpos_alignment','centered'),(4518,2882,'_nectar_slide_ypos_alignment','bottom'),(4519,2882,'_nectar_slider_slide_custom_class',''),(4520,2882,'_edit_lock','1436551997:1'),(4521,2875,'_edit_lock','1436569381:1'),(4522,2875,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:4961;s:6:\"height\";i:3508;s:4:\"file\";s:31:\"KGM-hockey_-2014-NO-DRUGS-2.png\";}}'),(4523,2875,'_edit_last','1'),(4524,2885,'_edit_last','1'),(4525,2885,'_nectar_slider_bg_type','image_bg'),(4526,2885,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2015/07/NO-DRUGS-1.jpg'),(4527,2885,'_nectar_media_upload_webm',''),(4528,2885,'_nectar_media_upload_mp4',''),(4529,2885,'_nectar_media_upload_ogv',''),(4530,2885,'_nectar_slider_preview_image',''),(4531,2885,'_nectar_slider_video_texture','off'),(4532,2885,'_nectar_slider_slide_bg_alignment','center'),(4533,2885,'_nectar_slider_slide_font_color','light'),(4534,2885,'_nectar_slider_heading',''),(4535,2885,'_nectar_slider_caption',''),(4536,2885,'_nectar_slider_caption_background','off'),(4537,2885,'_nectar_slider_down_arrow','off'),(4538,2885,'_nectar_slider_link_type','button_links'),(4539,2885,'_nectar_slider_button',''),(4540,2885,'_nectar_slider_button_url',''),(4541,2885,'_nectar_slider_button_style','solid_color'),(4542,2885,'_nectar_slider_button_color','primary-color'),(4543,2885,'_nectar_slider_button_2',''),(4544,2885,'_nectar_slider_button_url_2',''),(4545,2885,'_nectar_slider_button_style_2','solid_color'),(4546,2885,'_nectar_slider_button_color_2','primary-color'),(4547,2885,'_nectar_slider_entire_link',''),(4548,2885,'_nectar_slider_video_popup',''),(4549,2885,'_nectar_slide_xpos_alignment','left'),(4550,2885,'_nectar_slide_ypos_alignment','middle'),(4551,2885,'_nectar_slider_slide_custom_class',''),(4552,2885,'_edit_lock','1436570763:1'),(4554,2886,'_wp_attached_file','2014/03/kd.jpg'),(4555,2886,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:14:\"2014/03/kd.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"kd-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:\"kd-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:12:\"kd-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:14:\"kd-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:14:\"kd-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:14:\"kd-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:14:\"kd-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:14:\"kd-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4558,2890,'_wp_attached_file','2015/07/NO-DRUGS-1.jpg'),(4559,2890,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:707;s:4:\"file\";s:22:\"2015/07/NO-DRUGS-1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-1-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"NO-DRUGS-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-1-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:23:\"NO-DRUGS-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-1-500x707.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"NO-DRUGS-1-1000x707.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4562,2892,'_wp_attached_file','2015/07/NO-DRUGS-2.jpg'),(4563,2892,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:707;s:4:\"file\";s:22:\"2015/07/NO-DRUGS-2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-2-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"NO-DRUGS-2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-2-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:23:\"NO-DRUGS-2-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-2-500x707.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"NO-DRUGS-2-1000x707.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4564,2893,'_wp_attached_file','2015/07/NO-DRUGS-3.jpg'),(4565,2893,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:707;s:4:\"file\";s:22:\"2015/07/NO-DRUGS-3.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-3-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"NO-DRUGS-3-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-3-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:23:\"NO-DRUGS-3-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-3-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"NO-DRUGS-3-500x707.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"NO-DRUGS-3-1000x707.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4566,2895,'_wp_attached_file','2013/06/2014-NO-DRUGS.jpg'),(4567,2895,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:707;s:4:\"file\";s:25:\"2013/06/2014-NO-DRUGS.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"2014-NO-DRUGS-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:\"2014-NO-DRUGS-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:23:\"2014-NO-DRUGS-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:25:\"2014-NO-DRUGS-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:25:\"2014-NO-DRUGS-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:26:\"2014-NO-DRUGS-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:25:\"2014-NO-DRUGS-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:25:\"2014-NO-DRUGS-500x707.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:26:\"2014-NO-DRUGS-1000x707.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4569,2908,'_wp_attached_file','2015/07/hist_pun_1.jpg'),(4570,2908,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:781;s:6:\"height\";i:362;s:4:\"file\";s:22:\"2015/07/hist_pun_1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"hist_pun_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"hist_pun_1-300x139.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"hist_pun_1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"hist_pun_1-600x362.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"hist_pun_1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"hist_pun_1-500x362.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"hist_pun_1-500x362.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4571,2910,'_wp_attached_file','2015/07/hist_pun_2.jpg'),(4572,2910,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:781;s:6:\"height\";i:430;s:4:\"file\";s:22:\"2015/07/hist_pun_2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"hist_pun_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"hist_pun_2-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"hist_pun_2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"hist_pun_2-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"hist_pun_2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"hist_pun_2-500x430.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"hist_pun_2-500x430.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4573,2911,'_wp_attached_file','2015/07/hist_pun_3.jpg'),(4574,2911,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:781;s:6:\"height\";i:382;s:4:\"file\";s:22:\"2015/07/hist_pun_3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"hist_pun_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"hist_pun_3-300x147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"hist_pun_3-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"hist_pun_3-600x382.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"hist_pun_3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"hist_pun_3-500x382.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"hist_pun_3-500x382.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4575,2913,'_wp_attached_file','2013/06/kd1.jpg'),(4576,2913,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2013/06/kd1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"kd1-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:\"kd1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"kd1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"kd1-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"kd1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"kd1-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"kd1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"kd1-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4577,2914,'_wp_attached_file','2013/06/kd11.jpg'),(4578,2914,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:16:\"2013/06/kd11.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd11-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:\"kd11-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd11-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd11-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd11-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd11-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd11-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4579,2915,'_wp_attached_file','2013/06/kd34.jpg'),(4580,2915,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:16:\"2013/06/kd34.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd34-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:\"kd34-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd34-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd34-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd34-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd34-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd34-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd34-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4586,2920,'_wp_attached_file','2015/07/PYC_Banner_Logo_long.png'),(4587,2920,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2268;s:6:\"height\";i:180;s:4:\"file\";s:32:\"2015/07/PYC_Banner_Logo_long.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"PYC_Banner_Logo_long-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:31:\"PYC_Banner_Logo_long-300x24.png\";s:5:\"width\";i:300;s:6:\"height\";i:24;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"PYC_Banner_Logo_long-1024x81.png\";s:5:\"width\";i:1024;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:30:\"PYC_Banner_Logo_long-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:32:\"PYC_Banner_Logo_long-600x180.png\";s:5:\"width\";i:600;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:32:\"PYC_Banner_Logo_long-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:33:\"PYC_Banner_Logo_long-1000x180.png\";s:5:\"width\";i:1000;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:32:\"PYC_Banner_Logo_long-500x180.png\";s:5:\"width\";i:500;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:32:\"PYC_Banner_Logo_long-500x180.png\";s:5:\"width\";i:500;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:33:\"PYC_Banner_Logo_long-1000x180.png\";s:5:\"width\";i:1000;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4588,2921,'_wp_attached_file','2015/07/PYC_Banner_Logo_long-1.png'),(4589,2921,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1908;s:6:\"height\";i:180;s:4:\"file\";s:34:\"2015/07/PYC_Banner_Logo_long-1.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"PYC_Banner_Logo_long-1-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:33:\"PYC_Banner_Logo_long-1-300x28.png\";s:5:\"width\";i:300;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"PYC_Banner_Logo_long-1-1024x97.png\";s:5:\"width\";i:1024;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:32:\"PYC_Banner_Logo_long-1-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:34:\"PYC_Banner_Logo_long-1-600x180.png\";s:5:\"width\";i:600;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:34:\"PYC_Banner_Logo_long-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:35:\"PYC_Banner_Logo_long-1-1000x180.png\";s:5:\"width\";i:1000;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:34:\"PYC_Banner_Logo_long-1-500x180.png\";s:5:\"width\";i:500;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:34:\"PYC_Banner_Logo_long-1-500x180.png\";s:5:\"width\";i:500;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:35:\"PYC_Banner_Logo_long-1-1000x180.png\";s:5:\"width\";i:1000;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4590,2922,'_wp_attached_file','2015/07/PYC_Banner_Logo_long-2.png'),(4591,2922,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1872;s:6:\"height\";i:237;s:4:\"file\";s:34:\"2015/07/PYC_Banner_Logo_long-2.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"PYC_Banner_Logo_long-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:33:\"PYC_Banner_Logo_long-2-300x38.png\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"PYC_Banner_Logo_long-2-1024x130.png\";s:5:\"width\";i:1024;s:6:\"height\";i:130;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:32:\"PYC_Banner_Logo_long-2-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:34:\"PYC_Banner_Logo_long-2-600x237.png\";s:5:\"width\";i:600;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:34:\"PYC_Banner_Logo_long-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:35:\"PYC_Banner_Logo_long-2-1000x237.png\";s:5:\"width\";i:1000;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:34:\"PYC_Banner_Logo_long-2-500x237.png\";s:5:\"width\";i:500;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:34:\"PYC_Banner_Logo_long-2-500x237.png\";s:5:\"width\";i:500;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:35:\"PYC_Banner_Logo_long-2-1000x237.png\";s:5:\"width\";i:1000;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4592,2923,'_wp_attached_file','2015/07/PYC_Banner_Logo-2.png'),(4593,2923,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1872;s:6:\"height\";i:162;s:4:\"file\";s:29:\"2015/07/PYC_Banner_Logo-2.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"PYC_Banner_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:28:\"PYC_Banner_Logo-2-300x26.png\";s:5:\"width\";i:300;s:6:\"height\";i:26;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"PYC_Banner_Logo-2-1024x89.png\";s:5:\"width\";i:1024;s:6:\"height\";i:89;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:27:\"PYC_Banner_Logo-2-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:29:\"PYC_Banner_Logo-2-600x162.png\";s:5:\"width\";i:600;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:29:\"PYC_Banner_Logo-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:30:\"PYC_Banner_Logo-2-1000x162.png\";s:5:\"width\";i:1000;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:29:\"PYC_Banner_Logo-2-500x162.png\";s:5:\"width\";i:500;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:29:\"PYC_Banner_Logo-2-500x162.png\";s:5:\"width\";i:500;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:30:\"PYC_Banner_Logo-2-1000x162.png\";s:5:\"width\";i:1000;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4595,2925,'_wp_attached_file','2014/03/kd12.jpg'),(4596,2925,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:16:\"2014/03/kd12.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd12-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:\"kd12-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd12-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd12-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd12-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd12-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd12-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4597,2926,'_wp_attached_file','2014/03/kd15.jpg'),(4598,2926,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:16:\"2014/03/kd15.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd15-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:\"kd15-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd15-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd15-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd15-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd15-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd15-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4599,2927,'_wp_attached_file','2014/03/kd18.jpg'),(4600,2927,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:16:\"2014/03/kd18.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd18-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:\"kd18-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd18-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd18-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd18-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd18-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd18-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd18-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4601,2928,'_wp_attached_file','2014/03/kd23.jpg'),(4602,2928,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:16:\"2014/03/kd23.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd23-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:\"kd23-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd23-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd23-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd23-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd23-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd23-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd23-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4603,2929,'_wp_attached_file','2014/03/kd24.jpg'),(4604,2929,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:16:\"2014/03/kd24.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd24-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:\"kd24-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd24-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd24-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd24-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd24-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd24-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd24-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4605,2930,'_wp_attached_file','2014/03/kd34.jpg'),(4606,2930,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:16:\"2014/03/kd34.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd34-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:\"kd34-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd34-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd34-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd34-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd34-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd34-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd34-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4607,2931,'_wp_attached_file','2014/03/PICT2608.jpg'),(4608,2931,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1066;s:4:\"file\";s:20:\"2014/03/PICT2608.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2608-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:\"PICT2608-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PICT2608-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2608-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2608-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2608-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2608-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2608-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"PICT2608-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:21:\"PICT2608-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4609,2932,'_wp_attached_file','2014/03/PICT2609.jpg'),(4610,2932,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1066;s:4:\"file\";s:20:\"2014/03/PICT2609.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2609-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:\"PICT2609-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PICT2609-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2609-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2609-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2609-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2609-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2609-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"PICT2609-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:21:\"PICT2609-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4611,2933,'_wp_attached_file','2014/03/PICT2610.jpg'),(4612,2933,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1066;s:4:\"file\";s:20:\"2014/03/PICT2610.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2610-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:\"PICT2610-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PICT2610-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2610-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2610-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2610-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2610-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2610-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"PICT2610-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:21:\"PICT2610-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4613,2934,'_wp_attached_file','2014/03/PICT2613.jpg'),(4614,2934,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2613.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2613-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:\"PICT2613-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2613-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2613-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2613-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2613-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2613-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2613-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4615,2935,'_wp_attached_file','2014/03/PICT2614.jpg'),(4616,2935,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2614.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2614-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:\"PICT2614-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2614-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2614-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2614-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2614-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2614-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2614-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4617,2936,'_wp_attached_file','2014/03/PICT2615.jpg'),(4618,2936,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2615.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2615-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:\"PICT2615-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2615-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2615-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2615-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2615-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2615-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2615-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4619,2937,'_wp_attached_file','2014/03/PICT2616.jpg'),(4620,2937,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2616.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2616-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:\"PICT2616-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2616-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2616-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2616-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2616-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2616-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2616-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4621,2938,'_wp_attached_file','2014/03/PICT2617.jpg'),(4622,2938,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2617.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2617-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:\"PICT2617-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2617-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2617-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2617-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2617-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2617-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2617-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4623,2939,'_wp_attached_file','2014/03/PICT2618.jpg'),(4624,2939,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2618.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2618-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:\"PICT2618-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2618-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2618-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2618-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2618-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2618-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2618-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4625,2940,'_wp_attached_file','2014/03/PICT2619.jpg'),(4626,2940,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2619.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2619-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:\"PICT2619-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2619-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2619-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2619-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2619-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2619-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2619-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4627,2941,'_wp_attached_file','2014/03/PICT2620.jpg'),(4628,2941,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2620.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2620-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:\"PICT2620-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2620-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2620-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2620-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2620-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2620-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2620-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4629,2942,'_wp_attached_file','2014/03/PICT2622.jpg'),(4630,2942,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1066;s:4:\"file\";s:20:\"2014/03/PICT2622.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2622-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:\"PICT2622-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PICT2622-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2622-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2622-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2622-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2622-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2622-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"PICT2622-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:21:\"PICT2622-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4631,2943,'_wp_attached_file','2014/03/PICT2624.jpg'),(4632,2943,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2624.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2624-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:\"PICT2624-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2624-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2624-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2624-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2624-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2624-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2624-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4633,2944,'_wp_attached_file','2014/03/PICT2625.jpg'),(4634,2944,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2625.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2625-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:\"PICT2625-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2625-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2625-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2625-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2625-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2625-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2625-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4635,2945,'_wp_attached_file','2014/03/PICT2627.jpg'),(4636,2945,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2627.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2627-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:\"PICT2627-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2627-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2627-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2627-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2627-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2627-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2627-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4637,2946,'_wp_attached_file','2014/03/PICT2630.jpg'),(4638,2946,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2630.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2630-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:\"PICT2630-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2630-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2630-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2630-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2630-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2630-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2630-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4639,2947,'_wp_attached_file','2014/03/PICT2631.jpg'),(4640,2947,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2631.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2631-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:\"PICT2631-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2631-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2631-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2631-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2631-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2631-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2631-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4641,2948,'_wp_attached_file','2014/03/PICT2632.jpg'),(4642,2948,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2632.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2632-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:\"PICT2632-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2632-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2632-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2632-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2632-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2632-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2632-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4643,2949,'_wp_attached_file','2014/03/PICT2633.jpg'),(4644,2949,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2633.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2633-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:\"PICT2633-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2633-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2633-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2633-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2633-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2633-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2633-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4645,2950,'_wp_attached_file','2014/03/PICT2634.jpg'),(4646,2950,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2634.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2634-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:\"PICT2634-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2634-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2634-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2634-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2634-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2634-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2634-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4647,2951,'_wp_attached_file','2014/03/PICT2635.jpg'),(4648,2951,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2635.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2635-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:\"PICT2635-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2635-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2635-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2635-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2635-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2635-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2635-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4649,2952,'_wp_attached_file','2014/03/PICT2636.jpg'),(4650,2952,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2636.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2636-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:\"PICT2636-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2636-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2636-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2636-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2636-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2636-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2636-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4651,2953,'_wp_attached_file','2014/03/PICT2637.jpg'),(4652,2953,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2637.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2637-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:\"PICT2637-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2637-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2637-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2637-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2637-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2637-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2637-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4653,2954,'_wp_attached_file','2014/03/PICT2638.jpg'),(4654,2954,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2638.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2638-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:\"PICT2638-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2638-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2638-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2638-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2638-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2638-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2638-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4655,2955,'_wp_attached_file','2014/03/PICT2639.jpg'),(4656,2955,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2639.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2639-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:\"PICT2639-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2639-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2639-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2639-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2639-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2639-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2639-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4657,2956,'_wp_attached_file','2014/03/PICT2640.jpg'),(4658,2956,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2640.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2640-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:\"PICT2640-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2640-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2640-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2640-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2640-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2640-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2640-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4659,2957,'_wp_attached_file','2014/03/PICT2641.jpg'),(4660,2957,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2641.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2641-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:\"PICT2641-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2641-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2641-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2641-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2641-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2641-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2641-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4661,2958,'_wp_attached_file','2014/03/PICT2642.jpg'),(4662,2958,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2642.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2642-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:\"PICT2642-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2642-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2642-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2642-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2642-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2642-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2642-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4663,2959,'_wp_attached_file','2014/03/PICT2643.jpg'),(4664,2959,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2643.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2643-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:\"PICT2643-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2643-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2643-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2643-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2643-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2643-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2643-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4665,2960,'_wp_attached_file','2014/03/PICT2644.jpg'),(4666,2960,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2644.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2644-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:\"PICT2644-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2644-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2644-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2644-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2644-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2644-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2644-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4667,2961,'_wp_attached_file','2014/03/PICT2645.jpg'),(4668,2961,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2645.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2645-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:\"PICT2645-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2645-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2645-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2645-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2645-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2645-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2645-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4669,2962,'_wp_attached_file','2014/03/PICT2646.jpg'),(4670,2962,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2646.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2646-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:\"PICT2646-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2646-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2646-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2646-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2646-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2646-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2646-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4671,2963,'_wp_attached_file','2014/03/PICT2647.jpg'),(4672,2963,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2647.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2647-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:\"PICT2647-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2647-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2647-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2647-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2647-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2647-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2647-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4673,2964,'_wp_attached_file','2014/03/PICT2648.jpg'),(4674,2964,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2648.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2648-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:\"PICT2648-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2648-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2648-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2648-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2648-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2648-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2648-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4675,2965,'_wp_attached_file','2014/03/PICT2649.jpg'),(4676,2965,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2649.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2649-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:\"PICT2649-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2649-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2649-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2649-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2649-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2649-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2649-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4677,2966,'_wp_attached_file','2014/03/PICT2650.jpg'),(4678,2966,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2650.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2650-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:\"PICT2650-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2650-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2650-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2650-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2650-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2650-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2650-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4679,2967,'_wp_attached_file','2014/03/PICT2652.jpg'),(4680,2967,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2652.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2652-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:\"PICT2652-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2652-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2652-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2652-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2652-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2652-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2652-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4681,2968,'_wp_attached_file','2014/03/PICT2653.jpg'),(4682,2968,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2653.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2653-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:\"PICT2653-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2653-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2653-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2653-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2653-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2653-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2653-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4683,2969,'_wp_attached_file','2014/03/PICT2654.jpg'),(4684,2969,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1066;s:4:\"file\";s:20:\"2014/03/PICT2654.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2654-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:\"PICT2654-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PICT2654-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2654-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2654-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2654-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2654-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2654-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"PICT2654-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:21:\"PICT2654-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4685,2970,'_wp_attached_file','2014/03/PICT2655.jpg'),(4686,2970,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2655.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2655-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:\"PICT2655-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2655-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2655-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2655-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2655-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2655-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2655-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4687,2971,'_wp_attached_file','2014/03/PICT2656.jpg'),(4688,2971,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1066;s:4:\"file\";s:20:\"2014/03/PICT2656.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2656-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:\"PICT2656-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PICT2656-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2656-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2656-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2656-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2656-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2656-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"PICT2656-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:21:\"PICT2656-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4689,2972,'_wp_attached_file','2014/03/PICT2657.jpg'),(4690,2972,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2657.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2657-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:\"PICT2657-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2657-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2657-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2657-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2657-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2657-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2657-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4691,2973,'_wp_attached_file','2014/03/PICT2658.jpg'),(4692,2973,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2658.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2658-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:\"PICT2658-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2658-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2658-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2658-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2658-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2658-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2658-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4693,2974,'_wp_attached_file','2014/03/PICT2659.jpg'),(4694,2974,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2659.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2659-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:\"PICT2659-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2659-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2659-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2659-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2659-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2659-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2659-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4695,2975,'_wp_attached_file','2014/03/PICT2660.jpg'),(4696,2975,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2660.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2660-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:\"PICT2660-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2660-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2660-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2660-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2660-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2660-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2660-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4697,2976,'_wp_attached_file','2014/03/PICT2662.jpg'),(4698,2976,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2662.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2662-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:\"PICT2662-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2662-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2662-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2662-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2662-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2662-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2662-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4699,2977,'_wp_attached_file','2014/03/PICT2663.jpg'),(4700,2977,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2663.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2663-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:\"PICT2663-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2663-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2663-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2663-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2663-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2663-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2663-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4701,2978,'_wp_attached_file','2014/03/PICT2664.jpg'),(4702,2978,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2664.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2664-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:\"PICT2664-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2664-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2664-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2664-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2664-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2664-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2664-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4703,2979,'_wp_attached_file','2014/03/PICT2665.jpg'),(4704,2979,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2665.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2665-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:\"PICT2665-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2665-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2665-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2665-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2665-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2665-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2665-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4705,2980,'_wp_attached_file','2014/03/PICT2666.jpg'),(4706,2980,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2014/03/PICT2666.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2666-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:\"PICT2666-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2666-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2666-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2666-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"PICT2666-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2666-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PICT2666-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4707,2981,'_wp_attached_file','2015/07/IMG_9637a1.jpg'),(4708,2981,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:750;s:4:\"file\";s:22:\"2015/07/IMG_9637a1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_9637a1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_9637a1-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"IMG_9637a1-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"IMG_9637a1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"IMG_9637a1-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"IMG_9637a1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:23:\"IMG_9637a1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"IMG_9637a1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"IMG_9637a1-500x750.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"IMG_9637a1-1000x750.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1324811159;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4711,2983,'_wp_attached_file','2015/07/IMG_9637b.jpg'),(4712,2983,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1548;s:6:\"height\";i:647;s:4:\"file\";s:21:\"2015/07/IMG_9637b.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_9637b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_9637b-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_9637b-1024x428.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"IMG_9637b-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_9637b-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"IMG_9637b-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"IMG_9637b-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"IMG_9637b-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"IMG_9637b-500x647.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:647;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"IMG_9637b-1000x647.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:647;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1324811159;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4713,2872,'_edit_lock','1436634591:1'),(4715,2986,'_edit_last','1'),(4716,2986,'_wpb_vc_js_status','true'),(4717,2986,'_wpb_vc_js_interface_version','2'),(4718,2986,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2890,2875,2877,2872,2871,2869\" layout=\"3\" constrain_max_cols=\"true\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"600x400\"][/vc_column][/vc_row]'),(4719,2986,'_nectar_portfolio_item_layout','enabled'),(4720,2986,'_nectar_portfolio_custom_thumbnail',''),(4721,2986,'_nectar_hide_featured','on'),(4722,2986,'_portfolio_item_masonry_sizing','regular'),(4723,2986,'_nectar_external_project_url',''),(4724,2986,'nectar-metabox-portfolio-parent-override','default'),(4725,2986,'_nectar_project_excerpt',''),(4726,2986,'_nectar_project_accent_color',''),(4727,2986,'_nectar_header_bg',''),(4728,2986,'_nectar_header_parallax','off'),(4729,2986,'_nectar_header_bg_height',''),(4730,2986,'_nectar_header_bg_color',''),(4731,2986,'_nectar_header_font_color',''),(4732,2986,'_disable_transparent_header','off'),(4733,2986,'_nectar_video_m4v',''),(4734,2986,'_nectar_video_ogv',''),(4735,2986,'_nectar_video_height',''),(4736,2986,'_nectar_video_poster',''),(4737,2986,'_nectar_video_embed',''),(4738,2986,'_edit_lock','1436870384:1'),(4739,2986,'_nectar_love','0'),(4740,2991,'_wp_attached_file','2015/07/05810076.jpg'),(4741,2991,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2015/07/05810076.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810076-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:\"05810076-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810076-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810076-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810076-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810076-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810076-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810076-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"05810076-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"05810076-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4742,2992,'_wp_attached_file','2015/07/05810080.jpg'),(4743,2992,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2015/07/05810080.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810080-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:\"05810080-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810080-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810080-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810080-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810080-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810080-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810080-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"05810080-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"05810080-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4744,2993,'_wp_attached_file','2015/07/05810081.jpg'),(4745,2993,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2015/07/05810081.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810081-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:\"05810081-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810081-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810081-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810081-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810081-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810081-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810081-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"05810081-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"05810081-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4746,2994,'_wp_attached_file','2015/07/05810082.jpg'),(4747,2994,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2015/07/05810082.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810082-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:\"05810082-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810082-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810082-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810082-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810082-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810082-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810082-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"05810082-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"05810082-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4750,2996,'_edit_last','1'),(4751,2996,'_edit_lock','1436644380:1'),(4752,2997,'_wp_attached_file','2015/07/058100761.jpg'),(4753,2997,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:21:\"2015/07/058100761.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"058100761-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"058100761-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"058100761-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"058100761-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"058100761-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"058100761-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"058100761-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"058100761-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"058100761-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"058100761-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4754,2998,'_wp_attached_file','2015/07/058100801.jpg'),(4755,2998,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:21:\"2015/07/058100801.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"058100801-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"058100801-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"058100801-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"058100801-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"058100801-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"058100801-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"058100801-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"058100801-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"058100801-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"058100801-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4756,2999,'_wp_attached_file','2015/07/058100811.jpg'),(4757,2999,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:21:\"2015/07/058100811.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"058100811-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"058100811-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"058100811-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"058100811-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"058100811-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"058100811-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"058100811-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"058100811-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"058100811-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"058100811-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4758,3000,'_wp_attached_file','2015/07/058100821.jpg'),(4759,3000,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:21:\"2015/07/058100821.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"058100821-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"058100821-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"058100821-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"058100821-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"058100821-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"058100821-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"058100821-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"058100821-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"058100821-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"058100821-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4760,3001,'_wp_attached_file','2015/07/058100831-e1436637692375.jpg'),(4761,3001,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:872;s:4:\"file\";s:36:\"2015/07/058100831-e1436637692375.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"058100831-e1436637692375-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"058100831-e1436637692375-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"058100831-e1436637692375-1024x687.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:687;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:34:\"058100831-e1436637692375-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:36:\"058100831-e1436637692375-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:36:\"058100831-e1436637692375-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:37:\"058100831-e1436637692375-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:36:\"058100831-e1436637692375-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:36:\"058100831-e1436637692375-500x872.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:872;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:37:\"058100831-e1436637692375-1000x872.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:872;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4762,3002,'_wp_attached_file','2015/07/05810084.jpg'),(4763,3002,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2015/07/05810084.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810084-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:\"05810084-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810084-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810084-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810084-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810084-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810084-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810084-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"05810084-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"05810084-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4764,3003,'_wp_attached_file','2015/07/05810086.jpg'),(4765,3003,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2015/07/05810086.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810086-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:\"05810086-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810086-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810086-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810086-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810086-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810086-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810086-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"05810086-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"05810086-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4766,3004,'_wp_attached_file','2015/07/05810088.jpg'),(4767,3004,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1320;s:6:\"height\";i:910;s:4:\"file\";s:20:\"2015/07/05810088.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810088-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:\"05810088-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810088-1024x706.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:706;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810088-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810088-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810088-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810088-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810088-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"05810088-500x910.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:910;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:21:\"05810088-1000x910.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:910;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4768,3005,'_wp_attached_file','2015/07/05810106.jpg'),(4769,3005,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2015/07/05810106.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810106-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:\"05810106-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810106-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810106-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810106-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810106-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810106-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810106-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"05810106-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"05810106-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4770,3006,'_wp_attached_file','2015/07/05810119.jpg'),(4771,3006,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2015/07/05810119.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810119-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:\"05810119-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810119-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810119-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810119-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810119-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810119-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810119-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"05810119-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"05810119-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4772,3007,'_wp_attached_file','2015/07/05810071.jpg'),(4773,3007,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2015/07/05810071.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810071-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:\"05810071-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810071-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810071-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810071-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810071-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810071-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810071-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"05810071-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"05810071-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4774,2997,'_edit_lock','1436642932:1'),(4775,3001,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:13:\"058100831.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:21:\"058100831-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:21:\"058100831-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:22:\"058100831-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"blog-widget-orig\";a:4:{s:4:\"file\";s:19:\"058100831-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"portfolio-thumb-orig\";a:4:{s:4:\"file\";s:21:\"058100831-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"portfolio-widget-orig\";a:4:{s:4:\"file\";s:21:\"058100831-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide-orig\";a:4:{s:4:\"file\";s:22:\"058100831-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"regular-orig\";a:4:{s:4:\"file\";s:21:\"058100831-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"tall-orig\";a:4:{s:4:\"file\";s:22:\"058100831-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"wide_tall-orig\";a:4:{s:4:\"file\";s:23:\"058100831-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(4777,2996,'_thumbnail_id','3001'),(4778,2996,'_wpb_vc_js_status','true'),(4779,2996,'_wpb_vc_js_interface_version','2'),(4780,2996,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3007,3006,3005,3004,3003,3002,3001,3000,2999,2998,2997\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" constrain_max_cols=\"true\" img_size=\"600x400\"][/vc_column][/vc_row]'),(4781,2996,'_nectar_portfolio_item_layout','enabled'),(4782,2996,'_nectar_portfolio_custom_thumbnail',''),(4783,2996,'_nectar_hide_featured','off'),(4784,2996,'_portfolio_item_masonry_sizing','regular'),(4785,2996,'_nectar_external_project_url',''),(4786,2996,'nectar-metabox-portfolio-parent-override','default'),(4787,2996,'_nectar_project_excerpt',''),(4788,2996,'_nectar_project_accent_color',''),(4789,2996,'_nectar_header_bg',''),(4790,2996,'_nectar_header_parallax','off'),(4791,2996,'_nectar_header_bg_height',''),(4792,2996,'_nectar_header_bg_color',''),(4793,2996,'_nectar_header_font_color',''),(4794,2996,'_disable_transparent_header','off'),(4795,2996,'_nectar_video_m4v',''),(4796,2996,'_nectar_video_ogv',''),(4797,2996,'_nectar_video_height',''),(4798,2996,'_nectar_video_poster',''),(4799,2996,'_nectar_video_embed',''),(4800,2996,'_nectar_love','0'),(4801,2986,'_thumbnail_id','2895'),(4802,2986,'_wp_old_slug','testing'),(4803,3019,'_wp_attached_file','2015/07/05810198.jpg'),(4804,3019,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2015/07/05810198.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810198-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:\"05810198-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810198-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810198-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810198-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810198-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810198-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810198-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"05810198-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"05810198-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4805,3020,'_wp_attached_file','2015/07/05810200.jpg'),(4806,3020,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2015/07/05810200.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810200-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:\"05810200-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810200-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810200-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810200-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810200-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810200-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810200-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"05810200-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"05810200-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4807,3021,'_wp_attached_file','2015/07/05810202.jpg'),(4808,3021,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2015/07/05810202.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810202-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:\"05810202-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810202-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810202-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810202-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810202-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810202-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810202-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"05810202-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"05810202-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4809,3022,'_wp_attached_file','2015/07/05810205.jpg'),(4810,3022,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2015/07/05810205.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810205-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:\"05810205-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810205-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810205-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810205-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810205-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810205-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810205-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"05810205-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"05810205-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4811,3023,'_wp_attached_file','2015/07/05810214.jpg'),(4812,3023,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2015/07/05810214.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810214-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:\"05810214-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810214-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810214-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810214-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810214-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810214-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810214-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"05810214-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"05810214-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4813,3024,'_wp_attached_file','2015/07/05810218.jpg'),(4814,3024,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:672;s:6:\"height\";i:761;s:4:\"file\";s:20:\"2015/07/05810218.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810218-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:\"05810218-265x300.jpg\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810218-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810218-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810218-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"05810218-672x500.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810218-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"05810218-500x761.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:761;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4815,3025,'_wp_attached_file','2015/07/05810219.jpg'),(4816,3025,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:494;s:6:\"height\";i:742;s:4:\"file\";s:20:\"2015/07/05810219.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810219-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:\"05810219-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810219-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810219-494x403.jpg\";s:5:\"width\";i:494;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810219-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"05810219-494x500.jpg\";s:5:\"width\";i:494;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810219-494x500.jpg\";s:5:\"width\";i:494;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4819,3027,'_wp_attached_file','2015/07/05810227.jpg'),(4820,3027,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2015/07/05810227.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810227-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:\"05810227-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"05810227-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810227-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810227-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810227-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"05810227-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810227-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"05810227-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"05810227-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4841,3038,'_edit_last','1'),(4842,3038,'_edit_lock','1436644325:1'),(4843,3039,'_wp_attached_file','2015/07/05810222.jpg'),(4844,3039,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:504;s:6:\"height\";i:562;s:4:\"file\";s:20:\"2015/07/05810222.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"05810222-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:\"05810222-269x300.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"05810222-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"05810222-504x403.jpg\";s:5:\"width\";i:504;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"05810222-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"05810222-504x500.jpg\";s:5:\"width\";i:504;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"05810222-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"05810222-500x562.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:562;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4845,3038,'_thumbnail_id','3020'),(4846,3038,'_wpb_vc_js_status','true'),(4847,3038,'_wpb_vc_js_interface_version','2'),(4848,3038,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2991,2992,2993,2994,3019,3020,3027,3025,3024,3023,3022,3021,3039\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"600x400\"][/vc_column][/vc_row]'),(4849,3038,'_nectar_portfolio_item_layout','enabled'),(4850,3038,'_nectar_portfolio_custom_thumbnail',''),(4851,3038,'_nectar_hide_featured','off'),(4852,3038,'_portfolio_item_masonry_sizing','regular'),(4853,3038,'_nectar_external_project_url',''),(4854,3038,'nectar-metabox-portfolio-parent-override','default'),(4855,3038,'_nectar_project_excerpt',''),(4856,3038,'_nectar_project_accent_color',''),(4857,3038,'_nectar_header_bg',''),(4858,3038,'_nectar_header_parallax','off'),(4859,3038,'_nectar_header_bg_height',''),(4860,3038,'_nectar_header_bg_color',''),(4861,3038,'_nectar_header_font_color',''),(4862,3038,'_disable_transparent_header','off'),(4863,3038,'_nectar_video_m4v',''),(4864,3038,'_nectar_video_ogv',''),(4865,3038,'_nectar_video_height',''),(4866,3038,'_nectar_video_poster',''),(4867,3038,'_nectar_video_embed',''),(4868,3041,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-004.jpg'),(4869,3041,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-004.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-004-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:42:\"Dastar-Mukabla-August-2003-004-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-004-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-004-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-004-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-004-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-004-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4870,3042,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-011.jpg'),(4871,3042,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-011.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-011-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:42:\"Dastar-Mukabla-August-2003-011-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-011-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-011-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-011-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-011-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-011-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4872,3043,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-013.jpg'),(4873,3043,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-013.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-013-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:42:\"Dastar-Mukabla-August-2003-013-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-013-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-013-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-013-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-013-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-013-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4874,3044,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-014.jpg'),(4875,3044,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-014.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-014-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:42:\"Dastar-Mukabla-August-2003-014-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-014-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-014-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-014-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-014-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-014-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4876,3045,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-017.jpg'),(4877,3045,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-017.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-017-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:42:\"Dastar-Mukabla-August-2003-017-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-017-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-017-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-017-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-017-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-017-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4878,3047,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-019.jpg'),(4879,3047,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-019.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-019-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:42:\"Dastar-Mukabla-August-2003-019-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-019-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-019-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-019-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-019-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-019-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4880,3048,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-021.jpg'),(4881,3048,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-021.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-021-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:42:\"Dastar-Mukabla-August-2003-021-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-021-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-021-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-021-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-021-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-021-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4882,3049,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-030.jpg'),(4883,3049,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-030.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-030-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:42:\"Dastar-Mukabla-August-2003-030-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-030-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-030-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-030-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-030-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-030-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4884,3050,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-031.jpg'),(4885,3050,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-031.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-031-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:42:\"Dastar-Mukabla-August-2003-031-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-031-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-031-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-031-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-031-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-031-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4886,3051,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-034.jpg'),(4887,3051,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-034.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-034-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:42:\"Dastar-Mukabla-August-2003-034-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-034-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-034-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-034-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-034-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-034-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4888,3052,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-035.jpg'),(4889,3052,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-035.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-035-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:42:\"Dastar-Mukabla-August-2003-035-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-035-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-035-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-035-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-035-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-035-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4890,3053,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-036.jpg'),(4891,3053,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-036.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-036-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:42:\"Dastar-Mukabla-August-2003-036-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-036-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-036-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-036-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-036-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-036-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4892,3054,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-038.jpg'),(4893,3054,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-038.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-038-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:42:\"Dastar-Mukabla-August-2003-038-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-038-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-038-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-038-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-038-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-038-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4894,3055,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-039.jpg'),(4895,3055,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-039.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-039-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:42:\"Dastar-Mukabla-August-2003-039-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-039-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-039-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-039-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-039-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-039-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4896,3056,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-041.jpg'),(4897,3056,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-041.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-041-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:42:\"Dastar-Mukabla-August-2003-041-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-041-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-041-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-041-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-041-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-041-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4898,3057,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-042.jpg'),(4899,3057,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-042.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-042-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:42:\"Dastar-Mukabla-August-2003-042-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-042-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-042-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-042-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-042-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-042-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4900,3046,'_edit_last','1'),(4901,3046,'_edit_lock','1436762893:1'),(4902,3058,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-043.jpg'),(4903,3058,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-043.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-043-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:42:\"Dastar-Mukabla-August-2003-043-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-043-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-043-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-043-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-043-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-043-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4904,3059,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003-044.jpg'),(4905,3059,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:42:\"2015/07/Dastar-Mukabla-August-2003-044.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-044-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:42:\"Dastar-Mukabla-August-2003-044-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"Dastar-Mukabla-August-2003-044-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-044-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-044-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-044-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"Dastar-Mukabla-August-2003-044-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4906,3060,'_wp_attached_file','2015/07/Dastar-Mukabla-August-2003.jpg'),(4907,3060,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:38:\"2015/07/Dastar-Mukabla-August-2003.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Dastar-Mukabla-August-2003-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Dastar-Mukabla-August-2003-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:36:\"Dastar-Mukabla-August-2003-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:38:\"Dastar-Mukabla-August-2003-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:38:\"Dastar-Mukabla-August-2003-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:38:\"Dastar-Mukabla-August-2003-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:38:\"Dastar-Mukabla-August-2003-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4908,3046,'_thumbnail_id','3048'),(4909,3046,'_wpb_vc_js_status','true'),(4910,3046,'_wpb_vc_js_interface_version','2'),(4911,3046,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3060,3059,3058,3057,3056,3055,3054,3053,3052,3051,3050,3049,3048,3047,3045,3044,3043,3042,3041\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"600x400\"][/vc_column][/vc_row]'),(4912,3046,'_nectar_portfolio_item_layout','enabled'),(4913,3046,'_nectar_portfolio_custom_thumbnail',''),(4914,3046,'_nectar_hide_featured','off'),(4915,3046,'_portfolio_item_masonry_sizing','regular'),(4916,3046,'_nectar_external_project_url',''),(4917,3046,'nectar-metabox-portfolio-parent-override','default'),(4918,3046,'_nectar_project_excerpt',''),(4919,3046,'_nectar_project_accent_color',''),(4920,3046,'_nectar_header_bg',''),(4921,3046,'_nectar_header_parallax','off'),(4922,3046,'_nectar_header_bg_height',''),(4923,3046,'_nectar_header_bg_color',''),(4924,3046,'_nectar_header_font_color',''),(4925,3046,'_disable_transparent_header','off'),(4926,3046,'_nectar_video_m4v',''),(4927,3046,'_nectar_video_ogv',''),(4928,3046,'_nectar_video_height',''),(4929,3046,'_nectar_video_poster',''),(4930,3046,'_nectar_video_embed',''),(4931,3063,'_wp_attached_file','2015/07/komagata-hockey1.jpg'),(4932,3063,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3508;s:6:\"height\";i:4961;s:4:\"file\";s:28:\"2015/07/komagata-hockey1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"komagata-hockey1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"komagata-hockey1-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"komagata-hockey1-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:26:\"komagata-hockey1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:28:\"komagata-hockey1-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:28:\"komagata-hockey1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:29:\"komagata-hockey1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:28:\"komagata-hockey1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:29:\"komagata-hockey1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:30:\"komagata-hockey1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4933,3064,'_wp_attached_file','2015/07/komagata-hockey_ENG-2011-copy.jpg'),(4934,3064,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1697;s:4:\"file\";s:41:\"2015/07/komagata-hockey_ENG-2011-copy.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"komagata-hockey_ENG-2011-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"komagata-hockey_ENG-2011-copy-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"komagata-hockey_ENG-2011-copy-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:39:\"komagata-hockey_ENG-2011-copy-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:41:\"komagata-hockey_ENG-2011-copy-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:41:\"komagata-hockey_ENG-2011-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:42:\"komagata-hockey_ENG-2011-copy-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:41:\"komagata-hockey_ENG-2011-copy-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"komagata-hockey_ENG-2011-copy-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:43:\"komagata-hockey_ENG-2011-copy-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4935,3065,'_wp_attached_file','2015/07/komagata-hockey_ENG-2012-small.jpg'),(4936,3065,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:849;s:4:\"file\";s:42:\"2015/07/komagata-hockey_ENG-2012-small.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"komagata-hockey_ENG-2012-small-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"komagata-hockey_ENG-2012-small-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:40:\"komagata-hockey_ENG-2012-small-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:42:\"komagata-hockey_ENG-2012-small-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:42:\"komagata-hockey_ENG-2012-small-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:42:\"komagata-hockey_ENG-2012-small-600x500.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:42:\"komagata-hockey_ENG-2012-small-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"komagata-hockey_ENG-2012-small-500x849.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:849;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4937,3066,'_wp_attached_file','2015/07/komagata-hockey_ENG-2013-copy.jpg'),(4938,3066,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3508;s:6:\"height\";i:4961;s:4:\"file\";s:41:\"2015/07/komagata-hockey_ENG-2013-copy.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"komagata-hockey_ENG-2013-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"komagata-hockey_ENG-2013-copy-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"komagata-hockey_ENG-2013-copy-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:39:\"komagata-hockey_ENG-2013-copy-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:41:\"komagata-hockey_ENG-2013-copy-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:41:\"komagata-hockey_ENG-2013-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:42:\"komagata-hockey_ENG-2013-copy-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:41:\"komagata-hockey_ENG-2013-copy-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:42:\"komagata-hockey_ENG-2013-copy-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:43:\"komagata-hockey_ENG-2013-copy-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4939,3067,'_wp_attached_file','2015/07/KGM-hockey_-ENG-2014_webb.jpg'),(4940,3067,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:1442;s:4:\"file\";s:37:\"2015/07/KGM-hockey_-ENG-2014_webb.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"KGM-hockey_-ENG-2014_webb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"KGM-hockey_-ENG-2014_webb-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"KGM-hockey_-ENG-2014_webb-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:35:\"KGM-hockey_-ENG-2014_webb-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:37:\"KGM-hockey_-ENG-2014_webb-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:37:\"KGM-hockey_-ENG-2014_webb-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:38:\"KGM-hockey_-ENG-2014_webb-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:37:\"KGM-hockey_-ENG-2014_webb-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:38:\"KGM-hockey_-ENG-2014_webb-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:39:\"KGM-hockey_-ENG-2014_webb-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4941,3071,'_wp_attached_file','2015/07/DimeAir.png'),(4942,3071,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2015/07/DimeAir.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"DimeAir-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:\"DimeAir-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"DimeAir-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"DimeAir-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"DimeAir-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"DimeAir-800x500.png\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"DimeAir-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"DimeAir-500x600.png\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4943,3072,'_wp_attached_file','2015/07/DR-FIX-IT-ALL.png'),(4944,3072,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2015/07/DR-FIX-IT-ALL.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"DR-FIX-IT-ALL-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"DR-FIX-IT-ALL-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:23:\"DR-FIX-IT-ALL-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:25:\"DR-FIX-IT-ALL-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:25:\"DR-FIX-IT-ALL-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:25:\"DR-FIX-IT-ALL-800x500.png\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:25:\"DR-FIX-IT-ALL-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:25:\"DR-FIX-IT-ALL-500x600.png\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4945,3073,'_wp_attached_file','2015/07/Grewal-Travels.png'),(4946,3073,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2015/07/Grewal-Travels.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Grewal-Travels-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Grewal-Travels-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:24:\"Grewal-Travels-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:26:\"Grewal-Travels-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:26:\"Grewal-Travels-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:26:\"Grewal-Travels-800x500.png\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:26:\"Grewal-Travels-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:26:\"Grewal-Travels-500x600.png\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4947,3074,'_wp_attached_file','2015/07/Multilines.png'),(4948,3074,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2015/07/Multilines.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Multilines-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:\"Multilines-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"Multilines-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"Multilines-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"Multilines-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"Multilines-800x500.png\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"Multilines-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"Multilines-500x600.png\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4949,3075,'_wp_attached_file','2015/07/Punjabi-CHetna.png'),(4950,3075,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2015/07/Punjabi-CHetna.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Punjabi-CHetna-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Punjabi-CHetna-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:24:\"Punjabi-CHetna-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:26:\"Punjabi-CHetna-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:26:\"Punjabi-CHetna-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:26:\"Punjabi-CHetna-800x500.png\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:26:\"Punjabi-CHetna-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:26:\"Punjabi-CHetna-500x600.png\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4951,3076,'_wp_attached_file','2015/07/Satrang.png'),(4952,3076,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2015/07/Satrang.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Satrang-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:\"Satrang-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"Satrang-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"Satrang-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"Satrang-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"Satrang-800x500.png\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"Satrang-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"Satrang-500x600.png\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4953,3077,'_wp_attached_file','2015/07/toronto.png'),(4954,3077,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2015/07/toronto.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"toronto-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:\"toronto-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"toronto-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"toronto-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"toronto-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"toronto-800x500.png\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"toronto-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"toronto-500x600.png\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4955,3078,'_wp_attached_file','2015/07/TS-Security.png'),(4956,3078,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2015/07/TS-Security.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"TS-Security-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:\"TS-Security-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"TS-Security-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"TS-Security-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"TS-Security-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:23:\"TS-Security-800x500.png\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"TS-Security-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"TS-Security-500x600.png\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4959,3081,'_wp_attached_file','2013/06/Buttar.png'),(4960,3081,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2013/06/Buttar.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Buttar-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:\"Buttar-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:16:\"Buttar-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:18:\"Buttar-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:18:\"Buttar-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:18:\"Buttar-800x500.png\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:18:\"Buttar-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:18:\"Buttar-500x600.png\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4961,3082,'_wp_attached_file','2013/06/Dhillon-Hotels.png'),(4962,3082,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2013/06/Dhillon-Hotels.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Dhillon-Hotels-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Dhillon-Hotels-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:24:\"Dhillon-Hotels-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:26:\"Dhillon-Hotels-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:26:\"Dhillon-Hotels-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:26:\"Dhillon-Hotels-800x500.png\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:26:\"Dhillon-Hotels-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:26:\"Dhillon-Hotels-500x600.png\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4963,3083,'_wp_attached_file','2013/06/Brar-2.png'),(4964,3083,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2013/06/Brar-2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Brar-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:\"Brar-2-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:16:\"Brar-2-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:18:\"Brar-2-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:18:\"Brar-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:18:\"Brar-2-800x500.png\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:18:\"Brar-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:18:\"Brar-2-500x600.png\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4965,3085,'_wp_attached_file','2013/06/Brar-Group.png'),(4966,3085,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2013/06/Brar-Group.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Brar-Group-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:\"Brar-Group-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"Brar-Group-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"Brar-Group-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"Brar-Group-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"Brar-Group-800x500.png\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"Brar-Group-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"Brar-Group-500x600.png\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4967,3046,'_nectar_love','2'),(4968,3038,'_nectar_love','1'),(4969,3094,'_edit_last','1'),(4970,3094,'_edit_lock','1436719005:1'),(4971,3095,'_wp_attached_file','2015/07/Picture-001.jpg'),(4972,3095,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2015/07/Picture-001.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Picture-001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Picture-001-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Picture-001-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"Picture-001-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"Picture-001-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"Picture-001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"Picture-001-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"Picture-001-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"Picture-001-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"Picture-001-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4973,3096,'_wp_attached_file','2015/07/Picture-002.jpg'),(4974,3096,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2015/07/Picture-002.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Picture-002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Picture-002-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Picture-002-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"Picture-002-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"Picture-002-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"Picture-002-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"Picture-002-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"Picture-002-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"Picture-002-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"Picture-002-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4975,3097,'_wp_attached_file','2015/07/Picture-003.jpg'),(4976,3097,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2015/07/Picture-003.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Picture-003-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Picture-003-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Picture-003-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"Picture-003-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"Picture-003-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"Picture-003-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"Picture-003-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"Picture-003-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"Picture-003-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"Picture-003-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4977,3098,'_wp_attached_file','2015/07/Picture-004.jpg'),(4978,3098,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2015/07/Picture-004.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Picture-004-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Picture-004-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Picture-004-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"Picture-004-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"Picture-004-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"Picture-004-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"Picture-004-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"Picture-004-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"Picture-004-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"Picture-004-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4979,3099,'_wp_attached_file','2015/07/Picture-005.jpg'),(4980,3099,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2015/07/Picture-005.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Picture-005-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Picture-005-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Picture-005-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"Picture-005-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"Picture-005-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"Picture-005-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"Picture-005-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"Picture-005-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"Picture-005-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"Picture-005-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4981,3100,'_wp_attached_file','2015/07/Picture-006.jpg'),(4982,3100,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2015/07/Picture-006.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Picture-006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Picture-006-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Picture-006-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"Picture-006-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"Picture-006-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"Picture-006-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"Picture-006-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"Picture-006-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"Picture-006-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"Picture-006-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4983,3101,'_wp_attached_file','2015/07/Picture-007.jpg'),(4984,3101,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2015/07/Picture-007.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Picture-007-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Picture-007-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Picture-007-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"Picture-007-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"Picture-007-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"Picture-007-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"Picture-007-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"Picture-007-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"Picture-007-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"Picture-007-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4985,3102,'_wp_attached_file','2015/07/Picture-008.jpg'),(4986,3102,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2015/07/Picture-008.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Picture-008-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Picture-008-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Picture-008-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"Picture-008-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"Picture-008-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"Picture-008-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"Picture-008-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"Picture-008-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"Picture-008-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"Picture-008-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4987,3103,'_wp_attached_file','2015/07/Picture-012.jpg'),(4988,3103,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2015/07/Picture-012.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Picture-012-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Picture-012-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Picture-012-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"Picture-012-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"Picture-012-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"Picture-012-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"Picture-012-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"Picture-012-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"Picture-012-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"Picture-012-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4989,3104,'_wp_attached_file','2015/07/Picture-013.jpg'),(4990,3104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2015/07/Picture-013.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Picture-013-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Picture-013-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Picture-013-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"Picture-013-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"Picture-013-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"Picture-013-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"Picture-013-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"Picture-013-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"Picture-013-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"Picture-013-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4991,3105,'_wp_attached_file','2015/07/Picture-014.jpg'),(4992,3105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:23:\"2015/07/Picture-014.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Picture-014-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Picture-014-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Picture-014-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"Picture-014-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"Picture-014-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"Picture-014-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"Picture-014-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"Picture-014-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"Picture-014-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"Picture-014-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4993,3106,'_wp_attached_file','2015/07/b1.jpg'),(4994,3106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:449;s:4:\"file\";s:14:\"2015/07/b1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"b1-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:\"b1-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:12:\"b1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:14:\"b1-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:14:\"b1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:14:\"b1-500x449.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:14:\"b1-500x449.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4995,3107,'_wp_attached_file','2015/07/b2.jpg'),(4996,3107,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2015/07/b2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"b2-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:\"b2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:12:\"b2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:14:\"b2-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:14:\"b2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:14:\"b2-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:14:\"b2-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4997,3108,'_wp_attached_file','2015/07/b3.jpg'),(4998,3108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2015/07/b3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"b3-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:\"b3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:12:\"b3-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:14:\"b3-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:14:\"b3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:14:\"b3-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:14:\"b3-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4999,3109,'_wp_attached_file','2015/07/b4.jpg'),(5000,3109,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2015/07/b4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"b4-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:\"b4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:12:\"b4-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:14:\"b4-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:14:\"b4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:14:\"b4-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:14:\"b4-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5001,3110,'_wp_attached_file','2015/07/b5.jpg'),(5002,3110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2015/07/b5.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"b5-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:\"b5-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:12:\"b5-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:14:\"b5-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:14:\"b5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:14:\"b5-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:14:\"b5-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5003,3111,'_wp_attached_file','2015/07/b6.jpg'),(5004,3111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2015/07/b6.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"b6-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:\"b6-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:12:\"b6-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:14:\"b6-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:14:\"b6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:14:\"b6-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:14:\"b6-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5005,3112,'_wp_attached_file','2015/07/b7.jpg'),(5006,3112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2015/07/b7.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"b7-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:\"b7-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:12:\"b7-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:14:\"b7-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:14:\"b7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:14:\"b7-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:14:\"b7-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5007,3113,'_wp_attached_file','2015/07/b8.jpg'),(5008,3113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2015/07/b8.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"b8-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:\"b8-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:12:\"b8-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:14:\"b8-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:14:\"b8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:14:\"b8-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:14:\"b8-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5009,3114,'_wp_attached_file','2015/07/b9.jpg'),(5010,3114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2015/07/b9.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"b9-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:\"b9-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:12:\"b9-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:14:\"b9-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:14:\"b9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:14:\"b9-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:14:\"b9-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5011,3115,'_wp_attached_file','2015/07/b10.jpg'),(5012,3115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:430;s:4:\"file\";s:15:\"2015/07/b10.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b10-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:\"b10-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b10-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b10-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b10-500x430.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b10-500x430.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5013,3116,'_wp_attached_file','2015/07/b11.jpg'),(5014,3116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b11.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b11-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:\"b11-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b11-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b11-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b11-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b11-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5015,3117,'_wp_attached_file','2015/07/b12.jpg'),(5016,3117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b12.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b12-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:\"b12-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b12-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b12-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b12-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b12-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5017,3118,'_wp_attached_file','2015/07/b13.jpg'),(5018,3118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b13.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b13-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:\"b13-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b13-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b13-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b13-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b13-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5019,3119,'_wp_attached_file','2015/07/b14.jpg'),(5020,3119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b14.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b14-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:\"b14-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b14-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b14-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b14-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b14-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5021,3120,'_wp_attached_file','2015/07/b15.jpg'),(5022,3120,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b15.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b15-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:\"b15-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b15-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b15-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b15-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b15-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5023,3121,'_wp_attached_file','2015/07/b16.jpg'),(5024,3121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b16.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b16-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:\"b16-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b16-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b16-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b16-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b16-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5025,3122,'_wp_attached_file','2015/07/b17.jpg'),(5026,3122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b17.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b17-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:\"b17-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b17-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b17-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b17-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b17-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b17-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5027,3123,'_wp_attached_file','2015/07/b18.jpg'),(5028,3123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b18.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b18-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:\"b18-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b18-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b18-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b18-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b18-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b18-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5029,3124,'_wp_attached_file','2015/07/b19.jpg'),(5030,3124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b19.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b19-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:\"b19-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b19-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b19-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b19-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b19-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b19-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5031,3125,'_wp_attached_file','2015/07/b20.jpg'),(5032,3125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b20.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b20-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:\"b20-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b20-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b20-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b20-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b20-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b20-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5033,3126,'_wp_attached_file','2015/07/b21.jpg'),(5034,3126,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b21.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b21-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:\"b21-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b21-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b21-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b21-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b21-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b21-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5035,3127,'_wp_attached_file','2015/07/b22.jpg'),(5036,3127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b22.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b22-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:\"b22-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b22-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b22-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b22-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b22-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b22-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5037,3128,'_wp_attached_file','2015/07/b23.jpg'),(5038,3128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b23.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b23-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:\"b23-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b23-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b23-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b23-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b23-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b23-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5039,3129,'_wp_attached_file','2015/07/b24.jpg'),(5040,3129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b24.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b24-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:\"b24-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b24-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b24-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b24-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b24-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b24-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5041,3130,'_wp_attached_file','2015/07/b25.jpg'),(5042,3130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b25.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b25-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:\"b25-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b25-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b25-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b25-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b25-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b25-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5043,3131,'_wp_attached_file','2015/07/b26.jpg'),(5044,3131,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b26.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b26-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:\"b26-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b26-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b26-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b26-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b26-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b26-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5045,3132,'_wp_attached_file','2015/07/b27.jpg'),(5046,3132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b27.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b27-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:\"b27-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b27-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b27-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b27-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b27-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b27-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5047,3133,'_wp_attached_file','2015/07/b28.jpg'),(5048,3133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b28.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b28-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:\"b28-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b28-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b28-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b28-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b28-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b28-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5049,3134,'_wp_attached_file','2015/07/b29.jpg'),(5050,3134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b29.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b29-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:\"b29-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b29-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b29-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b29-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b29-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b29-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5051,3135,'_wp_attached_file','2015/07/b30.jpg'),(5052,3135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b30.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b30-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:\"b30-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b30-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b30-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b30-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b30-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b30-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5053,3136,'_wp_attached_file','2015/07/b31.jpg'),(5054,3136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b31.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b31-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:\"b31-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b31-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b31-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b31-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b31-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b31-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5055,3137,'_wp_attached_file','2015/07/b32.jpg'),(5056,3137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2015/07/b32.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b32-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:\"b32-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b32-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b32-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b32-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b32-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b32-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5057,3138,'_wp_attached_file','2015/07/b33.jpg'),(5058,3138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2015/07/b33.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b33-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:\"b33-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b33-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b33-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b33-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"b33-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b33-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b33-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5059,3139,'_wp_attached_file','2015/07/b34.jpg'),(5060,3139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2015/07/b34.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b34-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:\"b34-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b34-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b34-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b34-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"b34-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b34-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b34-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5061,3140,'_wp_attached_file','2015/07/b36.jpg'),(5062,3140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2015/07/b36.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b36-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:\"b36-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b36-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b36-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b36-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"b36-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b36-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b36-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5063,3141,'_wp_attached_file','2015/07/b37.jpg'),(5064,3141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2015/07/b37.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b37-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:\"b37-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b37-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b37-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b37-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"b37-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b37-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b37-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5065,3142,'_wp_attached_file','2015/07/b38.jpg'),(5066,3142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2015/07/b38.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b38-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:\"b38-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b38-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b38-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b38-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"b38-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b38-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b38-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5067,3143,'_wp_attached_file','2015/07/b39.jpg'),(5068,3143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2015/07/b39.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b39-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:\"b39-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b39-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b39-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b39-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"b39-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b39-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b39-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5069,3144,'_wp_attached_file','2015/07/b40.jpg'),(5070,3144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2015/07/b40.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b40-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:\"b40-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b40-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b40-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b40-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"b40-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b40-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b40-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5071,3145,'_wp_attached_file','2015/07/b41.jpg'),(5072,3145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2015/07/b41.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b41-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:\"b41-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b41-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b41-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b41-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"b41-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b41-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b41-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5073,3146,'_wp_attached_file','2015/07/b42.jpg'),(5074,3146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2015/07/b42.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b42-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:\"b42-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b42-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b42-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b42-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"b42-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b42-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b42-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5075,3147,'_wp_attached_file','2015/07/b43.jpg'),(5076,3147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2015/07/b43.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b43-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:\"b43-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b43-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b43-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b43-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"b43-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b43-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b43-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5077,3148,'_wp_attached_file','2015/07/b44.jpg'),(5078,3148,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2015/07/b44.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b44-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:\"b44-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b44-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b44-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b44-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"b44-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b44-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b44-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5079,3149,'_wp_attached_file','2015/07/b45.jpg'),(5080,3149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2015/07/b45.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b45-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:\"b45-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b45-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b45-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b45-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"b45-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b45-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b45-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5081,3150,'_wp_attached_file','2015/07/b46.jpg'),(5082,3150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2015/07/b46.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b46-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:\"b46-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b46-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b46-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b46-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"b46-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b46-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b46-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5083,3151,'_wp_attached_file','2015/07/b47.jpg'),(5084,3151,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2015/07/b47.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b47-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:\"b47-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b47-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b47-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b47-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"b47-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b47-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b47-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5085,3152,'_wp_attached_file','2015/07/b48.jpg'),(5086,3152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2015/07/b48.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"b48-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:\"b48-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"b48-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"b48-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"b48-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"b48-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"b48-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"b48-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5087,3094,'_wpb_vc_js_status','true'),(5088,3094,'_wpb_vc_js_interface_version','2'),(5089,3094,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3137,3136,3135,3134,3133,3132,3131,3130,3129,3128,3127,3126,3125,3124,3123,3122,3121,3120,3119,3118,3117,3116,3115,3114,3113,3112,3111,3110,3109,3108,3107,3106,3105,3104,3103,3102,3101,3100,3099,3098,3097,3096,3095\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"640x480\"][/vc_column][/vc_row]'),(5090,3094,'_nectar_portfolio_item_layout','enabled'),(5091,3094,'_nectar_portfolio_custom_thumbnail',''),(5092,3094,'_nectar_hide_featured','off'),(5093,3094,'_portfolio_item_masonry_sizing','regular'),(5094,3094,'_nectar_external_project_url',''),(5095,3094,'nectar-metabox-portfolio-parent-override','default'),(5096,3094,'_nectar_project_excerpt',''),(5097,3094,'_nectar_project_accent_color',''),(5098,3094,'_nectar_header_bg',''),(5099,3094,'_nectar_header_parallax','off'),(5100,3094,'_nectar_header_bg_height',''),(5101,3094,'_nectar_header_bg_color',''),(5102,3094,'_nectar_header_font_color',''),(5103,3094,'_disable_transparent_header','off'),(5104,3094,'_nectar_video_m4v',''),(5105,3094,'_nectar_video_ogv',''),(5106,3094,'_nectar_video_height',''),(5107,3094,'_nectar_video_poster',''),(5108,3094,'_nectar_video_embed',''),(5109,3094,'_thumbnail_id','3126'),(5110,3156,'_edit_last','1'),(5111,3156,'_edit_lock','1436719323:1'),(5112,3157,'_wp_attached_file','2015/07/asia08.jpg'),(5113,3157,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:18:\"2015/07/asia08.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"asia08-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:\"asia08-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"asia08-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:16:\"asia08-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:18:\"asia08-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:18:\"asia08-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"asia08-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:18:\"asia08-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:18:\"asia08-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:19:\"asia08-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5114,3158,'_wp_attached_file','2015/07/asia09.jpg'),(5115,3158,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:18:\"2015/07/asia09.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"asia09-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:\"asia09-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"asia09-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:16:\"asia09-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:18:\"asia09-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:18:\"asia09-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"asia09-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:18:\"asia09-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:18:\"asia09-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:19:\"asia09-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5116,3159,'_wp_attached_file','2015/07/asia10.jpg'),(5117,3159,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:18:\"2015/07/asia10.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"asia10-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:\"asia10-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"asia10-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:16:\"asia10-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:18:\"asia10-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:18:\"asia10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"asia10-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:18:\"asia10-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:18:\"asia10-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:19:\"asia10-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5118,3160,'_wp_attached_file','2015/07/bhg.jpg'),(5119,3160,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:15:\"2015/07/bhg.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bhg-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:\"bhg-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"bhg-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"bhg-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"bhg-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"bhg-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"bhg-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5120,3161,'_wp_attached_file','2015/07/bhg_1.jpg'),(5121,3161,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:17:\"2015/07/bhg_1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"bhg_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"bhg_1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:15:\"bhg_1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:17:\"bhg_1-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:17:\"bhg_1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:17:\"bhg_1-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"bhg_1-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5122,3162,'_wp_attached_file','2015/07/bhg1.jpg'),(5123,3162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:363;s:4:\"file\";s:16:\"2015/07/bhg1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bhg1-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:\"bhg1-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"bhg1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"bhg1-600x363.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"bhg1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"bhg1-500x363.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"bhg1-500x363.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5124,3163,'_wp_attached_file','2015/07/bhg2.jpg'),(5125,3163,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:435;s:4:\"file\";s:16:\"2015/07/bhg2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bhg2-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:\"bhg2-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"bhg2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"bhg2-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"bhg2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"bhg2-500x435.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"bhg2-500x435.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5126,3164,'_wp_attached_file','2015/07/bhg3.jpg'),(5127,3164,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:16:\"2015/07/bhg3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bhg3-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:\"bhg3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"bhg3-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"bhg3-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"bhg3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"bhg3-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"bhg3-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5128,3165,'_wp_attached_file','2015/07/bhg4.jpg'),(5129,3165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:16:\"2015/07/bhg4.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bhg4-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:\"bhg4-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"bhg4-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"bhg4-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"bhg4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"bhg4-600x500.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"bhg4-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"bhg4-500x800.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5130,3166,'_wp_attached_file','2015/07/bhg5.jpg'),(5131,3166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:355;s:4:\"file\";s:16:\"2015/07/bhg5.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bhg5-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:\"bhg5-300x178.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"bhg5-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"bhg5-600x355.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"bhg5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"bhg5-500x355.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"bhg5-500x355.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5132,3167,'_wp_attached_file','2015/07/bhg6.jpg'),(5133,3167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:16:\"2015/07/bhg6.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bhg6-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:\"bhg6-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"bhg6-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"bhg6-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"bhg6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"bhg6-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"bhg6-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5134,3168,'_wp_attached_file','2015/07/bhg7.jpg'),(5135,3168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:857;s:4:\"file\";s:16:\"2015/07/bhg7.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bhg7-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:\"bhg7-210x300.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"bhg7-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"bhg7-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"bhg7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"bhg7-600x500.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"bhg7-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"bhg7-500x857.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:857;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5136,3169,'_wp_attached_file','2015/07/asia01.jpg'),(5137,3169,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:18:\"2015/07/asia01.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"asia01-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:\"asia01-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"asia01-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:16:\"asia01-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:18:\"asia01-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:18:\"asia01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"asia01-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:18:\"asia01-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:18:\"asia01-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:19:\"asia01-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5138,3170,'_wp_attached_file','2015/07/asia02.jpg'),(5139,3170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:18:\"2015/07/asia02.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"asia02-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:\"asia02-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"asia02-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:16:\"asia02-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:18:\"asia02-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:18:\"asia02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"asia02-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:18:\"asia02-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:18:\"asia02-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:19:\"asia02-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5140,3171,'_wp_attached_file','2015/07/asia03.jpg'),(5141,3171,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:18:\"2015/07/asia03.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"asia03-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:\"asia03-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"asia03-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:16:\"asia03-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:18:\"asia03-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:18:\"asia03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"asia03-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:18:\"asia03-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:18:\"asia03-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:19:\"asia03-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5142,3172,'_wp_attached_file','2015/07/asia04.jpg'),(5143,3172,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:18:\"2015/07/asia04.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"asia04-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:\"asia04-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"asia04-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:16:\"asia04-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:18:\"asia04-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:18:\"asia04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"asia04-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:18:\"asia04-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:18:\"asia04-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:19:\"asia04-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5144,3173,'_wp_attached_file','2015/07/asia05.jpg'),(5145,3173,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:18:\"2015/07/asia05.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"asia05-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:\"asia05-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"asia05-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:16:\"asia05-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:18:\"asia05-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:18:\"asia05-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"asia05-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:18:\"asia05-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:18:\"asia05-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:19:\"asia05-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5146,3174,'_wp_attached_file','2015/07/asia06.jpg'),(5147,3174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:18:\"2015/07/asia06.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"asia06-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:\"asia06-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"asia06-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:16:\"asia06-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:18:\"asia06-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:18:\"asia06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"asia06-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:18:\"asia06-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:18:\"asia06-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:19:\"asia06-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5148,3175,'_wp_attached_file','2015/07/asia06a.jpg'),(5149,3175,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:19:\"2015/07/asia06a.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"asia06a-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:\"asia06a-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"asia06a-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"asia06a-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"asia06a-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"asia06a-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"asia06a-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"asia06a-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"asia06a-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:20:\"asia06a-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5150,3176,'_wp_attached_file','2015/07/asia07.jpg'),(5151,3176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:18:\"2015/07/asia07.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"asia07-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:\"asia07-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"asia07-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:16:\"asia07-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:18:\"asia07-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:18:\"asia07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:19:\"asia07-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:18:\"asia07-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:18:\"asia07-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:19:\"asia07-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5152,3177,'_wp_attached_file','2015/07/asia07a.jpg'),(5153,3177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:19:\"2015/07/asia07a.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"asia07a-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:\"asia07a-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"asia07a-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"asia07a-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"asia07a-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"asia07a-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"asia07a-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"asia07a-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:19:\"asia07a-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:20:\"asia07a-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5154,3156,'_thumbnail_id','3160'),(5155,3156,'_wpb_vc_js_status','true'),(5156,3156,'_wpb_vc_js_interface_version','2'),(5157,3156,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3157,3158,3159,3160,3177,3176,3175,3174,3173,3172,3171,3170,3169,3168,3167,3166,3165,3164,3163,3162,3161\" layout=\"3\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"640x480\"][/vc_column][/vc_row]'),(5158,3156,'_nectar_portfolio_item_layout','enabled'),(5159,3156,'_nectar_portfolio_custom_thumbnail',''),(5160,3156,'_nectar_hide_featured','off'),(5161,3156,'_portfolio_item_masonry_sizing','regular'),(5162,3156,'_nectar_external_project_url',''),(5163,3156,'nectar-metabox-portfolio-parent-override','default'),(5164,3156,'_nectar_project_excerpt',''),(5165,3156,'_nectar_project_accent_color',''),(5166,3156,'_nectar_header_bg',''),(5167,3156,'_nectar_header_parallax','off'),(5168,3156,'_nectar_header_bg_height',''),(5169,3156,'_nectar_header_bg_color',''),(5170,3156,'_nectar_header_font_color',''),(5171,3156,'_disable_transparent_header','off'),(5172,3156,'_nectar_video_m4v',''),(5173,3156,'_nectar_video_ogv',''),(5174,3156,'_nectar_video_height',''),(5175,3156,'_nectar_video_poster',''),(5176,3156,'_nectar_video_embed',''),(5177,3182,'_wp_attached_file','2015/07/banner-copy.jpg'),(5178,3182,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:9600;s:6:\"height\";i:3600;s:4:\"file\";s:23:\"2015/07/banner-copy.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"banner-copy-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:\"banner-copy-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"banner-copy-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"banner-copy-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"banner-copy-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"banner-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"banner-copy-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"banner-copy-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:24:\"banner-copy-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:25:\"banner-copy-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5179,3183,'_wp_attached_file','2015/07/kavi-cd-copy.jpg'),(5180,3183,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1179;s:6:\"height\";i:1179;s:4:\"file\";s:24:\"2015/07/kavi-cd-copy.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"kavi-cd-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"kavi-cd-copy-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:26:\"kavi-cd-copy-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:22:\"kavi-cd-copy-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:24:\"kavi-cd-copy-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:24:\"kavi-cd-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:25:\"kavi-cd-copy-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:24:\"kavi-cd-copy-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:25:\"kavi-cd-copy-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:26:\"kavi-cd-copy-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5181,3184,'_wp_attached_file','2015/07/kavi-darbar-cd-copy.jpg'),(5182,3184,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1580;s:6:\"height\";i:1092;s:4:\"file\";s:31:\"2015/07/kavi-darbar-cd-copy.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"kavi-darbar-cd-copy-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:\"kavi-darbar-cd-copy-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"kavi-darbar-cd-copy-1024x708.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:708;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:29:\"kavi-darbar-cd-copy-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:31:\"kavi-darbar-cd-copy-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:31:\"kavi-darbar-cd-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:32:\"kavi-darbar-cd-copy-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:31:\"kavi-darbar-cd-copy-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:32:\"kavi-darbar-cd-copy-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:33:\"kavi-darbar-cd-copy-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5183,3185,'_wp_attached_file','2015/07/kd.jpg'),(5184,3185,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:14:\"2015/07/kd.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"kd-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:\"kd-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"kd-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:12:\"kd-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:14:\"kd-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:14:\"kd-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:15:\"kd-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:14:\"kd-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:15:\"kd-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:16:\"kd-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5185,3186,'_wp_attached_file','2015/07/kd1.jpg'),(5186,3186,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:15:\"2015/07/kd1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"kd1-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:\"kd1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"kd1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"kd1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"kd1-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"kd1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"kd1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:17:\"kd1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5187,3187,'_wp_attached_file','2015/07/kd2.jpg'),(5188,3187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:15:\"2015/07/kd2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"kd2-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:\"kd2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"kd2-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"kd2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"kd2-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"kd2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd2-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"kd2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd2-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:17:\"kd2-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5189,3188,'_wp_attached_file','2015/07/kd3.jpg'),(5190,3188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:15:\"2015/07/kd3.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"kd3-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:\"kd3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"kd3-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"kd3-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"kd3-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"kd3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd3-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"kd3-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd3-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:17:\"kd3-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5191,3189,'_wp_attached_file','2015/07/kd5.jpg'),(5192,3189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:15:\"2015/07/kd5.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"kd5-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:\"kd5-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"kd5-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"kd5-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"kd5-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"kd5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd5-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"kd5-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd5-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:17:\"kd5-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5193,3190,'_wp_attached_file','2015/07/kd6.jpg'),(5194,3190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:15:\"2015/07/kd6.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"kd6-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:\"kd6-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"kd6-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"kd6-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"kd6-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"kd6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd6-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"kd6-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd6-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:17:\"kd6-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5195,3191,'_wp_attached_file','2015/07/kd7.jpg'),(5196,3191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:15:\"2015/07/kd7.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"kd7-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:\"kd7-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"kd7-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"kd7-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"kd7-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"kd7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd7-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"kd7-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd7-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:17:\"kd7-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5197,3192,'_wp_attached_file','2015/07/kd8.jpg'),(5198,3192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:15:\"2015/07/kd8.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"kd8-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:\"kd8-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"kd8-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"kd8-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"kd8-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"kd8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd8-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"kd8-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd8-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:17:\"kd8-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5199,3193,'_wp_attached_file','2015/07/kd9.jpg'),(5200,3193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:15:\"2015/07/kd9.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"kd9-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:\"kd9-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"kd9-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:13:\"kd9-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:15:\"kd9-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:15:\"kd9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:16:\"kd9-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:15:\"kd9-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:16:\"kd9-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:17:\"kd9-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5201,3194,'_wp_attached_file','2015/07/kd10.jpg'),(5202,3194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:16:\"2015/07/kd10.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd10-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:\"kd10-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd10-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd10-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd10-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd10-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd10-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd10-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd10-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5203,3195,'_wp_attached_file','2015/07/kd11.jpg'),(5204,3195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd11.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd11-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:\"kd11-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd11-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd11-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd11-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd11-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd11-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd11-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd11-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5205,3196,'_wp_attached_file','2015/07/kd12.jpg'),(5206,3196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd12.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd12-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:\"kd12-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd12-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd12-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd12-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd12-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd12-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd12-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd12-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5207,3197,'_wp_attached_file','2015/07/kd13.jpg'),(5208,3197,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd13.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd13-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:\"kd13-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd13-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd13-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd13-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd13-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd13-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd13-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd13-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5209,3198,'_wp_attached_file','2015/07/kd14.jpg'),(5210,3198,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd14.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd14-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:\"kd14-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd14-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd14-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd14-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd14-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd14-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd14-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd14-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5211,3199,'_wp_attached_file','2015/07/kd15.jpg'),(5212,3199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd15.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd15-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:\"kd15-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd15-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd15-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd15-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd15-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd15-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd15-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd15-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5213,3200,'_wp_attached_file','2015/07/kd16.jpg'),(5214,3200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd16.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd16-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:\"kd16-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd16-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd16-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd16-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd16-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd16-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd16-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd16-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5215,3201,'_wp_attached_file','2015/07/kd18.jpg'),(5216,3201,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd18.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd18-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:\"kd18-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd18-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd18-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd18-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd18-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd18-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd18-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd18-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd18-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5217,3202,'_wp_attached_file','2015/07/kd19.jpg'),(5218,3202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd19.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd19-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:\"kd19-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd19-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd19-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd19-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd19-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd19-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd19-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd19-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd19-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5219,3203,'_wp_attached_file','2015/07/kd20.jpg'),(5220,3203,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd20.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd20-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:\"kd20-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd20-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd20-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd20-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd20-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd20-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd20-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd20-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd20-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5221,3204,'_wp_attached_file','2015/07/kd21.jpg'),(5222,3204,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd21.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd21-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:\"kd21-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd21-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd21-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd21-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd21-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd21-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd21-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd21-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd21-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5223,3205,'_wp_attached_file','2015/07/kd22.jpg'),(5224,3205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd22.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd22-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:\"kd22-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd22-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd22-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd22-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd22-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd22-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd22-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd22-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd22-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5225,3206,'_wp_attached_file','2015/07/kd23.jpg'),(5226,3206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd23.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd23-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:\"kd23-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd23-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd23-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd23-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd23-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd23-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd23-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd23-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd23-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5227,3207,'_wp_attached_file','2015/07/kd24.jpg'),(5228,3207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd24.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd24-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:\"kd24-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd24-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd24-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd24-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd24-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd24-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd24-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd24-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd24-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5229,3208,'_wp_attached_file','2015/07/kd25.jpg'),(5230,3208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd25.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd25-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:\"kd25-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd25-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd25-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd25-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd25-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd25-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd25-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd25-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd25-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5231,3209,'_wp_attached_file','2015/07/kd26.jpg'),(5232,3209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd26.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd26-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:\"kd26-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd26-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd26-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd26-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd26-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd26-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd26-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd26-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd26-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5233,3210,'_wp_attached_file','2015/07/kd27.jpg'),(5234,3210,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd27.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd27-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:\"kd27-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd27-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd27-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd27-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd27-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd27-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd27-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd27-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd27-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5235,3181,'_edit_last','1'),(5236,3181,'_edit_lock','1436744717:1'),(5237,3211,'_wp_attached_file','2015/07/kd28.jpg'),(5238,3211,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:16:\"2015/07/kd28.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd28-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:\"kd28-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd28-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd28-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd28-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd28-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd28-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd28-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd28-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd28-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5239,3212,'_wp_attached_file','2015/07/kd31.jpg'),(5240,3212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1704;s:6:\"height\";i:2272;s:4:\"file\";s:16:\"2015/07/kd31.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd31-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:\"kd31-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd31-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd31-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd31-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd31-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd31-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd31-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd31-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd31-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5241,3213,'_wp_attached_file','2015/07/kd32.jpg'),(5242,3213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1704;s:6:\"height\";i:2272;s:4:\"file\";s:16:\"2015/07/kd32.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd32-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:\"kd32-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd32-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd32-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd32-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd32-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd32-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd32-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd32-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd32-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5243,3214,'_wp_attached_file','2015/07/kd33.jpg'),(5244,3214,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1704;s:6:\"height\";i:2272;s:4:\"file\";s:16:\"2015/07/kd33.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd33-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:\"kd33-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd33-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd33-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd33-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd33-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd33-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd33-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd33-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd33-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5245,3215,'_wp_attached_file','2015/07/kd34.jpg'),(5246,3215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd34.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd34-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:\"kd34-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd34-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd34-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd34-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd34-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd34-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd34-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd34-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd34-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5247,3216,'_wp_attached_file','2015/07/kd35.jpg'),(5248,3216,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd35.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd35-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:\"kd35-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd35-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd35-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd35-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd35-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd35-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd35-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd35-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd35-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5249,3217,'_wp_attached_file','2015/07/kd36.jpg'),(5250,3217,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd36.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd36-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:\"kd36-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd36-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd36-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd36-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd36-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd36-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd36-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd36-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd36-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5251,3218,'_wp_attached_file','2015/07/kd37.jpg'),(5252,3218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd37.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd37-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:\"kd37-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd37-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd37-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd37-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd37-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd37-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd37-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd37-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd37-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5253,3219,'_wp_attached_file','2015/07/kd38.jpg'),(5254,3219,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd38.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd38-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:\"kd38-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd38-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd38-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd38-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd38-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd38-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd38-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd38-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd38-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5255,3220,'_wp_attached_file','2015/07/kd39.jpg'),(5256,3220,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd39.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd39-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:\"kd39-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd39-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd39-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd39-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd39-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd39-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd39-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd39-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd39-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5257,3221,'_wp_attached_file','2015/07/kd40.jpg'),(5258,3221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd40.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd40-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:\"kd40-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd40-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd40-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd40-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd40-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd40-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd40-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd40-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd40-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5259,3222,'_wp_attached_file','2015/07/kd41.jpg'),(5260,3222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd41.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd41-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:\"kd41-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd41-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd41-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd41-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd41-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd41-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd41-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd41-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd41-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5261,3223,'_wp_attached_file','2015/07/kd49.jpg'),(5262,3223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1704;s:6:\"height\";i:2272;s:4:\"file\";s:16:\"2015/07/kd49.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd49-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:\"kd49-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd49-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd49-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd49-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd49-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd49-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd49-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd49-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd49-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5263,3224,'_wp_attached_file','2015/07/kd50.jpg'),(5264,3224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1704;s:6:\"height\";i:2272;s:4:\"file\";s:16:\"2015/07/kd50.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd50-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:\"kd50-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd50-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd50-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd50-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd50-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd50-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd50-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd50-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd50-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5265,3225,'_wp_attached_file','2015/07/kd51.jpg'),(5266,3225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd51.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd51-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:\"kd51-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd51-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd51-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd51-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd51-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd51-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd51-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd51-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd51-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5267,3226,'_wp_attached_file','2015/07/kd52.jpg'),(5268,3226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd52.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd52-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:\"kd52-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd52-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd52-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd52-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd52-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd52-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd52-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd52-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd52-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5269,3227,'_wp_attached_file','2015/07/kd53.jpg'),(5270,3227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd53.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd53-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:\"kd53-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd53-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd53-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd53-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd53-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd53-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd53-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd53-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd53-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5271,3228,'_wp_attached_file','2015/07/kd54.jpg'),(5272,3228,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd54.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd54-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:\"kd54-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd54-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd54-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd54-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd54-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd54-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd54-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd54-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd54-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5273,3229,'_wp_attached_file','2015/07/kd55.jpg'),(5274,3229,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd55.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd55-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:\"kd55-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd55-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd55-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd55-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd55-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd55-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd55-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd55-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd55-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5275,3230,'_wp_attached_file','2015/07/kd56.jpg'),(5276,3230,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd56.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd56-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:\"kd56-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd56-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd56-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd56-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd56-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd56-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd56-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd56-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd56-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5277,3231,'_wp_attached_file','2015/07/kd57.jpg'),(5278,3231,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd57.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd57-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:\"kd57-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd57-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd57-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd57-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd57-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd57-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd57-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd57-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd57-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5279,3181,'_wpb_vc_js_status','true'),(5280,3181,'_wpb_vc_js_interface_version','2'),(5281,3181,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3273,3272,3271,3270,3267,3266,3265,3264,3263,3262,3261,3260,3259,3258,3257,3256,3255,3254,3253,3252,3251,3250,3249,3248,3247,3246,3245,3244,3231,3233,3234,3235,3236,3237,3230,3229,3228,3227,3226,3225,3219,3220,3221,3222,3223,3224,3218,3217,3216,3215,3214,3213,3212,3211,3210,3209,3208,3207,3206,3205,3204,3203,3202,3201,3200,3199,3198,3197,3196,3195,3194,3193,3192,3191,3190,3189,3188,3187,3186\" layout=\"3\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"640x480\"][/vc_column][/vc_row]'),(5282,3181,'_nectar_portfolio_item_layout','enabled'),(5283,3181,'_nectar_portfolio_custom_thumbnail',''),(5284,3233,'_wp_attached_file','2015/07/kd58.jpg'),(5285,3181,'_nectar_hide_featured','off'),(5286,3181,'_portfolio_item_masonry_sizing','regular'),(5287,3181,'_nectar_external_project_url',''),(5288,3181,'nectar-metabox-portfolio-parent-override','default'),(5289,3181,'_nectar_project_excerpt',''),(5290,3181,'_nectar_project_accent_color',''),(5291,3181,'_nectar_header_bg',''),(5292,3233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd58.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd58-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:\"kd58-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd58-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd58-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd58-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd58-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd58-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd58-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd58-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd58-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5293,3181,'_nectar_header_parallax','off'),(5294,3181,'_nectar_header_bg_height',''),(5295,3181,'_nectar_header_bg_color',''),(5296,3181,'_nectar_header_font_color',''),(5297,3181,'_disable_transparent_header','off'),(5298,3181,'_nectar_video_m4v',''),(5299,3234,'_wp_attached_file','2015/07/kd59.jpg'),(5300,3181,'_nectar_video_ogv',''),(5301,3181,'_nectar_video_height',''),(5302,3181,'_nectar_video_poster',''),(5303,3181,'_nectar_video_embed',''),(5304,3234,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd59.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd59-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:\"kd59-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd59-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd59-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd59-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd59-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd59-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd59-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd59-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd59-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5305,3235,'_wp_attached_file','2015/07/kd60.jpg'),(5306,3235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd60.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd60-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:\"kd60-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd60-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd60-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd60-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd60-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd60-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd60-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd60-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd60-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5307,3236,'_wp_attached_file','2015/07/kd61.jpg'),(5308,3236,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd61.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd61-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:\"kd61-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd61-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd61-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd61-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd61-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd61-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd61-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd61-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd61-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5309,3237,'_wp_attached_file','2015/07/kd62.jpg'),(5310,3237,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd62.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd62-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:\"kd62-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd62-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd62-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd62-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd62-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd62-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd62-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd62-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd62-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5311,3238,'_wp_attached_file','2015/07/kd63.jpg'),(5312,3238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd63.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd63-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:\"kd63-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd63-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd63-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd63-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd63-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd63-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd63-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd63-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd63-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5313,3239,'_wp_attached_file','2015/07/kd64.jpg'),(5314,3239,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd64.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd64-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:\"kd64-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd64-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd64-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd64-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd64-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd64-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd64-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd64-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd64-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5315,3240,'_wp_attached_file','2015/07/kd65.jpg'),(5316,3240,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd65.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd65-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:\"kd65-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd65-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd65-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd65-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd65-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd65-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd65-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd65-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd65-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5317,3241,'_wp_attached_file','2015/07/kd66.jpg'),(5318,3241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd66.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd66-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:\"kd66-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd66-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd66-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd66-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd66-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd66-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd66-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd66-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd66-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5319,3242,'_wp_attached_file','2015/07/kd67.jpg'),(5320,3242,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd67.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd67-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:\"kd67-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd67-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd67-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd67-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd67-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd67-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd67-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd67-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd67-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5321,3243,'_wp_attached_file','2015/07/kd68.jpg'),(5322,3243,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd68.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd68-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:\"kd68-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd68-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd68-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd68-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd68-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd68-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd68-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd68-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd68-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5323,3244,'_wp_attached_file','2015/07/kd69.jpg'),(5324,3244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd69.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd69-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:\"kd69-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd69-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd69-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd69-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd69-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd69-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd69-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd69-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd69-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5325,3245,'_wp_attached_file','2015/07/kd70.jpg'),(5326,3245,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd70.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd70-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:\"kd70-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd70-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd70-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd70-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd70-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd70-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd70-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd70-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd70-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5327,3246,'_wp_attached_file','2015/07/kd71.jpg'),(5328,3246,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd71.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd71-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:\"kd71-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd71-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd71-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd71-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd71-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd71-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd71-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd71-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd71-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5329,3247,'_wp_attached_file','2015/07/kd72.jpg'),(5330,3247,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd72.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd72-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:\"kd72-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd72-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd72-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd72-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd72-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd72-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd72-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd72-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd72-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5331,3248,'_wp_attached_file','2015/07/kd73.jpg'),(5332,3248,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd73.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd73-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:\"kd73-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd73-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd73-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd73-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd73-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd73-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd73-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd73-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd73-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5333,3249,'_wp_attached_file','2015/07/kd74.jpg'),(5334,3249,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd74.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd74-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:\"kd74-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd74-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd74-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd74-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd74-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd74-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd74-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd74-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd74-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5335,3250,'_wp_attached_file','2015/07/kd75.jpg'),(5336,3250,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd75.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd75-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:\"kd75-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd75-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd75-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd75-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd75-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd75-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd75-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd75-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd75-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5337,3251,'_wp_attached_file','2015/07/kd76.jpg'),(5338,3251,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd76.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd76-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:\"kd76-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd76-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd76-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd76-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd76-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd76-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd76-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd76-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd76-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5339,3252,'_wp_attached_file','2015/07/kd77.jpg'),(5340,3252,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd77.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd77-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:\"kd77-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd77-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd77-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd77-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd77-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd77-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd77-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd77-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd77-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5341,3253,'_wp_attached_file','2015/07/kd78.jpg'),(5342,3253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1704;s:6:\"height\";i:2272;s:4:\"file\";s:16:\"2015/07/kd78.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd78-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:\"kd78-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd78-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd78-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd78-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd78-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd78-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd78-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd78-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd78-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5343,3254,'_wp_attached_file','2015/07/kd79.jpg'),(5344,3254,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd79.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd79-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:\"kd79-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd79-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd79-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd79-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd79-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd79-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd79-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd79-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd79-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5345,3255,'_wp_attached_file','2015/07/kd80.jpg'),(5346,3255,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1704;s:6:\"height\";i:2272;s:4:\"file\";s:16:\"2015/07/kd80.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd80-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:\"kd80-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd80-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd80-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd80-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd80-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd80-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd80-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd80-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd80-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5347,3256,'_wp_attached_file','2015/07/kd81.jpg'),(5348,3256,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd81.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd81-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:\"kd81-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd81-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd81-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd81-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd81-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd81-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd81-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd81-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd81-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5349,3257,'_wp_attached_file','2015/07/kd82.jpg'),(5350,3257,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd82.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd82-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:\"kd82-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd82-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd82-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd82-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd82-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd82-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd82-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd82-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd82-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5351,3258,'_wp_attached_file','2015/07/kd83.jpg'),(5352,3258,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd83.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd83-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:\"kd83-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd83-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd83-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd83-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd83-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd83-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd83-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd83-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd83-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5353,3259,'_wp_attached_file','2015/07/kd84.jpg'),(5354,3259,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd84.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd84-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:\"kd84-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd84-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd84-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd84-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd84-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd84-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd84-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd84-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd84-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5355,3260,'_wp_attached_file','2015/07/kd85.jpg'),(5356,3260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd85.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd85-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:\"kd85-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd85-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd85-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd85-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd85-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd85-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd85-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd85-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd85-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5357,3261,'_wp_attached_file','2015/07/kd86.jpg'),(5358,3261,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd86.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd86-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:\"kd86-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd86-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd86-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd86-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd86-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd86-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd86-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd86-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd86-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5359,3262,'_wp_attached_file','2015/07/kd87.jpg'),(5360,3262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd87.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd87-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:\"kd87-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd87-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd87-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd87-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd87-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd87-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd87-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd87-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd87-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5361,3263,'_wp_attached_file','2015/07/kd88.jpg'),(5362,3263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd88.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd88-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:\"kd88-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd88-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd88-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd88-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd88-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd88-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd88-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd88-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd88-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5363,3264,'_wp_attached_file','2015/07/kd89.jpg'),(5364,3264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd89.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd89-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:\"kd89-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd89-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd89-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd89-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd89-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd89-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd89-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd89-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd89-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5365,3265,'_wp_attached_file','2015/07/kd90.jpg'),(5366,3265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:16:\"2015/07/kd90.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kd90-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:\"kd90-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kd90-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"kd90-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"kd90-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"kd90-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"kd90-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"kd90-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"kd90-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"kd90-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5367,3266,'_wp_attached_file','2015/07/PICT2622.jpg'),(5368,3266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1704;s:6:\"height\";i:2272;s:4:\"file\";s:20:\"2015/07/PICT2622.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2622-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:\"PICT2622-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PICT2622-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2622-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2622-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2622-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"PICT2622-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2622-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"PICT2622-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"PICT2622-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5369,3267,'_wp_attached_file','2015/07/PICT2626.jpg'),(5370,3267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1704;s:6:\"height\";i:2272;s:4:\"file\";s:20:\"2015/07/PICT2626.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2626-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:\"PICT2626-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PICT2626-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2626-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2626-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2626-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"PICT2626-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2626-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"PICT2626-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"PICT2626-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5371,3268,'_wp_attached_file','2015/07/PICT2628.jpg'),(5372,3268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:20:\"2015/07/PICT2628.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2628-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:\"PICT2628-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PICT2628-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2628-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2628-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2628-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"PICT2628-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2628-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"PICT2628-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"PICT2628-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5373,3269,'_wp_attached_file','2015/07/PICT2629.jpg'),(5374,3269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:20:\"2015/07/PICT2629.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2629-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:\"PICT2629-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PICT2629-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2629-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2629-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2629-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"PICT2629-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2629-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"PICT2629-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"PICT2629-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5375,3270,'_wp_attached_file','2015/07/PICT2667.jpg'),(5376,3270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:20:\"2015/07/PICT2667.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2667-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:\"PICT2667-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PICT2667-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2667-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2667-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2667-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"PICT2667-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2667-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"PICT2667-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"PICT2667-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5377,3271,'_wp_attached_file','2015/07/PICT2668.jpg'),(5378,3271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:20:\"2015/07/PICT2668.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PICT2668-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:\"PICT2668-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PICT2668-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PICT2668-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PICT2668-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PICT2668-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"PICT2668-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PICT2668-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"PICT2668-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"PICT2668-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5379,3272,'_wp_attached_file','2015/07/rana.jpg'),(5380,3272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1704;s:6:\"height\";i:2272;s:4:\"file\";s:16:\"2015/07/rana.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"rana-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:\"rana-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"rana-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:14:\"rana-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:16:\"rana-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:16:\"rana-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:17:\"rana-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:16:\"rana-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"rana-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"rana-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5381,3273,'_wp_attached_file','2015/07/shivevening.jpg'),(5382,3273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:938;s:6:\"height\";i:958;s:4:\"file\";s:23:\"2015/07/shivevening.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shivevening-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:\"shivevening-294x300.jpg\";s:5:\"width\";i:294;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"shivevening-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"shivevening-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"shivevening-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:23:\"shivevening-938x500.jpg\";s:5:\"width\";i:938;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"shivevening-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"shivevening-500x958.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:958;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5383,3181,'_thumbnail_id','3273'),(5384,3276,'_wp_attached_file','2015/07/ajit_31_Dec_2004.jpg'),(5385,3276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:275;s:4:\"file\";s:28:\"2015/07/ajit_31_Dec_2004.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"ajit_31_Dec_2004-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"ajit_31_Dec_2004-300x138.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:26:\"ajit_31_Dec_2004-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:28:\"ajit_31_Dec_2004-600x275.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:28:\"ajit_31_Dec_2004-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:28:\"ajit_31_Dec_2004-500x275.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:28:\"ajit_31_Dec_2004-500x275.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5386,3277,'_wp_attached_file','2015/07/filmmusicaug_2005.jpg'),(5387,3277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:747;s:6:\"height\";i:1099;s:4:\"file\";s:29:\"2015/07/filmmusicaug_2005.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"filmmusicaug_2005-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"filmmusicaug_2005-204x300.jpg\";s:5:\"width\";i:204;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"filmmusicaug_2005-696x1024.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:27:\"filmmusicaug_2005-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:29:\"filmmusicaug_2005-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:29:\"filmmusicaug_2005-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:29:\"filmmusicaug_2005-747x500.jpg\";s:5:\"width\";i:747;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:29:\"filmmusicaug_2005-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:30:\"filmmusicaug_2005-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:30:\"filmmusicaug_2005-747x1000.jpg\";s:5:\"width\";i:747;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5388,3278,'_wp_attached_file','2015/07/HK-samachar-26-aug-2002.jpg'),(5389,3278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:856;s:6:\"height\";i:2022;s:4:\"file\";s:35:\"2015/07/HK-samachar-26-aug-2002.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HK-samachar-26-aug-2002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HK-samachar-26-aug-2002-127x300.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HK-samachar-26-aug-2002-434x1024.jpg\";s:5:\"width\";i:434;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:33:\"HK-samachar-26-aug-2002-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:35:\"HK-samachar-26-aug-2002-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:35:\"HK-samachar-26-aug-2002-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:35:\"HK-samachar-26-aug-2002-856x500.jpg\";s:5:\"width\";i:856;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:35:\"HK-samachar-26-aug-2002-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:36:\"HK-samachar-26-aug-2002-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:36:\"HK-samachar-26-aug-2002-856x1000.jpg\";s:5:\"width\";i:856;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5390,3279,'_wp_attached_file','2015/07/Ajit-29-06-2006.jpg'),(5391,3279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:822;s:4:\"file\";s:27:\"2015/07/Ajit-29-06-2006.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Ajit-29-06-2006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Ajit-29-06-2006-236x300.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"Ajit-29-06-2006-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"Ajit-29-06-2006-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"Ajit-29-06-2006-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:27:\"Ajit-29-06-2006-648x500.jpg\";s:5:\"width\";i:648;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:27:\"Ajit-29-06-2006-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:27:\"Ajit-29-06-2006-500x822.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:822;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5392,3280,'_wp_attached_file','2015/07/atwal.jpg'),(5393,3280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1172;s:6:\"height\";i:1312;s:4:\"file\";s:17:\"2015/07/atwal.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"atwal-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:\"atwal-268x300.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"atwal-915x1024.jpg\";s:5:\"width\";i:915;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:15:\"atwal-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:17:\"atwal-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:17:\"atwal-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:18:\"atwal-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:17:\"atwal-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:18:\"atwal-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:19:\"atwal-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5394,3281,'_wp_attached_file','2015/07/ajit-3-jun-2000.jpg'),(5395,3281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:816;s:4:\"file\";s:27:\"2015/07/ajit-3-jun-2000.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"ajit-3-jun-2000-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"ajit-3-jun-2000-221x300.jpg\";s:5:\"width\";i:221;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"ajit-3-jun-2000-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"ajit-3-jun-2000-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"ajit-3-jun-2000-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:27:\"ajit-3-jun-2000-600x500.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:27:\"ajit-3-jun-2000-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:27:\"ajit-3-jun-2000-500x816.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:816;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5396,3282,'_wp_attached_file','2015/07/filmMusic_magazine_aug_2005.jpg'),(5397,3282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:875;s:4:\"file\";s:39:\"2015/07/filmMusic_magazine_aug_2005.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"filmMusic_magazine_aug_2005-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"filmMusic_magazine_aug_2005-300x175.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"filmMusic_magazine_aug_2005-1024x597.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:37:\"filmMusic_magazine_aug_2005-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:39:\"filmMusic_magazine_aug_2005-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:39:\"filmMusic_magazine_aug_2005-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:40:\"filmMusic_magazine_aug_2005-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:39:\"filmMusic_magazine_aug_2005-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:39:\"filmMusic_magazine_aug_2005-500x875.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:875;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:40:\"filmMusic_magazine_aug_2005-1000x875.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:875;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5398,3283,'_wp_attached_file','2015/07/ajit-14-sep-2001.jpg'),(5399,3283,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:728;s:6:\"height\";i:634;s:4:\"file\";s:28:\"2015/07/ajit-14-sep-2001.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"ajit-14-sep-2001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"ajit-14-sep-2001-300x261.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:261;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:26:\"ajit-14-sep-2001-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:28:\"ajit-14-sep-2001-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:28:\"ajit-14-sep-2001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:28:\"ajit-14-sep-2001-728x500.jpg\";s:5:\"width\";i:728;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:28:\"ajit-14-sep-2001-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:28:\"ajit-14-sep-2001-500x634.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:634;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5400,3284,'_wp_attached_file','2015/07/Ajit-22-02-2006.jpg'),(5401,3284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:702;s:6:\"height\";i:802;s:4:\"file\";s:27:\"2015/07/Ajit-22-02-2006.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Ajit-22-02-2006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Ajit-22-02-2006-263x300.jpg\";s:5:\"width\";i:263;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"Ajit-22-02-2006-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"Ajit-22-02-2006-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"Ajit-22-02-2006-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:27:\"Ajit-22-02-2006-702x500.jpg\";s:5:\"width\";i:702;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:27:\"Ajit-22-02-2006-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:27:\"Ajit-22-02-2006-500x802.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5402,3285,'_wp_attached_file','2015/07/bindra-gold-medal-18th-august-ajit.jpg'),(5403,3285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:480;s:4:\"file\";s:46:\"2015/07/bindra-gold-medal-18th-august-ajit.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"bindra-gold-medal-18th-august-ajit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"bindra-gold-medal-18th-august-ajit-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:44:\"bindra-gold-medal-18th-august-ajit-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:46:\"bindra-gold-medal-18th-august-ajit-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:46:\"bindra-gold-medal-18th-august-ajit-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:46:\"bindra-gold-medal-18th-august-ajit-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:46:\"bindra-gold-medal-18th-august-ajit-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5404,3286,'_wp_attached_file','2015/07/ajit-4-oct-2000.jpg'),(5405,3286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:708;s:6:\"height\";i:762;s:4:\"file\";s:27:\"2015/07/ajit-4-oct-2000.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"ajit-4-oct-2000-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"ajit-4-oct-2000-279x300.jpg\";s:5:\"width\";i:279;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"ajit-4-oct-2000-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"ajit-4-oct-2000-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"ajit-4-oct-2000-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:27:\"ajit-4-oct-2000-708x500.jpg\";s:5:\"width\";i:708;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:27:\"ajit-4-oct-2000-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:27:\"ajit-4-oct-2000-500x762.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:762;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5406,3287,'_wp_attached_file','2015/07/kamagata-ajit-29-sept-08.jpg'),(5407,3287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:782;s:6:\"height\";i:501;s:4:\"file\";s:36:\"2015/07/kamagata-ajit-29-sept-08.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"kamagata-ajit-29-sept-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"kamagata-ajit-29-sept-08-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:34:\"kamagata-ajit-29-sept-08-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:36:\"kamagata-ajit-29-sept-08-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:36:\"kamagata-ajit-29-sept-08-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:36:\"kamagata-ajit-29-sept-08-782x500.jpg\";s:5:\"width\";i:782;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:36:\"kamagata-ajit-29-sept-08-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:36:\"kamagata-ajit-29-sept-08-500x501.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5408,3288,'_wp_attached_file','2015/07/ajit-16-05-2010.jpg'),(5409,3288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:704;s:6:\"height\";i:655;s:4:\"file\";s:27:\"2015/07/ajit-16-05-2010.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"ajit-16-05-2010-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"ajit-16-05-2010-300x279.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"ajit-16-05-2010-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"ajit-16-05-2010-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"ajit-16-05-2010-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:27:\"ajit-16-05-2010-704x500.jpg\";s:5:\"width\";i:704;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:27:\"ajit-16-05-2010-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:27:\"ajit-16-05-2010-500x655.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5410,3289,'_wp_attached_file','2015/07/Ishmeet-18th-august-AJIT.jpg'),(5411,3289,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:554;s:4:\"file\";s:36:\"2015/07/Ishmeet-18th-august-AJIT.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Ishmeet-18th-august-AJIT-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Ishmeet-18th-august-AJIT-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:34:\"Ishmeet-18th-august-AJIT-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:36:\"Ishmeet-18th-august-AJIT-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:36:\"Ishmeet-18th-august-AJIT-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:36:\"Ishmeet-18th-august-AJIT-790x500.jpg\";s:5:\"width\";i:790;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:36:\"Ishmeet-18th-august-AJIT-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:36:\"Ishmeet-18th-august-AJIT-500x554.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:554;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5412,3290,'_wp_attached_file','2015/07/New-commitee-4-sept-ajit.jpg'),(5413,3290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:638;s:6:\"height\";i:629;s:4:\"file\";s:36:\"2015/07/New-commitee-4-sept-ajit.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"New-commitee-4-sept-ajit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"New-commitee-4-sept-ajit-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:34:\"New-commitee-4-sept-ajit-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:36:\"New-commitee-4-sept-ajit-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:36:\"New-commitee-4-sept-ajit-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:36:\"New-commitee-4-sept-ajit-638x500.jpg\";s:5:\"width\";i:638;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:36:\"New-commitee-4-sept-ajit-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:36:\"New-commitee-4-sept-ajit-500x629.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5414,3291,'_wp_attached_file','2015/07/european-news-3-10-08.jpg'),(5415,3291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:717;s:6:\"height\";i:693;s:4:\"file\";s:33:\"2015/07/european-news-3-10-08.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"european-news-3-10-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"european-news-3-10-08-300x290.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:290;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:31:\"european-news-3-10-08-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:33:\"european-news-3-10-08-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:33:\"european-news-3-10-08-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:33:\"european-news-3-10-08-717x500.jpg\";s:5:\"width\";i:717;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:33:\"european-news-3-10-08-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:33:\"european-news-3-10-08-500x693.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5416,3292,'_wp_attached_file','2015/07/rthk-news-3-10-08.jpg'),(5417,3292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:742;s:6:\"height\";i:684;s:4:\"file\";s:29:\"2015/07/rthk-news-3-10-08.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"rthk-news-3-10-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"rthk-news-3-10-08-300x277.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:27:\"rthk-news-3-10-08-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:29:\"rthk-news-3-10-08-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:29:\"rthk-news-3-10-08-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:29:\"rthk-news-3-10-08-742x500.jpg\";s:5:\"width\";i:742;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:29:\"rthk-news-3-10-08-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:29:\"rthk-news-3-10-08-500x684.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5418,3293,'_wp_attached_file','2015/07/scan1.jpg'),(5419,3293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1344;s:6:\"height\";i:550;s:4:\"file\";s:17:\"2015/07/scan1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"scan1-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:\"scan1-300x123.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"scan1-1024x419.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:15:\"scan1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:17:\"scan1-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:17:\"scan1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:18:\"scan1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:17:\"scan1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:17:\"scan1-500x550.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:18:\"scan1-1000x550.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5420,3295,'_wp_attached_file','2015/07/ajit-nov-2014.jpg'),(5421,3295,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:623;s:6:\"height\";i:943;s:4:\"file\";s:25:\"2015/07/ajit-nov-2014.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"ajit-nov-2014-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:\"ajit-nov-2014-198x300.jpg\";s:5:\"width\";i:198;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:23:\"ajit-nov-2014-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:25:\"ajit-nov-2014-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:25:\"ajit-nov-2014-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:25:\"ajit-nov-2014-623x500.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:25:\"ajit-nov-2014-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:25:\"ajit-nov-2014-500x943.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:943;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5422,3296,'_wp_attached_file','2015/07/12-sep-2001.jpg'),(5423,3296,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:724;s:6:\"height\";i:1116;s:4:\"file\";s:23:\"2015/07/12-sep-2001.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"12-sep-2001-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:\"12-sep-2001-195x300.jpg\";s:5:\"width\";i:195;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"12-sep-2001-664x1024.jpg\";s:5:\"width\";i:664;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"12-sep-2001-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"12-sep-2001-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"12-sep-2001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:23:\"12-sep-2001-724x500.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"12-sep-2001-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:24:\"12-sep-2001-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"12-sep-2001-724x1000.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5424,3298,'_wp_attached_file','2015/07/ajit-9-jun-2000.jpg'),(5425,3298,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:968;s:6:\"height\";i:1194;s:4:\"file\";s:27:\"2015/07/ajit-9-jun-2000.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"ajit-9-jun-2000-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"ajit-9-jun-2000-243x300.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"ajit-9-jun-2000-830x1024.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"ajit-9-jun-2000-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"ajit-9-jun-2000-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"ajit-9-jun-2000-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:27:\"ajit-9-jun-2000-968x500.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:27:\"ajit-9-jun-2000-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:28:\"ajit-9-jun-2000-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:28:\"ajit-9-jun-2000-968x1000.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5426,3299,'_wp_attached_file','2015/07/ajit-31-December-2004.jpg'),(5427,3299,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1989;s:6:\"height\";i:912;s:4:\"file\";s:33:\"2015/07/ajit-31-December-2004.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"ajit-31-December-2004-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"ajit-31-December-2004-300x138.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"ajit-31-December-2004-1024x470.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:31:\"ajit-31-December-2004-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:33:\"ajit-31-December-2004-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:33:\"ajit-31-December-2004-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:34:\"ajit-31-December-2004-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:33:\"ajit-31-December-2004-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:33:\"ajit-31-December-2004-500x912.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:912;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:34:\"ajit-31-December-2004-1000x912.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:912;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5428,3300,'_wp_attached_file','2015/07/3.gif'),(5429,3300,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:349;s:6:\"height\";i:353;s:4:\"file\";s:13:\"2015/07/3.gif\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"3-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"3-297x300.gif\";s:5:\"width\";i:297;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:11:\"3-50x50.gif\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/gif\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:13:\"3-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5430,3301,'_wp_attached_file','2015/07/4.gif'),(5431,3301,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:352;s:6:\"height\";i:499;s:4:\"file\";s:13:\"2015/07/4.gif\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"4-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"4-212x300.gif\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:11:\"4-50x50.gif\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:13:\"4-352x403.gif\";s:5:\"width\";i:352;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/gif\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:13:\"4-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5432,3302,'_wp_attached_file','2015/07/ajit17_06_2006.jpg'),(5433,3302,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:346;s:4:\"file\";s:26:\"2015/07/ajit17_06_2006.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"ajit17_06_2006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"ajit17_06_2006-277x300.jpg\";s:5:\"width\";i:277;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:24:\"ajit17_06_2006-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:26:\"ajit17_06_2006-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5434,3303,'_wp_attached_file','2015/07/5.gif'),(5435,3303,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:338;s:6:\"height\";i:785;s:4:\"file\";s:13:\"2015/07/5.gif\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"5-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"5-129x300.gif\";s:5:\"width\";i:129;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:11:\"5-50x50.gif\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:13:\"5-338x403.gif\";s:5:\"width\";i:338;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/gif\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:13:\"5-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:4:\"wide\";a:4:{s:4:\"file\";s:13:\"5-338x500.gif\";s:5:\"width\";i:338;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:7:\"regular\";a:4:{s:4:\"file\";s:13:\"5-338x500.gif\";s:5:\"width\";i:338;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5436,3304,'_wp_attached_file','2015/07/hksamachar240606.jpg'),(5437,3304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:483;s:6:\"height\";i:345;s:4:\"file\";s:28:\"2015/07/hksamachar240606.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"hksamachar240606-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"hksamachar240606-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:26:\"hksamachar240606-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:28:\"hksamachar240606-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5438,3305,'_wp_attached_file','2015/07/hksamachar240606-1.jpg'),(5439,3305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:469;s:6:\"height\";i:329;s:4:\"file\";s:30:\"2015/07/hksamachar240606-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"hksamachar240606-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"hksamachar240606-1-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:28:\"hksamachar240606-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:30:\"hksamachar240606-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5440,3297,'_edit_last','1'),(5441,3297,'_edit_lock','1436772861:1'),(5442,3306,'_wp_attached_file','2015/07/ajit170606.jpg'),(5443,3306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:316;s:6:\"height\";i:354;s:4:\"file\";s:22:\"2015/07/ajit170606.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"ajit170606-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"ajit170606-268x300.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"ajit170606-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"ajit170606-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5444,3307,'_wp_attached_file','2015/07/ajit-27nov-02.jpg'),(5445,3307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:520;s:4:\"file\";s:25:\"2015/07/ajit-27nov-02.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"ajit-27nov-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:\"ajit-27nov-02-300x234.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:23:\"ajit-27nov-02-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:25:\"ajit-27nov-02-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:25:\"ajit-27nov-02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:25:\"ajit-27nov-02-666x500.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:25:\"ajit-27nov-02-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:25:\"ajit-27nov-02-500x520.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5446,3308,'_wp_attached_file','2015/07/2.gif'),(5447,3308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:716;s:6:\"height\";i:623;s:4:\"file\";s:13:\"2015/07/2.gif\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-300x261.gif\";s:5:\"width\";i:300;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:11:\"2-50x50.gif\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:13:\"2-600x403.gif\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/gif\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:13:\"2-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:4:\"wide\";a:4:{s:4:\"file\";s:13:\"2-716x500.gif\";s:5:\"width\";i:716;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:7:\"regular\";a:4:{s:4:\"file\";s:13:\"2-500x500.gif\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:4:\"tall\";a:4:{s:4:\"file\";s:13:\"2-500x623.gif\";s:5:\"width\";i:500;s:6:\"height\";i:623;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5448,3297,'_wpb_vc_js_status','true'),(5449,3297,'_wpb_vc_js_interface_version','2'),(5450,3297,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3308,3307,3306,3305,3304,3303,3302,3301,3300,3299,3298,3296,3295,3293,3292,3291,3290,3289,3288,3287,3286,3285,3284,3283,3282,3281,3280,3279,3278,3277,3276\" layout=\"3\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"600x600\"][/vc_column][/vc_row]'),(5451,3297,'_nectar_portfolio_item_layout','enabled'),(5452,3297,'_nectar_portfolio_custom_thumbnail',''),(5453,3297,'_nectar_hide_featured','on'),(5454,3297,'_portfolio_item_masonry_sizing','regular'),(5455,3297,'_nectar_external_project_url',''),(5456,3297,'nectar-metabox-portfolio-parent-override','default'),(5457,3297,'_nectar_project_excerpt',''),(5458,3297,'_nectar_project_accent_color','#2ac4ea'),(5459,3297,'_nectar_header_bg',''),(5460,3297,'_nectar_header_parallax','off'),(5461,3297,'_nectar_header_bg_height','300'),(5462,3297,'_nectar_header_bg_color',''),(5463,3297,'_nectar_header_font_color',''),(5464,3297,'_disable_transparent_header','on'),(5465,3297,'_nectar_video_m4v',''),(5466,3297,'_nectar_video_ogv',''),(5467,3297,'_nectar_video_height',''),(5468,3297,'_nectar_video_poster',''),(5469,3297,'_nectar_video_embed',''),(5470,3297,'_nectar_love','1'),(5471,2707,'_nectar_love','1'),(5472,3094,'_nectar_love','0'),(5473,3181,'_nectar_love','0'),(5474,3156,'_nectar_love','0'),(5475,84,'_edit_lock','1496143059:2'),(5501,2790,'_edit_lock','1436767952:1'),(5502,2790,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2250;s:6:\"height\";i:2250;s:4:\"file\";s:19:\"PYC-logo-new-3B.png\";}}'),(5503,2790,'_edit_last','1'),(5504,3322,'_edit_last','1'),(5505,3322,'_nectar_slider_bg_type','image_bg'),(5506,3322,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC-logo-new-3B.png'),(5507,3322,'_nectar_media_upload_webm',''),(5508,3322,'_nectar_media_upload_mp4',''),(5509,3322,'_nectar_media_upload_ogv',''),(5510,3322,'_nectar_slider_preview_image',''),(5511,3322,'_nectar_slider_video_texture','on'),(5512,3322,'_nectar_slider_slide_bg_alignment','center'),(5513,3322,'_nectar_slider_slide_font_color','light'),(5514,3322,'_nectar_slider_heading','Jasmel Singh Dhaliwal'),(5515,3322,'_nectar_slider_caption','Year 2000-2001'),(5516,3322,'_nectar_slider_caption_background','on'),(5517,3322,'_nectar_slider_down_arrow','off'),(5518,3322,'_nectar_slider_link_type','full_slide_link'),(5519,3322,'_nectar_slider_button',''),(5520,3322,'_nectar_slider_button_url',''),(5521,3322,'_nectar_slider_button_style','solid_color'),(5522,3322,'_nectar_slider_button_color','primary-color'),(5523,3322,'_nectar_slider_button_2',''),(5524,3322,'_nectar_slider_button_url_2',''),(5525,3322,'_nectar_slider_button_style_2','solid_color'),(5526,3322,'_nectar_slider_button_color_2','primary-color'),(5527,3322,'_nectar_slider_entire_link','roll-of-honor'),(5528,3322,'_nectar_slider_video_popup',''),(5529,3322,'_nectar_slide_xpos_alignment','left'),(5530,3322,'_nectar_slide_ypos_alignment','middle'),(5531,3322,'_nectar_slider_slide_custom_class',''),(5532,3322,'_edit_lock','1474809123:1'),(5562,3325,'_wp_attached_file','2015/07/PYC-logo-new-3B-300x3001.png'),(5563,3325,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:36:\"2015/07/PYC-logo-new-3B-300x3001.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"PYC-logo-new-3B-300x3001-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:34:\"PYC-logo-new-3B-300x3001-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:36:\"PYC-logo-new-3B-300x3001-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5567,3297,'_thumbnail_id','3298'),(5596,84,'_wpb_vc_js_status','false'),(5597,84,'_wpb_vc_js_interface_version','0'),(5598,84,'_nectar_gallery_slider','off'),(5599,84,'_nectar_header_bg',''),(5600,84,'_nectar_header_parallax','off'),(5601,84,'_nectar_header_bg_height',''),(5602,84,'_nectar_header_bg_color',''),(5603,84,'_nectar_header_font_color',''),(5604,84,'_disable_transparent_header','off'),(5607,2327,'_edit_lock','1436774434:1'),(5608,82,'_edit_lock','1436774444:1'),(5609,2328,'_edit_lock','1436774453:1'),(5610,1239,'_edit_lock','1436774461:1'),(5611,108,'_edit_lock','1436774484:1'),(5612,2329,'_edit_lock','1436774493:1'),(5613,1247,'_edit_lock','1436774502:1'),(5614,152,'_edit_lock','1436774512:1'),(5615,1251,'_edit_lock','1436774533:1'),(5616,3359,'_edit_last','1'),(5617,3359,'_edit_lock','1436775270:1'),(5620,3359,'_wpb_vc_js_status','false'),(5621,3359,'_wpb_vc_js_interface_version','2'),(5622,3359,'_nectar_gallery_slider','off'),(5623,3359,'_nectar_quote',''),(5624,3359,'_nectar_link',''),(5625,3359,'_nectar_video_m4v',''),(5626,3359,'_nectar_video_ogv',''),(5627,3359,'_nectar_video_poster',''),(5628,3359,'_nectar_video_embed','<iframe width=\"420\" height=\"315\" src=\"https://www.youtube.com/embed/9D7BNAgePbM\" frameborder=\"0\" allowfullscreen></iframe>'),(5629,3359,'_nectar_audio_mp3',''),(5630,3359,'_nectar_audio_ogg',''),(5631,3359,'_nectar_header_bg',''),(5632,3359,'_nectar_header_parallax','off'),(5633,3359,'_nectar_header_bg_height',''),(5634,3359,'_nectar_header_bg_color',''),(5635,3359,'_nectar_header_font_color',''),(5636,3359,'_disable_transparent_header','off'),(5637,3359,'_nectar_love','0'),(5638,3359,'_thumbnail_id','3273'),(5643,137,'_edit_lock','1436774970:1'),(5644,559,'_edit_lock','1436774983:1'),(5651,3366,'_edit_last','1'),(5652,3366,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2015/07/05810200.jpg'),(5653,3366,'_nectar_slider_caption','Dastar Mukabla'),(5654,3366,'_nectar_slider_button',''),(5655,3366,'_nectar_slider_button_url',''),(5656,3366,'_nectar_slide_alignment','centered'),(5657,3366,'_nectar_video_m4v',''),(5658,3366,'_nectar_video_ogv',''),(5659,3366,'_nectar_video_poster',''),(5660,3366,'_nectar_video_embed',''),(5661,3366,'_edit_lock','1436830572:1'),(5662,3367,'_edit_last','1'),(5663,3367,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2015/07/IMG_9637a1.jpg'),(5664,3367,'_nectar_slider_caption','PYC Management Team in KGM Tournament '),(5665,3367,'_nectar_slider_button',''),(5666,3367,'_nectar_slider_button_url',''),(5667,3367,'_nectar_slide_alignment','left'),(5668,3367,'_nectar_video_m4v',''),(5669,3367,'_nectar_video_ogv',''),(5670,3367,'_nectar_video_poster',''),(5671,3367,'_nectar_video_embed',''),(5672,3367,'_edit_lock','1436830896:1'),(5673,3368,'_edit_last','1'),(5674,3368,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2015/07/mann035.jpg'),(5675,3368,'_nectar_slider_caption',''),(5676,3368,'_nectar_slider_button',''),(5677,3368,'_nectar_slider_button_url',''),(5678,3368,'_nectar_slide_alignment','left'),(5679,3368,'_nectar_video_m4v',''),(5680,3368,'_nectar_video_ogv',''),(5681,3368,'_nectar_video_poster',''),(5682,3368,'_nectar_video_embed',''),(5683,3368,'_edit_lock','1436830999:1'),(5684,3372,'_wp_attached_file','2015/07/PYC_JASSI_CHACHA.jpg'),(5685,3372,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:599;s:6:\"height\";i:240;s:4:\"file\";s:28:\"2015/07/PYC_JASSI_CHACHA.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"PYC_JASSI_CHACHA-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"PYC_JASSI_CHACHA-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:26:\"PYC_JASSI_CHACHA-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:28:\"PYC_JASSI_CHACHA-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:28:\"PYC_JASSI_CHACHA-500x240.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:28:\"PYC_JASSI_CHACHA-500x240.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5686,3374,'_wp_attached_file','2015/07/PYC_Team.jpg'),(5687,3374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:618;s:4:\"file\";s:20:\"2015/07/PYC_Team.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PYC_Team-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:\"PYC_Team-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PYC_Team-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PYC_Team-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PYC_Team-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PYC_Team-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"PYC_Team-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PYC_Team-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PYC_Team-500x618.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:21:\"PYC_Team-1000x618.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5688,3375,'_edit_last','1'),(5689,3375,'_nectar_slider_bg_type','image_bg'),(5690,3375,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Team.jpg'),(5691,3375,'_nectar_media_upload_webm',''),(5692,3375,'_nectar_media_upload_mp4',''),(5693,3375,'_nectar_media_upload_ogv',''),(5694,3375,'_nectar_slider_preview_image',''),(5695,3375,'_nectar_slider_video_texture','on'),(5696,3375,'_nectar_slider_slide_bg_alignment','center'),(5697,3375,'_nectar_slider_slide_font_color','light'),(5698,3375,'_nectar_slider_heading','PYC  Members'),(5699,3375,'_nectar_slider_caption','Mahek Punjab Di 2002'),(5700,3375,'_nectar_slider_caption_background','off'),(5701,3375,'_nectar_slider_down_arrow','off'),(5702,3375,'_nectar_slider_link_type','full_slide_link'),(5703,3375,'_nectar_slider_button',''),(5704,3375,'_nectar_slider_button_url',''),(5705,3375,'_nectar_slider_button_style','solid_color'),(5706,3375,'_nectar_slider_button_color','primary-color'),(5707,3375,'_nectar_slider_button_2',''),(5708,3375,'_nectar_slider_button_url_2',''),(5709,3375,'_nectar_slider_button_style_2','solid_color'),(5710,3375,'_nectar_slider_button_color_2','primary-color'),(5711,3375,'_nectar_slider_entire_link',''),(5712,3375,'_nectar_slider_video_popup',''),(5713,3375,'_nectar_slide_xpos_alignment','centered'),(5714,3375,'_nectar_slide_ypos_alignment','middle'),(5715,3375,'_nectar_slider_slide_custom_class',''),(5716,3375,'_edit_lock','1436859838:1'),(5746,3378,'_wp_attached_file','2015/07/PYC_Bhagwant_Mann.jpg'),(5747,3378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3500;s:6:\"height\";i:1400;s:4:\"file\";s:29:\"2015/07/PYC_Bhagwant_Mann.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"PYC_Bhagwant_Mann-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"PYC_Bhagwant_Mann-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"PYC_Bhagwant_Mann-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:27:\"PYC_Bhagwant_Mann-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:29:\"PYC_Bhagwant_Mann-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:29:\"PYC_Bhagwant_Mann-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:30:\"PYC_Bhagwant_Mann-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:29:\"PYC_Bhagwant_Mann-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:30:\"PYC_Bhagwant_Mann-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:31:\"PYC_Bhagwant_Mann-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1178045351;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5748,3377,'_edit_last','1'),(5749,3377,'_nectar_slider_bg_type','image_bg'),(5750,3377,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Bhagwant_Mann.jpg'),(5751,3377,'_nectar_media_upload_webm',''),(5752,3377,'_nectar_media_upload_mp4',''),(5753,3377,'_nectar_media_upload_ogv',''),(5754,3377,'_nectar_slider_preview_image',''),(5755,3377,'_nectar_slider_video_texture','on'),(5756,3377,'_nectar_slider_slide_bg_alignment','center'),(5757,3377,'_nectar_slider_slide_font_color','light'),(5758,3377,'_nectar_slider_heading','Bhagwant Mann'),(5759,3377,'_nectar_slider_caption','Member Parliament & Punjabi Comedy King in Mahek Punjab Di 2007'),(5760,3377,'_nectar_slider_caption_background','on'),(5761,3377,'_nectar_slider_down_arrow','off'),(5762,3377,'_nectar_slider_link_type','full_slide_link'),(5763,3377,'_nectar_slider_button',''),(5764,3377,'_nectar_slider_button_url',''),(5765,3377,'_nectar_slider_button_style','solid_color'),(5766,3377,'_nectar_slider_button_color','primary-color'),(5767,3377,'_nectar_slider_button_2',''),(5768,3377,'_nectar_slider_button_url_2',''),(5769,3377,'_nectar_slider_button_style_2','solid_color'),(5770,3377,'_nectar_slider_button_color_2','primary-color'),(5771,3377,'_nectar_slider_entire_link',''),(5772,3377,'_nectar_slider_video_popup',''),(5773,3377,'_nectar_slide_xpos_alignment','centered'),(5774,3377,'_nectar_slide_ypos_alignment','middle'),(5775,3377,'_nectar_slider_slide_custom_class',''),(5776,3377,'_edit_lock','1474815107:1'),(5781,3380,'_wp_attached_file','2015/07/PYC_Bhangra.jpg'),(5782,3380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1237;s:6:\"height\";i:495;s:4:\"file\";s:23:\"2015/07/PYC_Bhangra.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"PYC_Bhangra-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:\"PYC_Bhangra-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"PYC_Bhangra-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"PYC_Bhangra-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"PYC_Bhangra-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"PYC_Bhangra-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"PYC_Bhangra-1000x495.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"PYC_Bhangra-500x495.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"PYC_Bhangra-500x495.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"PYC_Bhangra-1000x495.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1132505248;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5783,3379,'_edit_last','1'),(5784,3379,'_nectar_slider_bg_type','image_bg'),(5785,3379,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Bhangra.jpg'),(5786,3379,'_nectar_media_upload_webm',''),(5787,3379,'_nectar_media_upload_mp4',''),(5788,3379,'_nectar_media_upload_ogv',''),(5789,3379,'_nectar_slider_preview_image',''),(5790,3379,'_nectar_slider_video_texture','on'),(5791,3379,'_nectar_slider_slide_bg_alignment','center'),(5792,3379,'_nectar_slider_slide_font_color','light'),(5793,3379,'_nectar_slider_heading','PYC Bhangra Team'),(5794,3379,'_nectar_slider_caption','Performing in \" Asia Ethnic Cultural Performances \"'),(5795,3379,'_nectar_slider_caption_background','on'),(5796,3379,'_nectar_slider_down_arrow','off'),(5797,3379,'_nectar_slider_link_type','full_slide_link'),(5798,3379,'_nectar_slider_button',''),(5799,3379,'_nectar_slider_button_url',''),(5800,3379,'_nectar_slider_button_style','solid_color'),(5801,3379,'_nectar_slider_button_color','primary-color'),(5802,3379,'_nectar_slider_button_2',''),(5803,3379,'_nectar_slider_button_url_2',''),(5804,3379,'_nectar_slider_button_style_2','solid_color'),(5805,3379,'_nectar_slider_button_color_2','primary-color'),(5806,3379,'_nectar_slider_entire_link',''),(5807,3379,'_nectar_slider_video_popup',''),(5808,3379,'_nectar_slide_xpos_alignment','centered'),(5809,3379,'_nectar_slide_ypos_alignment','middle'),(5810,3379,'_nectar_slider_slide_custom_class',''),(5811,3379,'_edit_lock','1474809455:1'),(5814,3382,'_wp_attached_file','2015/07/PYC_Gurdas_Maan.jpg'),(5815,3382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1544;s:6:\"height\";i:618;s:4:\"file\";s:27:\"2015/07/PYC_Gurdas_Maan.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"PYC_Gurdas_Maan-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"PYC_Gurdas_Maan-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"PYC_Gurdas_Maan-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"PYC_Gurdas_Maan-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"PYC_Gurdas_Maan-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"PYC_Gurdas_Maan-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:28:\"PYC_Gurdas_Maan-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:27:\"PYC_Gurdas_Maan-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:27:\"PYC_Gurdas_Maan-500x618.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:28:\"PYC_Gurdas_Maan-1000x618.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5816,3381,'_edit_last','1'),(5817,3381,'_nectar_slider_bg_type','image_bg'),(5818,3381,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Gurdas_Maan.jpg'),(5819,3381,'_nectar_media_upload_webm',''),(5820,3381,'_nectar_media_upload_mp4',''),(5821,3381,'_nectar_media_upload_ogv',''),(5822,3381,'_nectar_slider_preview_image',''),(5823,3381,'_nectar_slider_video_texture','on'),(5824,3381,'_nectar_slider_slide_bg_alignment','center'),(5825,3381,'_nectar_slider_slide_font_color','light'),(5826,3381,'_nectar_slider_heading','Gurdas Maan'),(5827,3381,'_nectar_slider_caption','Mahek Punjab Di 2002'),(5828,3381,'_nectar_slider_caption_background','on'),(5829,3381,'_nectar_slider_down_arrow','off'),(5830,3381,'_nectar_slider_link_type','full_slide_link'),(5831,3381,'_nectar_slider_button',''),(5832,3381,'_nectar_slider_button_url',''),(5833,3381,'_nectar_slider_button_style','solid_color'),(5834,3381,'_nectar_slider_button_color','primary-color'),(5835,3381,'_nectar_slider_button_2',''),(5836,3381,'_nectar_slider_button_url_2',''),(5837,3381,'_nectar_slider_button_style_2','solid_color'),(5838,3381,'_nectar_slider_button_color_2','primary-color'),(5839,3381,'_nectar_slider_entire_link',''),(5840,3381,'_nectar_slider_video_popup',''),(5841,3381,'_nectar_slide_xpos_alignment','centered'),(5842,3381,'_nectar_slide_ypos_alignment','middle'),(5843,3381,'_nectar_slider_slide_custom_class',''),(5844,3381,'_edit_lock','1436860144:1'),(5845,3383,'_wp_attached_file','2015/07/PYC-TEAM.jpg'),(5846,3383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1021;s:6:\"height\";i:407;s:4:\"file\";s:20:\"2015/07/PYC-TEAM.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PYC-TEAM-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:\"PYC-TEAM-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"PYC-TEAM-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"PYC-TEAM-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"PYC-TEAM-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"PYC-TEAM-1000x407.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:407;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"PYC-TEAM-500x407.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:407;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"PYC-TEAM-500x407.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:407;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:21:\"PYC-TEAM-1000x407.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:407;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5847,3384,'_edit_last','1'),(5848,3384,'_nectar_slider_bg_type','image_bg'),(5849,3384,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC-TEAM.jpg'),(5850,3384,'_nectar_media_upload_webm',''),(5851,3384,'_nectar_media_upload_mp4',''),(5852,3384,'_nectar_media_upload_ogv',''),(5853,3384,'_nectar_slider_preview_image',''),(5854,3384,'_nectar_slider_video_texture','on'),(5855,3384,'_nectar_slider_slide_bg_alignment','center'),(5856,3384,'_nectar_slider_slide_font_color','light'),(5857,3384,'_nectar_slider_heading','PYC Management Team'),(5858,3384,'_nectar_slider_caption','in Komagata Maru Memorial Youth Hockey Tournament'),(5859,3384,'_nectar_slider_caption_background','on'),(5860,3384,'_nectar_slider_down_arrow','off'),(5861,3384,'_nectar_slider_link_type','full_slide_link'),(5862,3384,'_nectar_slider_button',''),(5863,3384,'_nectar_slider_button_url',''),(5864,3384,'_nectar_slider_button_style','solid_color'),(5865,3384,'_nectar_slider_button_color','primary-color'),(5866,3384,'_nectar_slider_button_2',''),(5867,3384,'_nectar_slider_button_url_2',''),(5868,3384,'_nectar_slider_button_style_2','solid_color'),(5869,3384,'_nectar_slider_button_color_2','primary-color'),(5870,3384,'_nectar_slider_entire_link',''),(5871,3384,'_nectar_slider_video_popup',''),(5872,3384,'_nectar_slide_xpos_alignment','centered'),(5873,3384,'_nectar_slide_ypos_alignment','middle'),(5874,3384,'_nectar_slider_slide_custom_class',''),(5875,3384,'_edit_lock','1436860565:1'),(5880,3385,'_wp_attached_file','2015/07/PYC-logo-member.png'),(5881,3385,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:340;s:6:\"height\";i:425;s:4:\"file\";s:27:\"2015/07/PYC-logo-member.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"PYC-logo-member-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:27:\"PYC-logo-member-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"PYC-logo-member-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"PYC-logo-member-340x403.png\";s:5:\"width\";i:340;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"PYC-logo-member-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5882,3388,'_wp_attached_file','2015/07/Chetna-March-2006.jpg'),(5883,3388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1580;s:6:\"height\";i:1092;s:4:\"file\";s:29:\"2015/07/Chetna-March-2006.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Chetna-March-2006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Chetna-March-2006-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Chetna-March-2006-1024x708.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:708;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:27:\"Chetna-March-2006-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:29:\"Chetna-March-2006-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:29:\"Chetna-March-2006-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:30:\"Chetna-March-2006-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:29:\"Chetna-March-2006-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:30:\"Chetna-March-2006-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:31:\"Chetna-March-2006-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5884,3389,'_wp_attached_file','2015/07/Culture-In-Motion.jpg'),(5885,3389,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1275;s:6:\"height\";i:1754;s:4:\"file\";s:29:\"2015/07/Culture-In-Motion.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Culture-In-Motion-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Culture-In-Motion-218x300.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Culture-In-Motion-744x1024.jpg\";s:5:\"width\";i:744;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:27:\"Culture-In-Motion-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:29:\"Culture-In-Motion-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:29:\"Culture-In-Motion-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:30:\"Culture-In-Motion-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:29:\"Culture-In-Motion-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:30:\"Culture-In-Motion-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:31:\"Culture-In-Motion-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5886,3390,'_wp_attached_file','2015/07/Mahek-Punjab-Di-2002.jpg'),(5887,3390,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2128;s:6:\"height\";i:3059;s:4:\"file\";s:32:\"2015/07/Mahek-Punjab-Di-2002.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2002-209x300.jpg\";s:5:\"width\";i:209;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-2002-712x1024.jpg\";s:5:\"width\";i:712;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:30:\"Mahek-Punjab-Di-2002-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2002-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2002-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-2002-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2002-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-2002-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:34:\"Mahek-Punjab-Di-2002-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5888,3391,'_wp_attached_file','2015/07/Mahek-Punjab-Di-2001.jpg'),(5889,3391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2141;s:4:\"file\";s:32:\"2015/07/Mahek-Punjab-Di-2001.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2001-210x300.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-2001-717x1024.jpg\";s:5:\"width\";i:717;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:30:\"Mahek-Punjab-Di-2001-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2001-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-2001-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2001-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-2001-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:34:\"Mahek-Punjab-Di-2001-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5890,3392,'_wp_attached_file','2015/07/Mahek-Punjab-Di-20021.jpg'),(5891,3392,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1725;s:4:\"file\";s:33:\"2015/07/Mahek-Punjab-Di-20021.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-20021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-20021-209x300.jpg\";s:5:\"width\";i:209;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Mahek-Punjab-Di-20021-712x1024.jpg\";s:5:\"width\";i:712;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:31:\"Mahek-Punjab-Di-20021-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-20021-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-20021-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:34:\"Mahek-Punjab-Di-20021-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-20021-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:34:\"Mahek-Punjab-Di-20021-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:35:\"Mahek-Punjab-Di-20021-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5892,3393,'_wp_attached_file','2015/07/Mahek-Punjab-Di-2003.jpg'),(5893,3393,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1580;s:6:\"height\";i:2271;s:4:\"file\";s:32:\"2015/07/Mahek-Punjab-Di-2003.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2003-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2003-209x300.jpg\";s:5:\"width\";i:209;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-2003-712x1024.jpg\";s:5:\"width\";i:712;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:30:\"Mahek-Punjab-Di-2003-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2003-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2003-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-2003-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2003-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-2003-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:34:\"Mahek-Punjab-Di-2003-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5894,3394,'_wp_attached_file','2015/07/Mahek-Punjab-Di-2007.jpg'),(5895,3394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1035;s:4:\"file\";s:32:\"2015/07/Mahek-Punjab-Di-2007.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2007-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2007-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-2007-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:30:\"Mahek-Punjab-Di-2007-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2007-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2007-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2007-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:32:\"Mahek-Punjab-Di-2007-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-2007-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjab-Di-2007-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5896,3395,'_wp_attached_file','2015/07/Mahek-Punjabi-Di-2001.jpg'),(5897,3395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:714;s:4:\"file\";s:33:\"2015/07/Mahek-Punjabi-Di-2001.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjabi-Di-2001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjabi-Di-2001-210x300.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:31:\"Mahek-Punjabi-Di-2001-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjabi-Di-2001-500x403.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjabi-Di-2001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjabi-Di-2001-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjabi-Di-2001-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:33:\"Mahek-Punjabi-Di-2001-500x714.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:714;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5898,3396,'_wp_attached_file','2015/07/Mehak-Punjab-Di-2005.jpg'),(5899,3396,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:666;s:4:\"file\";s:32:\"2015/07/Mehak-Punjab-Di-2005.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Mehak-Punjab-Di-2005-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Mehak-Punjab-Di-2005-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:30:\"Mehak-Punjab-Di-2005-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:32:\"Mehak-Punjab-Di-2005-500x403.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:32:\"Mehak-Punjab-Di-2005-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:32:\"Mehak-Punjab-Di-2005-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:32:\"Mehak-Punjab-Di-2005-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:32:\"Mehak-Punjab-Di-2005-500x666.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:666;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5900,3397,'_wp_attached_file','2015/07/Video-Tape-Cover-Mehak-Punjab-Di-2001.jpg'),(5901,3397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1879;s:6:\"height\";i:1658;s:4:\"file\";s:49:\"2015/07/Video-Tape-Cover-Mehak-Punjab-Di-2001.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Video-Tape-Cover-Mehak-Punjab-Di-2001-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:49:\"Video-Tape-Cover-Mehak-Punjab-Di-2001-300x265.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Video-Tape-Cover-Mehak-Punjab-Di-2001-1024x904.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:904;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:47:\"Video-Tape-Cover-Mehak-Punjab-Di-2001-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:49:\"Video-Tape-Cover-Mehak-Punjab-Di-2001-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:49:\"Video-Tape-Cover-Mehak-Punjab-Di-2001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:50:\"Video-Tape-Cover-Mehak-Punjab-Di-2001-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:49:\"Video-Tape-Cover-Mehak-Punjab-Di-2001-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:50:\"Video-Tape-Cover-Mehak-Punjab-Di-2001-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:51:\"Video-Tape-Cover-Mehak-Punjab-Di-2001-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5902,3398,'_wp_attached_file','2015/07/kavi-darbar-cd-copy1.jpg'),(5903,3398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1580;s:6:\"height\";i:1092;s:4:\"file\";s:32:\"2015/07/kavi-darbar-cd-copy1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"kavi-darbar-cd-copy1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"kavi-darbar-cd-copy1-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"kavi-darbar-cd-copy1-1024x708.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:708;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:30:\"kavi-darbar-cd-copy1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:32:\"kavi-darbar-cd-copy1-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:32:\"kavi-darbar-cd-copy1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:33:\"kavi-darbar-cd-copy1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:32:\"kavi-darbar-cd-copy1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:33:\"kavi-darbar-cd-copy1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:34:\"kavi-darbar-cd-copy1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5904,3401,'_wp_attached_file','2015/07/bhangra1.mpg'),(5905,3401,'_wp_attachment_metadata','a:2:{s:8:\"filesize\";i:13228455;s:9:\"mime_type\";s:10:\"video/mpeg\";}'),(5906,3402,'_wp_attached_file','2015/07/bhangra2.mpg'),(5907,3402,'_wp_attachment_metadata','a:2:{s:8:\"filesize\";i:10350364;s:9:\"mime_type\";s:10:\"video/mpeg\";}'),(5908,3403,'_wp_attached_file','2015/07/bhangra1.mp4'),(5909,3403,'_wp_attachment_metadata','a:9:{s:8:\"filesize\";i:2037708;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:12;s:16:\"length_formatted\";s:4:\"0:12\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:32000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}}'),(5910,3404,'_wp_attached_file','2015/07/bhangra2.mp4'),(5911,3404,'_wp_attachment_metadata','a:9:{s:8:\"filesize\";i:1538907;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:9;s:16:\"length_formatted\";s:4:\"0:09\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:32000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}}'),(5912,3405,'_wp_attached_file','2015/07/colour_in_harmony.mp4'),(5913,3405,'_wp_attachment_metadata','a:9:{s:8:\"filesize\";i:6202535;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:38;s:16:\"length_formatted\";s:4:\"0:38\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:32000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}}'),(5914,3406,'_edit_last','1'),(5915,3406,'_edit_lock','1436866625:1'),(5916,3406,'_thumbnail_id','3126'),(5917,3406,'_wpb_vc_js_status','false'),(5918,3406,'_wpb_vc_js_interface_version','2'),(5919,3406,'_nectar_gallery_slider','off'),(5920,3406,'_nectar_quote',''),(5921,3406,'_nectar_link',''),(5922,3406,'_nectar_video_m4v',''),(5923,3406,'_nectar_video_ogv',''),(5924,3406,'_nectar_video_poster',''),(5925,3406,'_nectar_video_embed',''),(5926,3406,'_nectar_audio_mp3',''),(5927,3406,'_nectar_audio_ogg',''),(5928,3406,'_nectar_header_bg',''),(5929,3406,'_nectar_header_parallax','off'),(5930,3406,'_nectar_header_bg_height',''),(5931,3406,'_nectar_header_bg_color',''),(5932,3406,'_nectar_header_font_color',''),(5933,3406,'_disable_transparent_header','off'),(5934,3406,'_nectar_love','0'),(5941,3415,'_wp_attached_file','2015/07/MEMBERSHIP_Form.pdf'),(5942,2709,'_oembed_6c8fe5b23916fff829d1693086e009bd','{{unknown}}'),(5944,3429,'_wp_attached_file','2015/07/favicon-6.ico'),(5945,3431,'_wp_attached_file','2015/07/300-yrs-martyrdom.jpg'),(5946,3431,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2015/07/300-yrs-martyrdom.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"300-yrs-martyrdom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"300-yrs-martyrdom-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"300-yrs-martyrdom-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:27:\"300-yrs-martyrdom-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:29:\"300-yrs-martyrdom-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:29:\"300-yrs-martyrdom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:30:\"300-yrs-martyrdom-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:29:\"300-yrs-martyrdom-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:29:\"300-yrs-martyrdom-500x800.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:30:\"300-yrs-martyrdom-1000x800.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5947,3430,'_edit_last','1'),(5948,3430,'_nectar_slider_bg_type','image_bg'),(5949,3430,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2015/07/Banner_Logo.jpg'),(5950,3430,'_nectar_media_upload_webm',''),(5951,3430,'_nectar_media_upload_mp4',''),(5952,3430,'_nectar_media_upload_ogv',''),(5953,3430,'_nectar_slider_preview_image',''),(5954,3430,'_nectar_slider_video_texture','off'),(5955,3430,'_nectar_slider_slide_bg_alignment','center'),(5956,3430,'_nectar_slider_slide_font_color','light'),(5957,3430,'_nectar_slider_heading',''),(5958,3430,'_nectar_slider_caption',''),(5959,3430,'_nectar_slider_caption_background','off'),(5960,3430,'_nectar_slider_down_arrow','off'),(5961,3430,'_nectar_slider_link_type','full_slide_link'),(5962,3430,'_nectar_slider_button',''),(5963,3430,'_nectar_slider_button_url',''),(5964,3430,'_nectar_slider_button_style','solid_color'),(5965,3430,'_nectar_slider_button_color','primary-color'),(5966,3430,'_nectar_slider_button_2',''),(5967,3430,'_nectar_slider_button_url_2',''),(5968,3430,'_nectar_slider_button_style_2','solid_color'),(5969,3430,'_nectar_slider_button_color_2','primary-color'),(5970,3430,'_nectar_slider_entire_link',''),(5971,3430,'_nectar_slider_video_popup',''),(5972,3430,'_nectar_slide_xpos_alignment','centered'),(5973,3430,'_nectar_slide_ypos_alignment','middle'),(5974,3430,'_nectar_slider_slide_custom_class',''),(5975,3430,'_edit_lock','1442818459:1'),(5976,3432,'_wp_attached_file','2015/07/Banner_Logo.jpg'),(5977,3432,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2015/07/Banner_Logo.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Banner_Logo-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:\"Banner_Logo-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Banner_Logo-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"Banner_Logo-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"Banner_Logo-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"Banner_Logo-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"Banner_Logo-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"Banner_Logo-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"Banner_Logo-500x800.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"Banner_Logo-1000x800.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5978,3434,'_wp_attached_file','2014/03/IMG_31171.jpg'),(5979,3434,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:21:\"2014/03/IMG_31171.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_31171-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_31171-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_31171-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"IMG_31171-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_31171-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"IMG_31171-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"IMG_31171-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"IMG_31171-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"IMG_31171-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"IMG_31171-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5980,3435,'_wp_attached_file','2014/03/IMG_31231.jpg'),(5981,3435,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:21:\"2014/03/IMG_31231.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_31231-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_31231-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_31231-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"IMG_31231-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_31231-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"IMG_31231-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"IMG_31231-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"IMG_31231-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"IMG_31231-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"IMG_31231-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5982,3436,'_wp_attached_file','2014/03/IMG_3124.jpg'),(5983,3436,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:20:\"2014/03/IMG_3124.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3124-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3124-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3124-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3124-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3124-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3124-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"IMG_3124-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3124-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"IMG_3124-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"IMG_3124-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5984,3437,'_wp_attached_file','2014/03/IMG_31251.jpg'),(5985,3437,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:21:\"2014/03/IMG_31251.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_31251-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_31251-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_31251-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"IMG_31251-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_31251-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"IMG_31251-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"IMG_31251-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"IMG_31251-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"IMG_31251-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"IMG_31251-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5986,3438,'_wp_attached_file','2014/03/IMG_31281.jpg'),(5987,3438,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:21:\"2014/03/IMG_31281.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_31281-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_31281-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_31281-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"IMG_31281-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_31281-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"IMG_31281-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"IMG_31281-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"IMG_31281-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"IMG_31281-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"IMG_31281-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5988,3439,'_wp_attached_file','2014/03/IMG_3130.jpg'),(5989,3439,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:20:\"2014/03/IMG_3130.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3130-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3130-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3130-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3130-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3130-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3130-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"IMG_3130-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3130-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"IMG_3130-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"IMG_3130-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5990,3440,'_wp_attached_file','2014/03/IMG_31331.jpg'),(5991,3440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:21:\"2014/03/IMG_31331.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_31331-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_31331-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_31331-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"IMG_31331-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_31331-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"IMG_31331-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"IMG_31331-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"IMG_31331-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"IMG_31331-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"IMG_31331-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5992,3441,'_wp_attached_file','2014/03/IMG_3134.jpg'),(5993,3441,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:20:\"2014/03/IMG_3134.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3134-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3134-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3134-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3134-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3134-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3134-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"IMG_3134-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3134-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"IMG_3134-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"IMG_3134-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5994,3442,'_wp_attached_file','2014/03/IMG_31371.jpg'),(5995,3442,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:21:\"2014/03/IMG_31371.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_31371-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_31371-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_31371-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"IMG_31371-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_31371-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"IMG_31371-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"IMG_31371-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"IMG_31371-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"IMG_31371-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"IMG_31371-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5996,3443,'_wp_attached_file','2014/03/IMG_3142.jpg'),(5997,3443,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:20:\"2014/03/IMG_3142.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3142-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3142-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3142-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3142-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3142-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3142-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"IMG_3142-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3142-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"IMG_3142-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"IMG_3142-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5998,3444,'_wp_attached_file','2014/03/IMG_31441.jpg'),(5999,3444,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:21:\"2014/03/IMG_31441.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_31441-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_31441-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_31441-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"IMG_31441-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_31441-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"IMG_31441-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"IMG_31441-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"IMG_31441-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"IMG_31441-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"IMG_31441-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6000,3445,'_wp_attached_file','2014/03/IMG_31451.jpg'),(6001,3445,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:21:\"2014/03/IMG_31451.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_31451-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_31451-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_31451-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"IMG_31451-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_31451-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"IMG_31451-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"IMG_31451-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"IMG_31451-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"IMG_31451-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"IMG_31451-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6002,3446,'_wp_attached_file','2014/03/IMG_3146.jpg'),(6003,3446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:20:\"2014/03/IMG_3146.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3146-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3146-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3146-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3146-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3146-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3146-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"IMG_3146-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3146-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"IMG_3146-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"IMG_3146-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6004,3447,'_wp_attached_file','2014/03/IMG_31471.jpg'),(6005,3447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:21:\"2014/03/IMG_31471.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_31471-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_31471-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_31471-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"IMG_31471-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_31471-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"IMG_31471-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"IMG_31471-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"IMG_31471-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"IMG_31471-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"IMG_31471-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6006,3448,'_wp_attached_file','2014/03/IMG_3148.jpg'),(6007,3448,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:20:\"2014/03/IMG_3148.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3148-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3148-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3148-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3148-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3148-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3148-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"IMG_3148-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3148-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"IMG_3148-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"IMG_3148-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6008,3449,'_wp_attached_file','2014/03/IMG_3151.jpg'),(6009,3449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:20:\"2014/03/IMG_3151.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3151-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3151-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3151-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3151-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3151-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3151-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"IMG_3151-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3151-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"IMG_3151-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"IMG_3151-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6010,3450,'_wp_attached_file','2014/03/IMG_3153.jpg'),(6011,3450,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:20:\"2014/03/IMG_3153.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3153-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3153-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3153-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3153-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3153-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3153-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"IMG_3153-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3153-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"IMG_3153-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"IMG_3153-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6012,3451,'_wp_attached_file','2014/03/IMG_31571.jpg'),(6013,3451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:21:\"2014/03/IMG_31571.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_31571-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_31571-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_31571-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"IMG_31571-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_31571-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"IMG_31571-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"IMG_31571-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"IMG_31571-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"IMG_31571-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"IMG_31571-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6014,3452,'_wp_attached_file','2014/03/IMG_31611.jpg'),(6015,3452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:21:\"2014/03/IMG_31611.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_31611-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_31611-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_31611-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"IMG_31611-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_31611-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"IMG_31611-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"IMG_31611-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"IMG_31611-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"IMG_31611-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"IMG_31611-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6016,3453,'_wp_attached_file','2014/03/IMG_31621.jpg'),(6017,3453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:21:\"2014/03/IMG_31621.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_31621-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_31621-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_31621-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"IMG_31621-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_31621-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"IMG_31621-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"IMG_31621-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"IMG_31621-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"IMG_31621-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"IMG_31621-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6018,3454,'_wp_attached_file','2014/03/IMG_3164.jpg'),(6019,3454,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:20:\"2014/03/IMG_3164.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3164-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3164-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3164-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3164-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3164-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3164-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"IMG_3164-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3164-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"IMG_3164-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"IMG_3164-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6020,3455,'_wp_attached_file','2014/03/IMG_31661.jpg'),(6021,3455,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:21:\"2014/03/IMG_31661.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_31661-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_31661-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_31661-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"IMG_31661-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_31661-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"IMG_31661-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"IMG_31661-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"IMG_31661-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"IMG_31661-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"IMG_31661-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6022,3456,'_wp_attached_file','2014/03/IMG_3169.jpg'),(6023,3456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:20:\"2014/03/IMG_3169.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3169-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3169-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3169-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3169-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3169-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3169-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"IMG_3169-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3169-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"IMG_3169-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"IMG_3169-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6024,3457,'_wp_attached_file','2014/03/IMG_3172.jpg'),(6025,3457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:20:\"2014/03/IMG_3172.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3172-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3172-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3172-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3172-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3172-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3172-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"IMG_3172-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3172-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"IMG_3172-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"IMG_3172-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6026,3458,'_wp_attached_file','2014/03/IMG_3174.jpg'),(6027,1851,'_thumbnail_id','2784'),(6028,3458,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:20:\"2014/03/IMG_3174.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3174-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_3174-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_3174-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"IMG_3174-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"IMG_3174-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"IMG_3174-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"IMG_3174-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"IMG_3174-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"IMG_3174-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"IMG_3174-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6029,3459,'_wp_attached_file','2014/03/IMG_31831.jpg'),(6030,3459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2357;s:6:\"height\";i:1661;s:4:\"file\";s:21:\"2014/03/IMG_31831.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_31831-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_31831-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_31831-1024x722.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"IMG_31831-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_31831-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"IMG_31831-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"IMG_31831-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"IMG_31831-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"IMG_31831-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"IMG_31831-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6031,3460,'_wp_attached_file','2014/03/mann0041.jpg'),(6032,3460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:20:\"2014/03/mann0041.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"mann0041-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:\"mann0041-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"mann0041-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"mann0041-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"mann0041-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"mann0041-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"mann0041-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"mann0041-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"mann0041-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"mann0041-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6033,3461,'_wp_attached_file','2014/03/mann005.jpg'),(6034,3461,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:19:\"2014/03/mann005.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann005-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:\"mann005-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"mann005-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann005-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann005-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann005-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"mann005-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann005-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"mann005-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:21:\"mann005-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6035,3462,'_wp_attached_file','2014/03/mann0061.jpg'),(6036,3462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:20:\"2014/03/mann0061.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"mann0061-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:\"mann0061-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"mann0061-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"mann0061-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"mann0061-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"mann0061-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"mann0061-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"mann0061-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"mann0061-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"mann0061-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6037,3463,'_wp_attached_file','2014/03/mann0091.jpg'),(6038,3463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:20:\"2014/03/mann0091.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"mann0091-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:\"mann0091-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"mann0091-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"mann0091-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"mann0091-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"mann0091-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"mann0091-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"mann0091-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"mann0091-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"mann0091-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6039,3464,'_wp_attached_file','2014/03/mann0111.jpg'),(6040,3464,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:20:\"2014/03/mann0111.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"mann0111-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:\"mann0111-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"mann0111-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"mann0111-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"mann0111-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"mann0111-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"mann0111-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"mann0111-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"mann0111-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"mann0111-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6041,3465,'_wp_attached_file','2014/03/mann0131.jpg'),(6042,3465,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:20:\"2014/03/mann0131.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"mann0131-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:\"mann0131-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"mann0131-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"mann0131-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"mann0131-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"mann0131-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"mann0131-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"mann0131-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"mann0131-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"mann0131-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6043,3466,'_wp_attached_file','2014/03/mann017.jpg'),(6044,3466,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1944;s:4:\"file\";s:19:\"2014/03/mann017.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mann017-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:\"mann017-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"mann017-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:17:\"mann017-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:19:\"mann017-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:19:\"mann017-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:20:\"mann017-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:19:\"mann017-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:20:\"mann017-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:21:\"mann017-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6047,3468,'_wp_attached_file','2015/07/Jassis-show-137.jpg'),(6048,3468,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:27:\"2015/07/Jassis-show-137.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Jassis-show-137-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Jassis-show-137-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"Jassis-show-137-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"Jassis-show-137-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"Jassis-show-137-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:27:\"Jassis-show-137-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:27:\"Jassis-show-137-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6049,3469,'_wp_attached_file','2015/07/Jassis-show-138.jpg'),(6050,3469,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:27:\"2015/07/Jassis-show-138.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Jassis-show-138-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Jassis-show-138-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"Jassis-show-138-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"Jassis-show-138-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"Jassis-show-138-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:27:\"Jassis-show-138-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:27:\"Jassis-show-138-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6051,3470,'_wp_attached_file','2015/07/Jassis-show-144.jpg'),(6052,3470,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:27:\"2015/07/Jassis-show-144.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Jassis-show-144-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Jassis-show-144-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"Jassis-show-144-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"Jassis-show-144-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"Jassis-show-144-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:27:\"Jassis-show-144-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:27:\"Jassis-show-144-500x450.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6053,3471,'_edit_last','1'),(6054,3471,'_edit_lock','1437523734:1'),(6055,3471,'_wpb_vc_js_status','true'),(6056,3471,'_wpb_vc_js_interface_version','2'),(6057,3471,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3396\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row]'),(6058,3471,'_nectar_portfolio_item_layout','enabled'),(6059,3471,'_nectar_portfolio_custom_thumbnail',''),(6060,3471,'_nectar_hide_featured','off'),(6061,3471,'_portfolio_item_masonry_sizing','regular'),(6062,3471,'_nectar_external_project_url',''),(6063,3471,'nectar-metabox-portfolio-parent-override','default'),(6064,3471,'_nectar_project_excerpt',''),(6065,3471,'_nectar_project_accent_color',''),(6066,3471,'_nectar_header_bg',''),(6067,3471,'_nectar_header_parallax','off'),(6068,3471,'_nectar_header_bg_height',''),(6069,3471,'_nectar_header_bg_color',''),(6070,3471,'_nectar_header_font_color',''),(6071,3471,'_disable_transparent_header','off'),(6072,3471,'_nectar_video_m4v',''),(6073,3471,'_nectar_video_ogv',''),(6074,3471,'_nectar_video_height',''),(6075,3471,'_nectar_video_poster',''),(6076,3471,'_nectar_video_embed',''),(6077,3473,'_edit_last','1'),(6078,3473,'_edit_lock','1437523753:1'),(6079,3473,'_wpb_vc_js_status','false'),(6080,3473,'_wpb_vc_js_interface_version','2'),(6081,3473,'_nectar_portfolio_extra_content',''),(6082,3473,'_nectar_portfolio_item_layout','disabled'),(6083,3473,'_nectar_portfolio_custom_thumbnail',''),(6084,3473,'_nectar_hide_featured','off'),(6085,3473,'_portfolio_item_masonry_sizing','regular'),(6086,3473,'_nectar_external_project_url',''),(6087,3473,'nectar-metabox-portfolio-parent-override','default'),(6088,3473,'_nectar_project_excerpt',''),(6089,3473,'_nectar_project_accent_color',''),(6090,3473,'_nectar_header_bg',''),(6091,3473,'_nectar_header_parallax','off'),(6092,3473,'_nectar_header_bg_height',''),(6093,3473,'_nectar_header_bg_color',''),(6094,3473,'_nectar_header_font_color',''),(6095,3473,'_disable_transparent_header','off'),(6096,3473,'_nectar_video_m4v',''),(6097,3473,'_nectar_video_ogv',''),(6098,3473,'_nectar_video_height',''),(6099,3473,'_nectar_video_poster',''),(6100,3473,'_nectar_video_embed',''),(6125,3477,'_edit_last','1'),(6126,3477,'_wpb_vc_js_status','false'),(6127,3477,'_wpb_vc_js_interface_version','2'),(6128,3477,'_nectar_portfolio_extra_content',''),(6129,3477,'_nectar_portfolio_item_layout','disabled'),(6130,3477,'_nectar_portfolio_custom_thumbnail',''),(6131,3477,'_nectar_hide_featured','off'),(6132,3477,'_portfolio_item_masonry_sizing','regular'),(6133,3477,'_nectar_external_project_url',''),(6134,3477,'nectar-metabox-portfolio-parent-override','default'),(6135,3477,'_nectar_project_excerpt',''),(6136,3477,'_nectar_project_accent_color',''),(6137,3477,'_nectar_header_bg',''),(6138,3477,'_nectar_header_parallax','off'),(6139,3477,'_nectar_header_bg_height',''),(6140,3477,'_nectar_header_bg_color',''),(6141,3477,'_nectar_header_font_color',''),(6142,3477,'_disable_transparent_header','off'),(6143,3477,'_nectar_video_m4v',''),(6144,3477,'_nectar_video_ogv',''),(6145,3477,'_nectar_video_height',''),(6146,3477,'_nectar_video_poster',''),(6147,3477,'_nectar_video_embed',''),(6148,3477,'_edit_lock','1440582258:1'),(6149,3479,'_edit_last','1'),(6150,3479,'_wpb_vc_js_status','false'),(6151,3479,'_wpb_vc_js_interface_version','2'),(6152,3479,'_nectar_portfolio_extra_content',''),(6153,3479,'_nectar_portfolio_item_layout','disabled'),(6154,3479,'_nectar_portfolio_custom_thumbnail',''),(6155,3479,'_nectar_hide_featured','off'),(6156,3479,'_portfolio_item_masonry_sizing','regular'),(6157,3479,'_nectar_external_project_url',''),(6158,3479,'nectar-metabox-portfolio-parent-override','default'),(6159,3479,'_nectar_project_excerpt',''),(6160,3479,'_nectar_project_accent_color',''),(6161,3479,'_nectar_header_bg',''),(6162,3479,'_nectar_header_parallax','off'),(6163,3479,'_nectar_header_bg_height',''),(6164,3479,'_nectar_header_bg_color',''),(6165,3479,'_nectar_header_font_color',''),(6166,3479,'_disable_transparent_header','off'),(6167,3479,'_nectar_video_m4v',''),(6168,3479,'_nectar_video_ogv',''),(6169,3479,'_nectar_video_height',''),(6170,3479,'_nectar_video_poster',''),(6171,3479,'_nectar_video_embed',''),(6172,3479,'_edit_lock','1437523519:1'),(6173,3479,'_thumbnail_id','3391'),(6176,3477,'_thumbnail_id','3390'),(6178,3481,'_wp_attached_file','2015/07/pyc_mpd_03.jpg'),(6179,3481,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:314;s:4:\"file\";s:22:\"2015/07/pyc_mpd_03.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"pyc_mpd_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:22:\"pyc_mpd_03-300x157.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"pyc_mpd_03-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"pyc_mpd_03-600x314.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:314;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"pyc_mpd_03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"pyc_mpd_03-500x314.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:314;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"pyc_mpd_03-500x314.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:314;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6180,3473,'_thumbnail_id','3481'),(6181,3471,'_thumbnail_id','3396'),(6182,3479,'_nectar_love','1'),(6183,3477,'_nectar_love','2'),(6184,3473,'_nectar_love','0'),(6185,3483,'_edit_last','1'),(6186,3483,'_edit_lock','1473291803:1'),(6187,3483,'_wpb_vc_js_status','true'),(6188,3483,'_wpb_vc_js_interface_version','2'),(6189,3483,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3465,3464,3463,3462,3461,3460,3459,3458,3457,3456,3455,3454,3453,3452,3451,3450,3449,3448,3447,3446,3445,3444,3443,3442,3441,3440,3439,3438,3437,3436,3435,3434,2861,2860,2859,2858,2857,2856,2855,2854,2853,2852,2851,2849,2848,2846,2845,2844,2843,2842,2841,2840,2839,2838,2837,2836,2835,2834,2833,2832,2831,2830,2829,2828,2827,2826,2825,2824,2823,2822,2821,2820,2819,2818,2787\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row]'),(6190,3483,'_nectar_portfolio_item_layout','enabled'),(6191,3483,'_nectar_portfolio_custom_thumbnail',''),(6192,3483,'_nectar_hide_featured','off'),(6193,3483,'_portfolio_item_masonry_sizing','regular'),(6194,3483,'_nectar_external_project_url',''),(6195,3483,'nectar-metabox-portfolio-parent-override','default'),(6196,3483,'_nectar_project_excerpt',''),(6197,3483,'_nectar_project_accent_color',''),(6198,3483,'_nectar_header_bg',''),(6199,3483,'_nectar_header_parallax','off'),(6200,3483,'_nectar_header_bg_height',''),(6201,3483,'_nectar_header_bg_color',''),(6202,3483,'_nectar_header_font_color',''),(6203,3483,'_disable_transparent_header','off'),(6204,3483,'_nectar_video_m4v',''),(6205,3483,'_nectar_video_ogv',''),(6206,3483,'_nectar_video_height',''),(6207,3483,'_nectar_video_poster',''),(6208,3483,'_nectar_video_embed',''),(6209,3483,'_thumbnail_id','2784'),(6210,3483,'_nectar_love','2'),(6211,3505,'_wp_attached_file','2013/06/15th-Anni-Dinner-Web-Banner.jpg'),(6212,3505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:500;s:4:\"file\";s:39:\"2013/06/15th-Anni-Dinner-Web-Banner.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"15th-Anni-Dinner-Web-Banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"15th-Anni-Dinner-Web-Banner-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"15th-Anni-Dinner-Web-Banner-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:37:\"15th-Anni-Dinner-Web-Banner-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:39:\"15th-Anni-Dinner-Web-Banner-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:39:\"15th-Anni-Dinner-Web-Banner-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:40:\"15th-Anni-Dinner-Web-Banner-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:39:\"15th-Anni-Dinner-Web-Banner-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:39:\"15th-Anni-Dinner-Web-Banner-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:40:\"15th-Anni-Dinner-Web-Banner-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6213,3508,'_edit_last','1'),(6214,3508,'_edit_lock','1437523453:1'),(6215,3509,'_wp_attached_file','2015/07/1_cover_page.jpg'),(6216,3509,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1150;s:4:\"file\";s:24:\"2015/07/1_cover_page.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"1_cover_page-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"1_cover_page-209x300.jpg\";s:5:\"width\";i:209;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"1_cover_page-712x1024.jpg\";s:5:\"width\";i:712;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:22:\"1_cover_page-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:24:\"1_cover_page-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:24:\"1_cover_page-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"1_cover_page-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:24:\"1_cover_page-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:25:\"1_cover_page-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:25:\"1_cover_page-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6217,3510,'_wp_attached_file','2015/07/2-punjabi.jpg'),(6218,3510,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1136;s:4:\"file\";s:21:\"2015/07/2-punjabi.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"2-punjabi-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"2-punjabi-211x300.jpg\";s:5:\"width\";i:211;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"2-punjabi-721x1024.jpg\";s:5:\"width\";i:721;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"2-punjabi-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"2-punjabi-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"2-punjabi-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"2-punjabi-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"2-punjabi-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"2-punjabi-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"2-punjabi-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6219,3511,'_wp_attached_file','2015/07/3-message_from_CG_India.jpg'),(6220,3511,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2015/07/3-message_from_CG_India.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"3-message_from_CG_India-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"3-message_from_CG_India-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"3-message_from_CG_India-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:33:\"3-message_from_CG_India-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:35:\"3-message_from_CG_India-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:35:\"3-message_from_CG_India-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:35:\"3-message_from_CG_India-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:35:\"3-message_from_CG_India-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:36:\"3-message_from_CG_India-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:36:\"3-message_from_CG_India-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6221,3512,'_wp_attached_file','2015/07/4-message_Sikh_temple.jpg'),(6222,3512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1202;s:4:\"file\";s:33:\"2015/07/4-message_Sikh_temple.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"4-message_Sikh_temple-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"4-message_Sikh_temple-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"4-message_Sikh_temple-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:31:\"4-message_Sikh_temple-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:33:\"4-message_Sikh_temple-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:33:\"4-message_Sikh_temple-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:33:\"4-message_Sikh_temple-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:33:\"4-message_Sikh_temple-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:34:\"4-message_Sikh_temple-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:34:\"4-message_Sikh_temple-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6223,3513,'_wp_attached_file','2015/07/5-message_pyc_president.jpg'),(6224,3513,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2015/07/5-message_pyc_president.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"5-message_pyc_president-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"5-message_pyc_president-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"5-message_pyc_president-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:33:\"5-message_pyc_president-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:35:\"5-message_pyc_president-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:35:\"5-message_pyc_president-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:35:\"5-message_pyc_president-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:35:\"5-message_pyc_president-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:36:\"5-message_pyc_president-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:36:\"5-message_pyc_president-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6225,3514,'_wp_attached_file','2015/07/6-IRC_MESSAGE.jpg'),(6226,3514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:25:\"2015/07/6-IRC_MESSAGE.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"6-IRC_MESSAGE-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:\"6-IRC_MESSAGE-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"6-IRC_MESSAGE-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:23:\"6-IRC_MESSAGE-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:25:\"6-IRC_MESSAGE-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:25:\"6-IRC_MESSAGE-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:25:\"6-IRC_MESSAGE-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:25:\"6-IRC_MESSAGE-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:26:\"6-IRC_MESSAGE-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:26:\"6-IRC_MESSAGE-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6227,3515,'_wp_attached_file','2015/07/7-Nav_Bharat_Message.jpg'),(6228,3515,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:32:\"2015/07/7-Nav_Bharat_Message.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"7-Nav_Bharat_Message-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"7-Nav_Bharat_Message-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"7-Nav_Bharat_Message-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:30:\"7-Nav_Bharat_Message-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:32:\"7-Nav_Bharat_Message-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:32:\"7-Nav_Bharat_Message-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:32:\"7-Nav_Bharat_Message-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:32:\"7-Nav_Bharat_Message-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:33:\"7-Nav_Bharat_Message-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:33:\"7-Nav_Bharat_Message-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6229,3516,'_wp_attached_file','2015/07/8-message_Mr_Ramoowalia.jpg'),(6230,3516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2015/07/8-message_Mr_Ramoowalia.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"8-message_Mr_Ramoowalia-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"8-message_Mr_Ramoowalia-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"8-message_Mr_Ramoowalia-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:33:\"8-message_Mr_Ramoowalia-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:35:\"8-message_Mr_Ramoowalia-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:35:\"8-message_Mr_Ramoowalia-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:35:\"8-message_Mr_Ramoowalia-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:35:\"8-message_Mr_Ramoowalia-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:36:\"8-message_Mr_Ramoowalia-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:36:\"8-message_Mr_Ramoowalia-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6231,3517,'_wp_attached_file','2015/07/9-message_Ajit.jpg'),(6232,3517,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1118;s:4:\"file\";s:26:\"2015/07/9-message_Ajit.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"9-message_Ajit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"9-message_Ajit-215x300.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"9-message_Ajit-733x1024.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:24:\"9-message_Ajit-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:26:\"9-message_Ajit-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:26:\"9-message_Ajit-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:26:\"9-message_Ajit-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:26:\"9-message_Ajit-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:27:\"9-message_Ajit-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:27:\"9-message_Ajit-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6233,3518,'_wp_attached_file','2015/07/10-Messege_HBZ_dhillon.jpg'),(6234,3518,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1188;s:4:\"file\";s:34:\"2015/07/10-Messege_HBZ_dhillon.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"10-Messege_HBZ_dhillon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"10-Messege_HBZ_dhillon-202x300.jpg\";s:5:\"width\";i:202;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"10-Messege_HBZ_dhillon-690x1024.jpg\";s:5:\"width\";i:690;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:32:\"10-Messege_HBZ_dhillon-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:34:\"10-Messege_HBZ_dhillon-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:34:\"10-Messege_HBZ_dhillon-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:34:\"10-Messege_HBZ_dhillon-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:34:\"10-Messege_HBZ_dhillon-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:35:\"10-Messege_HBZ_dhillon-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:35:\"10-Messege_HBZ_dhillon-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6235,3519,'_wp_attached_file','2015/07/11-Visakhi_1_Mr_Batra.jpg'),(6236,3519,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1180;s:4:\"file\";s:33:\"2015/07/11-Visakhi_1_Mr_Batra.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"11-Visakhi_1_Mr_Batra-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"11-Visakhi_1_Mr_Batra-203x300.jpg\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"11-Visakhi_1_Mr_Batra-694x1024.jpg\";s:5:\"width\";i:694;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:31:\"11-Visakhi_1_Mr_Batra-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:33:\"11-Visakhi_1_Mr_Batra-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:33:\"11-Visakhi_1_Mr_Batra-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:33:\"11-Visakhi_1_Mr_Batra-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:33:\"11-Visakhi_1_Mr_Batra-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:34:\"11-Visakhi_1_Mr_Batra-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:34:\"11-Visakhi_1_Mr_Batra-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6237,3520,'_wp_attached_file','2015/07/12-Visakhi_2_Mr_Batra.jpg'),(6238,3520,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1093;s:4:\"file\";s:33:\"2015/07/12-Visakhi_2_Mr_Batra.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"12-Visakhi_2_Mr_Batra-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"12-Visakhi_2_Mr_Batra-220x300.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"12-Visakhi_2_Mr_Batra-749x1024.jpg\";s:5:\"width\";i:749;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:31:\"12-Visakhi_2_Mr_Batra-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:33:\"12-Visakhi_2_Mr_Batra-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:33:\"12-Visakhi_2_Mr_Batra-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:33:\"12-Visakhi_2_Mr_Batra-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:33:\"12-Visakhi_2_Mr_Batra-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:34:\"12-Visakhi_2_Mr_Batra-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:34:\"12-Visakhi_2_Mr_Batra-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6239,3521,'_wp_attached_file','2015/07/13-sharnjit_1.jpg'),(6240,3521,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:25:\"2015/07/13-sharnjit_1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"13-sharnjit_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"13-sharnjit_1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"13-sharnjit_1-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:23:\"13-sharnjit_1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:25:\"13-sharnjit_1-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:25:\"13-sharnjit_1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:25:\"13-sharnjit_1-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:25:\"13-sharnjit_1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:26:\"13-sharnjit_1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:26:\"13-sharnjit_1-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6241,3522,'_wp_attached_file','2015/07/13-sharnjit_2.jpg'),(6242,3522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:25:\"2015/07/13-sharnjit_2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"13-sharnjit_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"13-sharnjit_2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"13-sharnjit_2-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:23:\"13-sharnjit_2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:25:\"13-sharnjit_2-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:25:\"13-sharnjit_2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:25:\"13-sharnjit_2-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:25:\"13-sharnjit_2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:26:\"13-sharnjit_2-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:26:\"13-sharnjit_2-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6243,3523,'_wp_attached_file','2015/07/13-Sikh_n_civil_Services.jpg'),(6244,3523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1208;s:4:\"file\";s:36:\"2015/07/13-Sikh_n_civil_Services.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"13-Sikh_n_civil_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:36:\"13-Sikh_n_civil_Services-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"13-Sikh_n_civil_Services-678x1024.jpg\";s:5:\"width\";i:678;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:34:\"13-Sikh_n_civil_Services-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:36:\"13-Sikh_n_civil_Services-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:36:\"13-Sikh_n_civil_Services-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:36:\"13-Sikh_n_civil_Services-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:36:\"13-Sikh_n_civil_Services-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:37:\"13-Sikh_n_civil_Services-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:37:\"13-Sikh_n_civil_Services-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6245,3524,'_wp_attached_file','2015/07/14-Sikh_n_civil_Services_eng.jpg'),(6246,3524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1083;s:4:\"file\";s:40:\"2015/07/14-Sikh_n_civil_Services_eng.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"14-Sikh_n_civil_Services_eng-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:40:\"14-Sikh_n_civil_Services_eng-222x300.jpg\";s:5:\"width\";i:222;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"14-Sikh_n_civil_Services_eng-756x1024.jpg\";s:5:\"width\";i:756;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:38:\"14-Sikh_n_civil_Services_eng-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:40:\"14-Sikh_n_civil_Services_eng-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:40:\"14-Sikh_n_civil_Services_eng-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:40:\"14-Sikh_n_civil_Services_eng-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:40:\"14-Sikh_n_civil_Services_eng-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:41:\"14-Sikh_n_civil_Services_eng-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:41:\"14-Sikh_n_civil_Services_eng-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6247,3525,'_wp_attached_file','2015/07/15-media_1.jpg'),(6248,3525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1194;s:4:\"file\";s:22:\"2015/07/15-media_1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"15-media_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"15-media_1-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"15-media_1-686x1024.jpg\";s:5:\"width\";i:686;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"15-media_1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"15-media_1-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"15-media_1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"15-media_1-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"15-media_1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"15-media_1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"15-media_1-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6249,3526,'_wp_attached_file','2015/07/16-media_2.jpg'),(6250,3526,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1191;s:4:\"file\";s:22:\"2015/07/16-media_2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"16-media_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"16-media_2-202x300.jpg\";s:5:\"width\";i:202;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"16-media_2-688x1024.jpg\";s:5:\"width\";i:688;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"16-media_2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"16-media_2-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"16-media_2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"16-media_2-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"16-media_2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"16-media_2-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"16-media_2-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6251,3527,'_wp_attached_file','2015/07/17-media_3.jpg'),(6252,3527,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1195;s:4:\"file\";s:22:\"2015/07/17-media_3.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"17-media_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"17-media_3-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"17-media_3-686x1024.jpg\";s:5:\"width\";i:686;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"17-media_3-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"17-media_3-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"17-media_3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"17-media_3-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"17-media_3-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"17-media_3-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"17-media_3-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6253,3528,'_wp_attached_file','2015/07/18-media_4.jpg'),(6254,3528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1174;s:4:\"file\";s:22:\"2015/07/18-media_4.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"18-media_4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"18-media_4-204x300.jpg\";s:5:\"width\";i:204;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"18-media_4-698x1024.jpg\";s:5:\"width\";i:698;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"18-media_4-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"18-media_4-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"18-media_4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"18-media_4-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"18-media_4-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"18-media_4-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"18-media_4-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6255,3529,'_wp_attached_file','2015/07/19-PYC_Commitee_03-04.jpg'),(6256,3529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:33:\"2015/07/19-PYC_Commitee_03-04.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"19-PYC_Commitee_03-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"19-PYC_Commitee_03-04-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"19-PYC_Commitee_03-04-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:31:\"19-PYC_Commitee_03-04-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:33:\"19-PYC_Commitee_03-04-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:33:\"19-PYC_Commitee_03-04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:33:\"19-PYC_Commitee_03-04-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:33:\"19-PYC_Commitee_03-04-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:34:\"19-PYC_Commitee_03-04-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:34:\"19-PYC_Commitee_03-04-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6257,3530,'_wp_attached_file','2015/07/20-PYC-Commitee_-present.jpg'),(6258,3530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:36:\"2015/07/20-PYC-Commitee_-present.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"20-PYC-Commitee_-present-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"20-PYC-Commitee_-present-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"20-PYC-Commitee_-present-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:34:\"20-PYC-Commitee_-present-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:36:\"20-PYC-Commitee_-present-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:36:\"20-PYC-Commitee_-present-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:36:\"20-PYC-Commitee_-present-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:36:\"20-PYC-Commitee_-present-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:37:\"20-PYC-Commitee_-present-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:37:\"20-PYC-Commitee_-present-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6259,3531,'_wp_attached_file','2015/07/21_DC-2001.jpg'),(6260,3531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2015/07/21_DC-2001.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"21_DC-2001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"21_DC-2001-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"21_DC-2001-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"21_DC-2001-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"21_DC-2001-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"21_DC-2001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"21_DC-2001-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"21_DC-2001-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"21_DC-2001-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"21_DC-2001-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6261,3532,'_wp_attached_file','2015/07/21-DC_2002.jpg'),(6262,3532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2015/07/21-DC_2002.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"21-DC_2002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"21-DC_2002-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"21-DC_2002-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:20:\"21-DC_2002-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:22:\"21-DC_2002-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:22:\"21-DC_2002-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"21-DC_2002-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:22:\"21-DC_2002-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:23:\"21-DC_2002-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"21-DC_2002-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6263,3533,'_wp_attached_file','2015/07/21-mpd_2001.jpg'),(6264,3533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:23:\"2015/07/21-mpd_2001.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"21-mpd_2001-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:\"21-mpd_2001-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"21-mpd_2001-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"21-mpd_2001-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"21-mpd_2001-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"21-mpd_2001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:23:\"21-mpd_2001-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"21-mpd_2001-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:24:\"21-mpd_2001-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"21-mpd_2001-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6265,3534,'_wp_attached_file','2015/07/22-mpd_2001-2.jpg'),(6266,3534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:25:\"2015/07/22-mpd_2001-2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"22-mpd_2001-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"22-mpd_2001-2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"22-mpd_2001-2-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:23:\"22-mpd_2001-2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:25:\"22-mpd_2001-2-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:25:\"22-mpd_2001-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:25:\"22-mpd_2001-2-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:25:\"22-mpd_2001-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:26:\"22-mpd_2001-2-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:26:\"22-mpd_2001-2-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6267,3535,'_wp_attached_file','2015/07/23-mpd_2002.jpg'),(6268,3535,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:23:\"2015/07/23-mpd_2002.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"23-mpd_2002-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:\"23-mpd_2002-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"23-mpd_2002-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"23-mpd_2002-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"23-mpd_2002-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"23-mpd_2002-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:23:\"23-mpd_2002-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"23-mpd_2002-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:24:\"23-mpd_2002-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"23-mpd_2002-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6269,3536,'_wp_attached_file','2015/07/24-mpd_2002-2.jpg'),(6270,3536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:25:\"2015/07/24-mpd_2002-2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"24-mpd_2002-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"24-mpd_2002-2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"24-mpd_2002-2-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:23:\"24-mpd_2002-2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:25:\"24-mpd_2002-2-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:25:\"24-mpd_2002-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:25:\"24-mpd_2002-2-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:25:\"24-mpd_2002-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:26:\"24-mpd_2002-2-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:26:\"24-mpd_2002-2-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6271,3537,'_wp_attached_file','2015/07/25_mpd_2003.jpg'),(6272,3537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:23:\"2015/07/25_mpd_2003.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"25_mpd_2003-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:\"25_mpd_2003-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"25_mpd_2003-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:21:\"25_mpd_2003-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:23:\"25_mpd_2003-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:23:\"25_mpd_2003-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:23:\"25_mpd_2003-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:23:\"25_mpd_2003-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:24:\"25_mpd_2003-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:24:\"25_mpd_2003-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6273,3538,'_wp_attached_file','2015/07/26_mpd_2003-2.jpg');
INSERT INTO `wp_postmeta` VALUES (6274,3538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:25:\"2015/07/26_mpd_2003-2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"26_mpd_2003-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"26_mpd_2003-2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"26_mpd_2003-2-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:23:\"26_mpd_2003-2-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:25:\"26_mpd_2003-2-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:25:\"26_mpd_2003-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:25:\"26_mpd_2003-2-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:25:\"26_mpd_2003-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:26:\"26_mpd_2003-2-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:26:\"26_mpd_2003-2-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6275,3539,'_wp_attached_file','2015/07/27-gurdas_maan.jpg'),(6276,3539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1197;s:4:\"file\";s:26:\"2015/07/27-gurdas_maan.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"27-gurdas_maan-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"27-gurdas_maan-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"27-gurdas_maan-684x1024.jpg\";s:5:\"width\";i:684;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:24:\"27-gurdas_maan-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:26:\"27-gurdas_maan-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:26:\"27-gurdas_maan-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:26:\"27-gurdas_maan-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:26:\"27-gurdas_maan-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:27:\"27-gurdas_maan-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:27:\"27-gurdas_maan-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6277,3540,'_wp_attached_file','2015/07/28-jasvir_message.jpg'),(6278,3540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:29:\"2015/07/28-jasvir_message.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"28-jasvir_message-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"28-jasvir_message-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"28-jasvir_message-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:27:\"28-jasvir_message-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:29:\"28-jasvir_message-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:29:\"28-jasvir_message-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:29:\"28-jasvir_message-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:29:\"28-jasvir_message-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:30:\"28-jasvir_message-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:30:\"28-jasvir_message-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6279,3541,'_wp_attached_file','2015/07/29_raja_dhillon_article.jpg'),(6280,3541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1161;s:4:\"file\";s:35:\"2015/07/29_raja_dhillon_article.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"29_raja_dhillon_article-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"29_raja_dhillon_article-207x300.jpg\";s:5:\"width\";i:207;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"29_raja_dhillon_article-706x1024.jpg\";s:5:\"width\";i:706;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:33:\"29_raja_dhillon_article-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:35:\"29_raja_dhillon_article-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:35:\"29_raja_dhillon_article-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:35:\"29_raja_dhillon_article-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:35:\"29_raja_dhillon_article-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:36:\"29_raja_dhillon_article-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:36:\"29_raja_dhillon_article-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6281,3542,'_wp_attached_file','2015/07/30-Jassi_article.jpg'),(6282,3542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:28:\"2015/07/30-Jassi_article.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"30-Jassi_article-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"30-Jassi_article-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"30-Jassi_article-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:26:\"30-Jassi_article-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:28:\"30-Jassi_article-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:28:\"30-Jassi_article-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:28:\"30-Jassi_article-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:28:\"30-Jassi_article-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:29:\"30-Jassi_article-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:29:\"30-Jassi_article-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6283,3543,'_wp_attached_file','2015/07/31-yaar_Punjabi.jpg'),(6284,3543,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1207;s:4:\"file\";s:27:\"2015/07/31-yaar_Punjabi.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"31-yaar_Punjabi-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"31-yaar_Punjabi-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"31-yaar_Punjabi-679x1024.jpg\";s:5:\"width\";i:679;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"31-yaar_Punjabi-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"31-yaar_Punjabi-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"31-yaar_Punjabi-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:27:\"31-yaar_Punjabi-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:27:\"31-yaar_Punjabi-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:28:\"31-yaar_Punjabi-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:28:\"31-yaar_Punjabi-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6285,3544,'_wp_attached_file','2015/07/33_Bhangra_Team.jpg'),(6286,3544,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"2015/07/33_Bhangra_Team.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"33_Bhangra_Team-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"33_Bhangra_Team-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"33_Bhangra_Team-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"33_Bhangra_Team-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"33_Bhangra_Team-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"33_Bhangra_Team-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:27:\"33_Bhangra_Team-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:27:\"33_Bhangra_Team-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:28:\"33_Bhangra_Team-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:28:\"33_Bhangra_Team-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6287,3545,'_wp_attached_file','2015/07/34-sports_teams-copy.jpg'),(6288,3545,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:32:\"2015/07/34-sports_teams-copy.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"34-sports_teams-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"34-sports_teams-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"34-sports_teams-copy-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:30:\"34-sports_teams-copy-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:32:\"34-sports_teams-copy-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:32:\"34-sports_teams-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:32:\"34-sports_teams-copy-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:32:\"34-sports_teams-copy-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:33:\"34-sports_teams-copy-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:33:\"34-sports_teams-copy-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6289,3546,'_wp_attached_file','2015/07/35_DANCES_OF_PUNJAB.jpg'),(6290,3546,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:31:\"2015/07/35_DANCES_OF_PUNJAB.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"35_DANCES_OF_PUNJAB-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:\"35_DANCES_OF_PUNJAB-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"35_DANCES_OF_PUNJAB-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:29:\"35_DANCES_OF_PUNJAB-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:31:\"35_DANCES_OF_PUNJAB-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:31:\"35_DANCES_OF_PUNJAB-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:31:\"35_DANCES_OF_PUNJAB-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:31:\"35_DANCES_OF_PUNJAB-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:32:\"35_DANCES_OF_PUNJAB-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:32:\"35_DANCES_OF_PUNJAB-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6291,3547,'_wp_attached_file','2015/07/35_founder_members.jpg'),(6292,3547,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1188;s:4:\"file\";s:30:\"2015/07/35_founder_members.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"35_founder_members-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"35_founder_members-202x300.jpg\";s:5:\"width\";i:202;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"35_founder_members-690x1024.jpg\";s:5:\"width\";i:690;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:28:\"35_founder_members-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:30:\"35_founder_members-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:30:\"35_founder_members-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:30:\"35_founder_members-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:30:\"35_founder_members-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:31:\"35_founder_members-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:31:\"35_founder_members-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6293,3548,'_wp_attached_file','2015/07/36_our_goals.jpg'),(6294,3548,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1171;s:4:\"file\";s:24:\"2015/07/36_our_goals.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"36_our_goals-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"36_our_goals-205x300.jpg\";s:5:\"width\";i:205;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"36_our_goals-700x1024.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:22:\"36_our_goals-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:24:\"36_our_goals-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:24:\"36_our_goals-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:24:\"36_our_goals-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:24:\"36_our_goals-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:25:\"36_our_goals-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:25:\"36_our_goals-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6295,3549,'_wp_attached_file','2015/07/37_special_thanks.jpg'),(6296,3549,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1198;s:4:\"file\";s:29:\"2015/07/37_special_thanks.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"37_special_thanks-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"37_special_thanks-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"37_special_thanks-684x1024.jpg\";s:5:\"width\";i:684;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:27:\"37_special_thanks-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:29:\"37_special_thanks-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:29:\"37_special_thanks-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:29:\"37_special_thanks-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:29:\"37_special_thanks-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:30:\"37_special_thanks-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:30:\"37_special_thanks-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6297,3550,'_wp_attached_file','2015/07/38_thanks-_to_sponsors.jpg'),(6298,3550,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1195;s:4:\"file\";s:34:\"2015/07/38_thanks-_to_sponsors.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"38_thanks-_to_sponsors-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"38_thanks-_to_sponsors-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"38_thanks-_to_sponsors-686x1024.jpg\";s:5:\"width\";i:686;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:32:\"38_thanks-_to_sponsors-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:34:\"38_thanks-_to_sponsors-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:34:\"38_thanks-_to_sponsors-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:34:\"38_thanks-_to_sponsors-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:34:\"38_thanks-_to_sponsors-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:35:\"38_thanks-_to_sponsors-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:35:\"38_thanks-_to_sponsors-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6299,3508,'_wpb_vc_js_status','true'),(6300,3508,'_wpb_vc_js_interface_version','2'),(6301,3508,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3509,3510,3511,3512,3513,3514,3515,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550\" layout=\"3\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"800x1180\"][/vc_column][/vc_row]'),(6302,3508,'_nectar_portfolio_item_layout','enabled'),(6303,3508,'_nectar_portfolio_custom_thumbnail',''),(6304,3508,'_nectar_hide_featured','on'),(6305,3508,'_portfolio_item_masonry_sizing','regular'),(6306,3508,'_nectar_external_project_url',''),(6307,3508,'nectar-metabox-portfolio-parent-override','default'),(6308,3508,'_nectar_project_excerpt',''),(6309,3508,'_nectar_project_accent_color',''),(6310,3508,'_nectar_header_bg',''),(6311,3508,'_nectar_header_parallax','off'),(6312,3508,'_nectar_header_bg_height',''),(6313,3508,'_nectar_header_bg_color',''),(6314,3508,'_nectar_header_font_color',''),(6315,3508,'_disable_transparent_header','off'),(6316,3508,'_nectar_video_m4v',''),(6317,3508,'_nectar_video_ogv',''),(6318,3508,'_nectar_video_height',''),(6319,3508,'_nectar_video_poster',''),(6320,3508,'_nectar_video_embed',''),(6321,3508,'_nectar_love','2'),(6322,3508,'_thumbnail_id','3509'),(6323,3560,'_wp_attached_file','2013/06/15th-Anni-Dinner-web-banner.jpg'),(6324,3560,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:500;s:4:\"file\";s:39:\"2013/06/15th-Anni-Dinner-web-banner.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"15th-Anni-Dinner-web-banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"15th-Anni-Dinner-web-banner-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"15th-Anni-Dinner-web-banner-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:37:\"15th-Anni-Dinner-web-banner-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:39:\"15th-Anni-Dinner-web-banner-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:39:\"15th-Anni-Dinner-web-banner-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:40:\"15th-Anni-Dinner-web-banner-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:39:\"15th-Anni-Dinner-web-banner-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:39:\"15th-Anni-Dinner-web-banner-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:40:\"15th-Anni-Dinner-web-banner-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6325,3562,'_wp_attached_file','2015/07/PYC-MEMBERSHIP_Form.pdf'),(6326,3562,'_edit_lock','1440580539:1'),(6327,3566,'_wp_attached_file','2015/07/download-form1.jpg'),(6328,3566,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:595;s:6:\"height\";i:204;s:4:\"file\";s:26:\"2015/07/download-form1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"download-form1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"download-form1-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:24:\"download-form1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:26:\"download-form1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:26:\"download-form1-500x204.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:26:\"download-form1-500x204.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6329,3568,'_edit_last','1'),(6330,3568,'_edit_lock','1440660107:1'),(6331,3568,'_wpb_vc_js_status','true'),(6332,3568,'_wpb_vc_js_interface_version','2'),(6333,3568,'_nectar_portfolio_extra_content','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3570,3681,3621,3628,3614,3623,3644,3622,3647,3629,3646,3645,3627,3643,3648,3642,3641,3640,3639,3638,3637,3636,3635,3634,3633,3632,3631,3630,3626,3625,3624,3620,3619,3618,3676,3617,3616,3615,3613,3612,3611,3610,3609,3608,3607,3606,3605,3604,3603,3602,3601,3600,3599,3598,3597,3596,3595,3594,3593,3592,3591,3590,3589,3588,3587,3586,3585,3584,3583,3582,3581,3580,3579,3578,3577,3576,3575,3574,3573,3572,3680,3679,3678,3677,3675,3674,3673,3672,3671,3670,3669,3668,3667,3666,3665,3664,3663,3662,3661,3660,3659,3658,3657,3656,3655,3654,3653,3652,3651,3650,3649\" layout=\"3\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row]'),(6334,3568,'_nectar_portfolio_item_layout','enabled'),(6335,3568,'_nectar_portfolio_custom_thumbnail',''),(6336,3568,'_nectar_hide_featured','off'),(6337,3568,'_portfolio_item_masonry_sizing','regular'),(6338,3568,'_nectar_external_project_url',''),(6339,3568,'nectar-metabox-portfolio-parent-override','default'),(6340,3568,'_nectar_project_excerpt',''),(6341,3568,'_nectar_project_accent_color',''),(6342,3568,'_nectar_header_bg',''),(6343,3568,'_nectar_header_parallax','off'),(6344,3568,'_nectar_header_bg_height',''),(6345,3568,'_nectar_header_bg_color',''),(6346,3568,'_nectar_header_font_color',''),(6347,3568,'_disable_transparent_header','off'),(6348,3568,'_nectar_video_m4v',''),(6349,3568,'_nectar_video_ogv',''),(6350,3568,'_nectar_video_height',''),(6351,3568,'_nectar_video_poster',''),(6352,3568,'_nectar_video_embed',''),(6353,3570,'_wp_attached_file','2015/08/PYC-Anniversary.png'),(6354,3570,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:886;s:6:\"height\";i:886;s:4:\"file\";s:27:\"2015/08/PYC-Anniversary.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"PYC-Anniversary-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:27:\"PYC-Anniversary-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:25:\"PYC-Anniversary-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:27:\"PYC-Anniversary-600x403.png\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:27:\"PYC-Anniversary-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"wide\";a:4:{s:4:\"file\";s:27:\"PYC-Anniversary-886x500.png\";s:5:\"width\";i:886;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"regular\";a:4:{s:4:\"file\";s:27:\"PYC-Anniversary-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"tall\";a:4:{s:4:\"file\";s:27:\"PYC-Anniversary-500x886.png\";s:5:\"width\";i:500;s:6:\"height\";i:886;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6356,3568,'_nectar_love','1'),(6357,3572,'_wp_attached_file','2015/08/DSC_0152.jpg'),(6358,3572,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0152.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0152-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:\"DSC_0152-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0152-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0152-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0152-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0152-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0152-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0152-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0152-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0152-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6359,3573,'_wp_attached_file','2015/08/DSC_0157.jpg'),(6360,3573,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0157.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0157-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:\"DSC_0157-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0157-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0157-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0157-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0157-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0157-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0157-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0157-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0157-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6361,3574,'_wp_attached_file','2015/08/DSC_01521.jpg'),(6362,3574,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:21:\"2015/08/DSC_01521.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"DSC_01521-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"DSC_01521-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"DSC_01521-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"DSC_01521-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"DSC_01521-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"DSC_01521-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"DSC_01521-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"DSC_01521-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"DSC_01521-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"DSC_01521-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6363,3575,'_wp_attached_file','2015/08/DSC_01571.jpg'),(6364,3575,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:21:\"2015/08/DSC_01571.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"DSC_01571-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"DSC_01571-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"DSC_01571-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:19:\"DSC_01571-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:21:\"DSC_01571-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:21:\"DSC_01571-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:22:\"DSC_01571-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:21:\"DSC_01571-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:22:\"DSC_01571-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:23:\"DSC_01571-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6365,3576,'_wp_attached_file','2015/08/DSC_0159.jpg'),(6366,3576,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0159.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0159-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:\"DSC_0159-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0159-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0159-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0159-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0159-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0159-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0159-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0159-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0159-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6367,3577,'_wp_attached_file','2015/08/DSC_0164.jpg'),(6368,3577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0164.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0164-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:\"DSC_0164-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0164-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0164-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0164-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0164-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0164-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0164-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0164-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0164-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6369,3578,'_wp_attached_file','2015/08/DSC_0167.jpg'),(6370,3578,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0167.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0167-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:\"DSC_0167-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0167-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0167-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0167-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0167-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0167-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0167-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0167-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0167-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6371,3579,'_wp_attached_file','2015/08/DSC_0168.jpg'),(6372,3579,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0168.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0168-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:\"DSC_0168-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0168-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0168-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0168-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0168-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0168-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0168-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0168-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0168-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6373,3580,'_wp_attached_file','2015/08/DSC_0170.jpg'),(6374,3580,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0170.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0170-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:\"DSC_0170-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0170-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0170-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0170-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0170-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0170-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0170-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0170-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0170-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6375,3581,'_wp_attached_file','2015/08/DSC_0173.jpg'),(6376,3581,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0173.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0173-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:\"DSC_0173-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0173-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0173-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0173-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0173-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0173-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0173-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0173-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0173-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6377,3582,'_wp_attached_file','2015/08/DSC_0177.jpg'),(6378,3582,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0177.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0177-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:\"DSC_0177-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0177-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0177-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0177-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0177-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0177-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0177-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0177-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0177-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6379,3583,'_wp_attached_file','2015/08/DSC_0179.jpg'),(6380,3583,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0179.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0179-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:\"DSC_0179-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0179-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0179-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0179-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0179-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0179-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0179-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0179-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0179-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6381,3584,'_wp_attached_file','2015/08/DSC_0183.jpg'),(6382,3584,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0183.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0183-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:\"DSC_0183-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0183-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0183-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0183-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0183-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0183-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0183-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0183-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0183-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6383,3585,'_wp_attached_file','2015/08/DSC_0185.jpg'),(6384,3585,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0185.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0185-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:\"DSC_0185-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0185-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0185-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0185-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0185-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0185-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0185-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0185-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0185-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6385,3586,'_wp_attached_file','2015/08/DSC_0187.jpg'),(6386,3586,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0187.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0187-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:\"DSC_0187-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0187-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0187-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0187-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0187-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0187-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0187-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0187-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0187-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6387,3587,'_wp_attached_file','2015/08/DSC_0188.jpg'),(6388,3587,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0188.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0188-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:\"DSC_0188-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0188-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0188-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0188-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0188-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0188-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0188-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0188-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0188-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6389,3588,'_wp_attached_file','2015/08/DSC_0190.jpg'),(6390,3588,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0190.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0190-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:\"DSC_0190-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0190-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0190-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0190-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0190-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0190-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0190-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0190-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0190-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6391,3589,'_wp_attached_file','2015/08/DSC_0192.jpg'),(6392,3589,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0192.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0192-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:\"DSC_0192-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0192-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0192-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0192-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0192-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0192-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0192-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0192-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0192-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6393,3590,'_wp_attached_file','2015/08/DSC_0197.jpg'),(6394,3590,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0197.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0197-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:\"DSC_0197-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0197-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0197-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0197-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0197-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0197-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0197-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0197-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0197-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6395,3591,'_wp_attached_file','2015/08/DSC_0204.jpg'),(6396,3591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0204.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0204-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:\"DSC_0204-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0204-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0204-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0204-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0204-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0204-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0204-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0204-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0204-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6397,3592,'_wp_attached_file','2015/08/DSC_0207.jpg'),(6398,3592,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0207.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0207-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:\"DSC_0207-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0207-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0207-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0207-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0207-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0207-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0207-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0207-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0207-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6399,3593,'_wp_attached_file','2015/08/DSC_0212.jpg'),(6400,3593,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0212.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0212-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:\"DSC_0212-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0212-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0212-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0212-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0212-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0212-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0212-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0212-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0212-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6401,3594,'_wp_attached_file','2015/08/DSC_0229.jpg'),(6402,3594,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0229.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0229-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:\"DSC_0229-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0229-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0229-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0229-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0229-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0229-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0229-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0229-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0229-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6403,3595,'_wp_attached_file','2015/08/DSC_0231.jpg'),(6404,3595,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0231.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0231-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:\"DSC_0231-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0231-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0231-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0231-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0231-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0231-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0231-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0231-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0231-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6405,3596,'_wp_attached_file','2015/08/DSC_0244.jpg'),(6406,3596,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0244.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0244-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:\"DSC_0244-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0244-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0244-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0244-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0244-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0244-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0244-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0244-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0244-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6407,3597,'_wp_attached_file','2015/08/DSC_0254.jpg'),(6408,3597,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0254.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0254-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:\"DSC_0254-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0254-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0254-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0254-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0254-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0254-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0254-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0254-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0254-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6409,3598,'_wp_attached_file','2015/08/DSC_0255.jpg'),(6410,3598,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0255.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0255-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:\"DSC_0255-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0255-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0255-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0255-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0255-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0255-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0255-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0255-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0255-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6411,3599,'_wp_attached_file','2015/08/DSC_0258.jpg'),(6412,3599,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0258.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0258-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:\"DSC_0258-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0258-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0258-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0258-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0258-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0258-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0258-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0258-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0258-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6413,3600,'_wp_attached_file','2015/08/DSC_0261.jpg'),(6414,3600,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0261.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0261-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:\"DSC_0261-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0261-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0261-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0261-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0261-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0261-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0261-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0261-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0261-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6415,3601,'_wp_attached_file','2015/08/DSC_0262.jpg'),(6416,3601,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0262.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0262-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:\"DSC_0262-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0262-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0262-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0262-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0262-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0262-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0262-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0262-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0262-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6417,3602,'_wp_attached_file','2015/08/DSC_0266.jpg'),(6418,3602,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0266.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0266-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:\"DSC_0266-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0266-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0266-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0266-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0266-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0266-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0266-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0266-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0266-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6419,3603,'_wp_attached_file','2015/08/DSC_0267.jpg'),(6420,3603,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0267.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0267-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:\"DSC_0267-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0267-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0267-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0267-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0267-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0267-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0267-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0267-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0267-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6421,3604,'_wp_attached_file','2015/08/DSC_0268.jpg'),(6422,3604,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0268.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0268-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:\"DSC_0268-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0268-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0268-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0268-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0268-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0268-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0268-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0268-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0268-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6423,3605,'_wp_attached_file','2015/08/DSC_0269.jpg'),(6424,3605,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0269.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0269-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:\"DSC_0269-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0269-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0269-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0269-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0269-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0269-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0269-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0269-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0269-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6425,3606,'_wp_attached_file','2015/08/DSC_0272.jpg'),(6426,3606,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0272.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0272-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:\"DSC_0272-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0272-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0272-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0272-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0272-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0272-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0272-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0272-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0272-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6427,3607,'_wp_attached_file','2015/08/DSC_0273.jpg'),(6428,3607,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0273.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0273-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:\"DSC_0273-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0273-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0273-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0273-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0273-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0273-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0273-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0273-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0273-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6429,3608,'_wp_attached_file','2015/08/DSC_0276.jpg'),(6430,3608,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0276.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0276-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:\"DSC_0276-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0276-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0276-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0276-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0276-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0276-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0276-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0276-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0276-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6431,3609,'_wp_attached_file','2015/08/DSC_0655.jpg'),(6432,3609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0655.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0655-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:\"DSC_0655-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0655-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0655-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0655-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0655-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0655-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0655-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0655-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0655-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6433,3610,'_wp_attached_file','2015/08/DSC_0659.jpg'),(6434,3610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0659.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0659-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:\"DSC_0659-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0659-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0659-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0659-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0659-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0659-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0659-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0659-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0659-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6435,3611,'_wp_attached_file','2015/08/DSC_0662.jpg'),(6436,3611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1068;s:6:\"height\";i:1608;s:4:\"file\";s:20:\"2015/08/DSC_0662.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0662-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:\"DSC_0662-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0662-680x1024.jpg\";s:5:\"width\";i:680;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0662-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0662-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0662-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0662-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0662-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0662-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0662-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6437,3612,'_wp_attached_file','2015/08/DSC_0667.jpg'),(6438,3612,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0667.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0667-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:\"DSC_0667-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0667-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0667-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0667-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0667-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0667-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0667-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0667-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0667-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6439,3613,'_wp_attached_file','2015/08/DSC_0669.jpg'),(6440,3613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0669.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0669-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:\"DSC_0669-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0669-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0669-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0669-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0669-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0669-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0669-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0669-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0669-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6441,3614,'_wp_attached_file','2015/08/DSC_0672.jpg'),(6442,3614,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0672.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0672-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:\"DSC_0672-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0672-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0672-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0672-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0672-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0672-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0672-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0672-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0672-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6443,3615,'_wp_attached_file','2015/08/DSC_0673.jpg'),(6444,3615,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0673.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0673-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:\"DSC_0673-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0673-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0673-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0673-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0673-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0673-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0673-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0673-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0673-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6445,3616,'_wp_attached_file','2015/08/DSC_0674.jpg'),(6446,3616,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0674.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0674-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:\"DSC_0674-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0674-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0674-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0674-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0674-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0674-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0674-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0674-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0674-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6447,3617,'_wp_attached_file','2015/08/DSC_0676.jpg'),(6448,3617,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0676.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0676-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:\"DSC_0676-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0676-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0676-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0676-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0676-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0676-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0676-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0676-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0676-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6449,3618,'_wp_attached_file','2015/08/DSC_0678.jpg'),(6450,3618,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0678.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0678-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:\"DSC_0678-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0678-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0678-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0678-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0678-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0678-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0678-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0678-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0678-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6451,3619,'_wp_attached_file','2015/08/DSC_0679.jpg'),(6452,3619,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0679.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0679-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:\"DSC_0679-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0679-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0679-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0679-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0679-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0679-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0679-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0679-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0679-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6453,3620,'_wp_attached_file','2015/08/DSC_0680.jpg'),(6454,3620,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0680.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0680-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:\"DSC_0680-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0680-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0680-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0680-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0680-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0680-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0680-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0680-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0680-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6455,3621,'_wp_attached_file','2015/08/DSC_0682.jpg'),(6456,3621,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0682.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0682-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:\"DSC_0682-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0682-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0682-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0682-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0682-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0682-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0682-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0682-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0682-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6457,3622,'_wp_attached_file','2015/08/DSC_0684.jpg'),(6458,3622,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0684.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0684-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:\"DSC_0684-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0684-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0684-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0684-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0684-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0684-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0684-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0684-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0684-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6459,3623,'_wp_attached_file','2015/08/DSC_0685.jpg'),(6460,3623,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0685.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0685-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:\"DSC_0685-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0685-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0685-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0685-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0685-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0685-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0685-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0685-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0685-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6461,3624,'_wp_attached_file','2015/08/DSC_0698.jpg'),(6462,3624,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0698.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0698-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:\"DSC_0698-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0698-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0698-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0698-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0698-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0698-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0698-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0698-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0698-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6463,3625,'_wp_attached_file','2015/08/DSC_0702.jpg'),(6464,3625,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0702.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0702-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:\"DSC_0702-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0702-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0702-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0702-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0702-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0702-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0702-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0702-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0702-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6465,3626,'_wp_attached_file','2015/08/DSC_0704.jpg'),(6466,3626,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0704.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0704-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:\"DSC_0704-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0704-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0704-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0704-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0704-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0704-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0704-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0704-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0704-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6467,3627,'_wp_attached_file','2015/08/DSC_0709.jpg'),(6468,3627,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0709.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0709-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:\"DSC_0709-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0709-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0709-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0709-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0709-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0709-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0709-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0709-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0709-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6469,3628,'_wp_attached_file','2015/08/DSC_0710.jpg'),(6470,3628,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0710.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0710-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:\"DSC_0710-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0710-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0710-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0710-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0710-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0710-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0710-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0710-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0710-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6471,3629,'_wp_attached_file','2015/08/DSC_0711.jpg'),(6472,3629,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0711.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0711-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:\"DSC_0711-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0711-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0711-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0711-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0711-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0711-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0711-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0711-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0711-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6473,3630,'_wp_attached_file','2015/08/DSC_0713.jpg'),(6474,3630,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0713.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0713-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:\"DSC_0713-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0713-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0713-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0713-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0713-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0713-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0713-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0713-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0713-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6475,3631,'_wp_attached_file','2015/08/DSC_0717.jpg'),(6476,3631,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0717.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0717-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:\"DSC_0717-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0717-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0717-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0717-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0717-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0717-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0717-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0717-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0717-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6477,3632,'_wp_attached_file','2015/08/DSC_0718.jpg'),(6478,3632,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0718.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0718-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:\"DSC_0718-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0718-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0718-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0718-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0718-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0718-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0718-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0718-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0718-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6479,3633,'_wp_attached_file','2015/08/DSC_0735.jpg'),(6480,3633,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0735.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0735-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:\"DSC_0735-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0735-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0735-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0735-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0735-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0735-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0735-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0735-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0735-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6481,3634,'_wp_attached_file','2015/08/DSC_0736.jpg'),(6482,3634,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0736.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0736-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:\"DSC_0736-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0736-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0736-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0736-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0736-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0736-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0736-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0736-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0736-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6483,3635,'_wp_attached_file','2015/08/DSC_0740.jpg'),(6484,3635,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0740.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0740-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:\"DSC_0740-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0740-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0740-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0740-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0740-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0740-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0740-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0740-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0740-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6485,3636,'_wp_attached_file','2015/08/DSC_0743.jpg'),(6486,3636,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0743.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0743-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:\"DSC_0743-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0743-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0743-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0743-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0743-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0743-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0743-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0743-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0743-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6487,3637,'_wp_attached_file','2015/08/DSC_0744.jpg'),(6488,3637,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0744.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0744-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:\"DSC_0744-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0744-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0744-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0744-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0744-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0744-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0744-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0744-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0744-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6489,3638,'_wp_attached_file','2015/08/DSC_0746.jpg'),(6490,3638,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0746.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0746-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:\"DSC_0746-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0746-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0746-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0746-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0746-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0746-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0746-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0746-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0746-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6491,3639,'_wp_attached_file','2015/08/DSC_0750.jpg'),(6492,3639,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0750.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0750-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:\"DSC_0750-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0750-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0750-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0750-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0750-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0750-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0750-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0750-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0750-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6493,3640,'_wp_attached_file','2015/08/DSC_0751.jpg'),(6494,3640,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0751.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0751-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:\"DSC_0751-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0751-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0751-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0751-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0751-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0751-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0751-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0751-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0751-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6495,3641,'_wp_attached_file','2015/08/DSC_0755.jpg'),(6496,3641,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0755.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0755-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:\"DSC_0755-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0755-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0755-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0755-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0755-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0755-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0755-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0755-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0755-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6497,3642,'_wp_attached_file','2015/08/DSC_0756.jpg'),(6498,3642,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0756.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0756-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:\"DSC_0756-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0756-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0756-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0756-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0756-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0756-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0756-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0756-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0756-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6499,3643,'_wp_attached_file','2015/08/DSC_0760.jpg'),(6500,3643,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0760.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0760-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:\"DSC_0760-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0760-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0760-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0760-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0760-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0760-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0760-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0760-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0760-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6501,3644,'_wp_attached_file','2015/08/DSC_0763.jpg'),(6502,3644,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0763.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0763-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:\"DSC_0763-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0763-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0763-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0763-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0763-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0763-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0763-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0763-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0763-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6503,3645,'_wp_attached_file','2015/08/DSC_0765.jpg'),(6504,3645,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0765.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0765-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:\"DSC_0765-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0765-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0765-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0765-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0765-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0765-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0765-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0765-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0765-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6505,3646,'_wp_attached_file','2015/08/DSC_0766.jpg'),(6506,3646,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0766.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0766-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:\"DSC_0766-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0766-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0766-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0766-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0766-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0766-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0766-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0766-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0766-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6507,3647,'_wp_attached_file','2015/08/DSC_0767.jpg'),(6508,3647,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0767.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0767-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:\"DSC_0767-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0767-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0767-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0767-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0767-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0767-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0767-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0767-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0767-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6509,3648,'_wp_attached_file','2015/08/DSC_0774.jpg'),(6510,3648,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0774.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0774-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:\"DSC_0774-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0774-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0774-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0774-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0774-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0774-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0774-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0774-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0774-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6511,3649,'_wp_attached_file','2015/08/DSC_0780.jpg'),(6512,3649,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0780.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0780-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:\"DSC_0780-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0780-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0780-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0780-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0780-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0780-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0780-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0780-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0780-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6513,3650,'_wp_attached_file','2015/08/DSC_0781.jpg'),(6514,3650,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0781.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0781-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:\"DSC_0781-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0781-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0781-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0781-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0781-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0781-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0781-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0781-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0781-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6515,3651,'_wp_attached_file','2015/08/DSC_0789.jpg'),(6516,3651,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0789.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0789-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:\"DSC_0789-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0789-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0789-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0789-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0789-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0789-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0789-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0789-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0789-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6517,3652,'_wp_attached_file','2015/08/DSC_0792.jpg'),(6518,3652,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0792.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0792-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:\"DSC_0792-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0792-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0792-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0792-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0792-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0792-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0792-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0792-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0792-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6519,3653,'_wp_attached_file','2015/08/DSC_0793.jpg'),(6520,3653,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0793.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0793-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:\"DSC_0793-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0793-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0793-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0793-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0793-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0793-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0793-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0793-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0793-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6521,3654,'_wp_attached_file','2015/08/DSC_0795.jpg'),(6522,3654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1068;s:6:\"height\";i:1608;s:4:\"file\";s:20:\"2015/08/DSC_0795.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0795-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:\"DSC_0795-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0795-680x1024.jpg\";s:5:\"width\";i:680;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0795-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0795-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0795-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0795-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0795-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0795-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0795-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6523,3655,'_wp_attached_file','2015/08/DSC_0805.jpg'),(6524,3655,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0805.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0805-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:\"DSC_0805-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0805-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0805-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0805-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0805-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0805-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0805-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0805-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0805-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6525,3656,'_wp_attached_file','2015/08/DSC_0812.jpg'),(6526,3656,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0812.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0812-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:\"DSC_0812-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0812-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0812-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0812-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0812-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0812-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0812-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0812-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0812-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6527,3657,'_wp_attached_file','2015/08/DSC_0819.jpg'),(6528,3657,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0819.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0819-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:\"DSC_0819-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0819-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0819-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0819-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0819-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0819-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0819-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0819-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0819-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6529,3658,'_wp_attached_file','2015/08/DSC_0820.jpg'),(6530,3658,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0820.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0820-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:\"DSC_0820-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0820-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0820-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0820-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0820-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0820-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0820-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0820-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0820-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6531,3659,'_wp_attached_file','2015/08/DSC_0821.jpg'),(6532,3659,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0821.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0821-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:\"DSC_0821-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0821-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0821-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0821-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0821-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0821-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0821-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0821-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0821-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6533,3660,'_wp_attached_file','2015/08/DSC_0823.jpg'),(6534,3660,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0823.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0823-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:\"DSC_0823-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0823-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0823-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0823-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0823-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0823-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0823-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0823-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0823-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6535,3661,'_wp_attached_file','2015/08/DSC_0824.jpg'),(6536,3661,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0824.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0824-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:\"DSC_0824-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0824-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0824-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0824-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0824-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0824-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0824-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0824-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0824-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6537,3662,'_wp_attached_file','2015/08/DSC_0825.jpg'),(6538,3662,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0825.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0825-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:\"DSC_0825-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0825-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0825-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0825-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0825-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0825-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0825-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0825-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0825-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6539,3663,'_wp_attached_file','2015/08/DSC_0826.jpg'),(6540,3663,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0826.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0826-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:\"DSC_0826-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0826-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0826-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0826-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0826-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0826-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0826-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0826-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0826-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6541,3664,'_wp_attached_file','2015/08/DSC_0827.jpg'),(6542,3664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0827.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0827-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:\"DSC_0827-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0827-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0827-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0827-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0827-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0827-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0827-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0827-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0827-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6543,3665,'_wp_attached_file','2015/08/DSC_0828.jpg'),(6544,3665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0828.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0828-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:\"DSC_0828-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0828-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0828-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0828-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0828-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0828-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0828-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0828-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0828-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6545,3666,'_wp_attached_file','2015/08/DSC_0830.jpg'),(6546,3666,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0830.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0830-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:\"DSC_0830-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0830-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0830-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0830-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0830-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0830-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0830-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0830-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0830-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6547,3667,'_wp_attached_file','2015/08/DSC_0832.jpg'),(6548,3667,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0832.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0832-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:\"DSC_0832-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0832-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0832-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0832-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0832-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0832-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0832-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0832-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0832-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6549,3668,'_wp_attached_file','2015/08/DSC_0834.jpg'),(6550,3668,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0834.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0834-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:\"DSC_0834-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0834-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0834-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0834-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0834-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0834-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0834-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0834-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0834-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6551,3669,'_wp_attached_file','2015/08/DSC_0835.jpg'),(6552,3669,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0835.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0835-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:\"DSC_0835-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0835-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0835-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0835-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0835-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0835-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0835-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0835-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0835-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6553,3670,'_wp_attached_file','2015/08/DSC_0836.jpg'),(6554,3670,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0836.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0836-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:\"DSC_0836-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0836-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0836-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0836-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0836-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0836-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0836-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0836-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0836-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6555,3671,'_wp_attached_file','2015/08/DSC_0839.jpg'),(6556,3671,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0839.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0839-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:\"DSC_0839-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0839-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0839-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0839-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0839-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0839-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0839-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0839-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0839-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6557,3672,'_wp_attached_file','2015/08/DSC_0840.jpg'),(6558,3672,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0840.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0840-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:\"DSC_0840-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0840-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0840-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0840-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0840-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0840-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0840-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0840-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0840-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6559,3673,'_wp_attached_file','2015/08/DSC_0848.jpg'),(6560,3673,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0848.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0848-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:\"DSC_0848-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0848-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0848-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0848-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0848-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0848-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0848-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0848-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0848-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6561,3674,'_wp_attached_file','2015/08/DSC_0849.jpg'),(6562,3674,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0849.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0849-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:\"DSC_0849-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0849-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0849-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0849-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0849-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0849-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0849-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0849-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0849-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6563,3675,'_wp_attached_file','2015/08/DSC_0850.jpg'),(6564,3675,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0850.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0850-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:\"DSC_0850-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0850-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0850-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0850-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0850-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0850-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0850-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0850-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0850-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6565,3676,'_wp_attached_file','2015/08/DSC_0851.jpg'),(6566,3676,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0851.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0851-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:\"DSC_0851-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0851-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0851-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0851-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0851-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0851-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0851-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0851-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0851-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6567,3677,'_wp_attached_file','2015/08/DSC_0852.jpg'),(6568,3677,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0852.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0852-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:\"DSC_0852-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0852-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0852-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0852-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0852-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0852-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0852-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0852-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0852-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6569,3678,'_wp_attached_file','2015/08/DSC_0853.jpg'),(6570,3678,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1608;s:6:\"height\";i:1068;s:4:\"file\";s:20:\"2015/08/DSC_0853.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0853-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:\"DSC_0853-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_0853-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:18:\"DSC_0853-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:20:\"DSC_0853-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:20:\"DSC_0853-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:21:\"DSC_0853-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:20:\"DSC_0853-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:21:\"DSC_0853-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:22:\"DSC_0853-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6571,3679,'_wp_attached_file','2015/08/15th-Anni-Dinner-A-web.jpg'),(6572,3679,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1689;s:4:\"file\";s:34:\"2015/08/15th-Anni-Dinner-A-web.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"15th-Anni-Dinner-A-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"15th-Anni-Dinner-A-web-213x300.jpg\";s:5:\"width\";i:213;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"15th-Anni-Dinner-A-web-728x1024.jpg\";s:5:\"width\";i:728;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:32:\"15th-Anni-Dinner-A-web-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:34:\"15th-Anni-Dinner-A-web-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:34:\"15th-Anni-Dinner-A-web-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:35:\"15th-Anni-Dinner-A-web-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:34:\"15th-Anni-Dinner-A-web-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:35:\"15th-Anni-Dinner-A-web-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:36:\"15th-Anni-Dinner-A-web-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:5:\"Print\";s:11:\"orientation\";i:0;}}'),(6573,3680,'_wp_attached_file','2015/08/15th-Anni-banner-WEB.jpg'),(6574,3680,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1830;s:6:\"height\";i:1112;s:4:\"file\";s:32:\"2015/08/15th-Anni-banner-WEB.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"15th-Anni-banner-WEB-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"15th-Anni-banner-WEB-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"15th-Anni-banner-WEB-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:30:\"15th-Anni-banner-WEB-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:32:\"15th-Anni-banner-WEB-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:32:\"15th-Anni-banner-WEB-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:33:\"15th-Anni-banner-WEB-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:32:\"15th-Anni-banner-WEB-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:33:\"15th-Anni-banner-WEB-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:34:\"15th-Anni-banner-WEB-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:5:\"Print\";s:11:\"orientation\";i:0;}}'),(6575,3681,'_wp_attached_file','2015/08/MPD2015-News_S.jpg'),(6576,3681,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3216;s:6:\"height\";i:1557;s:4:\"file\";s:26:\"2015/08/MPD2015-News_S.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"MPD2015-News_S-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"MPD2015-News_S-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"MPD2015-News_S-1024x496.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:24:\"MPD2015-News_S-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:26:\"MPD2015-News_S-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:26:\"MPD2015-News_S-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:27:\"MPD2015-News_S-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:26:\"MPD2015-News_S-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:27:\"MPD2015-News_S-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:28:\"MPD2015-News_S-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1408651681;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6578,3568,'_thumbnail_id','3679'),(6579,3682,'_wp_attached_file','2015/07/Screenshot_2015-08-31-09-43-231.jpg'),(6580,3682,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1063;s:6:\"height\";i:1686;s:4:\"file\";s:43:\"2015/07/Screenshot_2015-08-31-09-43-231.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Screenshot_2015-08-31-09-43-231-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Screenshot_2015-08-31-09-43-231-189x300.jpg\";s:5:\"width\";i:189;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Screenshot_2015-08-31-09-43-231-646x1024.jpg\";s:5:\"width\";i:646;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:41:\"Screenshot_2015-08-31-09-43-231-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:43:\"Screenshot_2015-08-31-09-43-231-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:43:\"Screenshot_2015-08-31-09-43-231-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:44:\"Screenshot_2015-08-31-09-43-231-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:43:\"Screenshot_2015-08-31-09-43-231-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:44:\"Screenshot_2015-08-31-09-43-231-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:45:\"Screenshot_2015-08-31-09-43-231-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6581,3682,'_edit_lock','1441010225:1'),(6582,3683,'_wp_attached_file','2015/07/Screenshot_2015-08-31-09-43-2311.jpg'),(6583,3683,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1063;s:6:\"height\";i:1686;s:4:\"file\";s:44:\"2015/07/Screenshot_2015-08-31-09-43-2311.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Screenshot_2015-08-31-09-43-2311-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Screenshot_2015-08-31-09-43-2311-189x300.jpg\";s:5:\"width\";i:189;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Screenshot_2015-08-31-09-43-2311-646x1024.jpg\";s:5:\"width\";i:646;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:42:\"Screenshot_2015-08-31-09-43-2311-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:44:\"Screenshot_2015-08-31-09-43-2311-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:44:\"Screenshot_2015-08-31-09-43-2311-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:45:\"Screenshot_2015-08-31-09-43-2311-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:44:\"Screenshot_2015-08-31-09-43-2311-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:45:\"Screenshot_2015-08-31-09-43-2311-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:46:\"Screenshot_2015-08-31-09-43-2311-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6584,3683,'_edit_lock','1441010901:1'),(6627,3688,'_edit_last','1'),(6628,3688,'_nectar_slider_bg_type','image_bg'),(6629,3688,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2016/09/KGM_Banner-72x120-inch-2016_Web.jpg'),(6630,3688,'_nectar_media_upload_webm',''),(6631,3688,'_nectar_media_upload_mp4',''),(6632,3688,'_nectar_media_upload_ogv',''),(6633,3688,'_nectar_slider_preview_image',''),(6634,3688,'_nectar_slider_video_texture','off'),(6635,3688,'_nectar_slider_slide_bg_alignment','center'),(6636,3688,'_nectar_slider_slide_font_color','light'),(6637,3688,'_nectar_slider_heading',''),(6638,3688,'_nectar_slider_caption',''),(6639,3688,'_nectar_slider_caption_background','off'),(6640,3688,'_nectar_slider_down_arrow','off'),(6641,3688,'_nectar_slider_link_type','full_slide_link'),(6642,3688,'_nectar_slider_button',''),(6643,3688,'_nectar_slider_button_url',''),(6644,3688,'_nectar_slider_button_style','solid_color'),(6645,3688,'_nectar_slider_button_color','primary-color'),(6646,3688,'_nectar_slider_button_2',''),(6647,3688,'_nectar_slider_button_url_2',''),(6648,3688,'_nectar_slider_button_style_2','solid_color'),(6649,3688,'_nectar_slider_button_color_2','primary-color'),(6650,3688,'_nectar_slider_entire_link',''),(6651,3688,'_nectar_slider_video_popup',''),(6652,3688,'_nectar_slide_xpos_alignment','centered'),(6653,3688,'_nectar_slide_ypos_alignment','middle'),(6654,3688,'_nectar_slider_slide_custom_class',''),(6655,3688,'_edit_lock','1474812915:1'),(6660,3690,'_wp_attached_file','2015/09/KGM_Banner-72x120-inch-2015.jpg'),(6661,3691,'_wp_attached_file','2015/09/KGM_Banner_2015_PYC-web.jpg'),(6662,3691,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1333;s:6:\"height\";i:533;s:4:\"file\";s:35:\"2015/09/KGM_Banner_2015_PYC-web.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"KGM_Banner_2015_PYC-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"KGM_Banner_2015_PYC-web-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"KGM_Banner_2015_PYC-web-1024x409.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:409;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:33:\"KGM_Banner_2015_PYC-web-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:35:\"KGM_Banner_2015_PYC-web-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:35:\"KGM_Banner_2015_PYC-web-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:36:\"KGM_Banner_2015_PYC-web-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:35:\"KGM_Banner_2015_PYC-web-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:35:\"KGM_Banner_2015_PYC-web-500x533.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:36:\"KGM_Banner_2015_PYC-web-1000x533.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6663,3692,'_wp_attached_file','2015/07/KGM-hockey_-2015-PB_web.jpg'),(6664,3692,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1169;s:6:\"height\";i:1654;s:4:\"file\";s:35:\"2015/07/KGM-hockey_-2015-PB_web.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"KGM-hockey_-2015-PB_web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"KGM-hockey_-2015-PB_web-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"KGM-hockey_-2015-PB_web-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:33:\"KGM-hockey_-2015-PB_web-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:35:\"KGM-hockey_-2015-PB_web-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:35:\"KGM-hockey_-2015-PB_web-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:36:\"KGM-hockey_-2015-PB_web-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:35:\"KGM-hockey_-2015-PB_web-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:36:\"KGM-hockey_-2015-PB_web-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:37:\"KGM-hockey_-2015-PB_web-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6665,2662,'_oembed_54693f011ce11db7fb6a8a19e6f63ab7','<iframe width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/QajQak8uOgU?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(6666,2662,'_oembed_time_54693f011ce11db7fb6a8a19e6f63ab7','1442820133'),(6667,3695,'_menu_item_type','post_type'),(6668,3695,'_menu_item_menu_item_parent','0'),(6669,3695,'_menu_item_object_id','2662'),(6670,3695,'_menu_item_object','page'),(6671,3695,'_menu_item_target',''),(6672,3695,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6673,3695,'_menu_item_xfn',''),(6674,3695,'_menu_item_url',''),(6676,3696,'_edit_last','1'),(6677,3696,'_edit_lock','1496142207:2'),(6680,3696,'_wpb_vc_js_status','true'),(6681,3696,'_wpb_vc_js_interface_version','2'),(6682,3696,'_nectar_gallery_slider','off'),(6683,3696,'_nectar_quote',''),(6684,3696,'_nectar_link',''),(6685,3696,'_nectar_video_m4v',''),(6686,3696,'_nectar_video_ogv',''),(6687,3696,'_nectar_video_poster',''),(6688,3696,'_nectar_video_embed',''),(6689,3696,'_nectar_audio_mp3',''),(6690,3696,'_nectar_audio_ogg',''),(6691,3696,'_nectar_header_bg',''),(6692,3696,'_nectar_header_parallax','off'),(6693,3696,'_nectar_header_bg_height',''),(6694,3696,'_nectar_header_bg_color',''),(6695,3696,'_nectar_header_font_color',''),(6696,3696,'_disable_transparent_header','off'),(6703,3696,'_nectar_love','1'),(6704,3696,'_oembed_54693f011ce11db7fb6a8a19e6f63ab7','<iframe width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/QajQak8uOgU?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(6705,3696,'_oembed_time_54693f011ce11db7fb6a8a19e6f63ab7','1442821037'),(6706,3406,'enclosure','http://punjabyouthclub.com/wp-content/uploads/2015/07/colour_in_harmony.mp4\n6202535\nvideo/mp4\n'),(6707,3406,'enclosure','http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra2.mp4\n1538907\nvideo/mp4\n'),(6708,3406,'enclosure','http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra1.mp4\n2037708\nvideo/mp4\n'),(6715,3696,'_oembed_c78c7fb2c844c1d30a3d2a6c499c8fa6','<iframe width=\"660\" height=\"371\" src=\"https://www.youtube.com/embed/QajQak8uOgU?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(6716,3696,'_oembed_time_c78c7fb2c844c1d30a3d2a6c499c8fa6','1469453404'),(6717,2662,'_oembed_c78c7fb2c844c1d30a3d2a6c499c8fa6','<iframe width=\"660\" height=\"371\" src=\"https://www.youtube.com/embed/QajQak8uOgU?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(6718,2662,'_oembed_time_c78c7fb2c844c1d30a3d2a6c499c8fa6','1469609186'),(6721,3701,'_edit_last','1'),(6722,3701,'_edit_lock','1471966101:1'),(6723,3701,'_wp_page_template','default'),(6724,3701,'_wpb_vc_js_status','false'),(6725,3701,'_wpb_vc_js_interface_version','2'),(6726,3701,'nectar-metabox-portfolio-display','a:1:{i:0;s:3:\"all\";}'),(6727,3701,'nectar-metabox-portfolio-display-sortable','off'),(6728,3701,'_nectar_header_bg',''),(6729,3701,'_nectar_header_parallax','off'),(6730,3701,'_nectar_header_bg_height',''),(6731,3701,'_nectar_header_title',''),(6732,3701,'_nectar_header_subtitle',''),(6733,3701,'_nectar_page_header_alignment','left'),(6734,3701,'_nectar_header_bg_color',''),(6735,3701,'_nectar_header_font_color',''),(6736,3701,'_disable_transparent_header','off'),(6737,3701,'_force_transparent_header','off'),(6740,2744,'_nectar_slider_bg_type','image_bg'),(6741,2744,'_nectar_canvas_shapes',''),(6742,2744,'_nectar_media_upload_webm',''),(6743,2744,'_nectar_media_upload_mp4',''),(6744,2744,'_nectar_media_upload_ogv',''),(6745,2744,'_nectar_slider_preview_image',''),(6746,2744,'_nectar_header_box_roll','off'),(6747,2744,'_nectar_header_fullscreen','off'),(6748,2744,'_nectar_page_header_text-effect','none'),(6749,2744,'_nectar_particle_rotation_timing',''),(6750,2744,'_nectar_particle_disable_explosion','off'),(6751,2744,'_nectar_page_header_alignment_v','middle'),(6752,2744,'_nectar_page_header_bg_alignment','center'),(6753,3696,'_oembed_0f8501175dcb2aaf4abff12e55e71105','<iframe width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/QajQak8uOgU?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(6754,3696,'_oembed_time_0f8501175dcb2aaf4abff12e55e71105','1472370573'),(6755,2662,'_oembed_0f8501175dcb2aaf4abff12e55e71105','<iframe width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/QajQak8uOgU?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(6756,2662,'_oembed_time_0f8501175dcb2aaf4abff12e55e71105','1472370829'),(6758,1851,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6760,2744,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6761,3707,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6762,3708,'_wp_attached_file','2016/09/KGM_Banner_2015_PYC-web_CG.jpg'),(6763,3708,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:480;s:4:\"file\";s:38:\"2016/09/KGM_Banner_2015_PYC-web_CG.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"KGM_Banner_2015_PYC-web_CG-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"KGM_Banner_2015_PYC-web_CG-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"KGM_Banner_2015_PYC-web_CG-768x307.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"KGM_Banner_2015_PYC-web_CG-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:36:\"KGM_Banner_2015_PYC-web_CG-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:38:\"KGM_Banner_2015_PYC-web_CG-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:38:\"KGM_Banner_2015_PYC-web_CG-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:39:\"KGM_Banner_2015_PYC-web_CG-1000x480.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:38:\"KGM_Banner_2015_PYC-web_CG-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:38:\"KGM_Banner_2015_PYC-web_CG-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:39:\"KGM_Banner_2015_PYC-web_CG-1000x480.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(6764,3709,'_wp_attached_file','2016/09/KGM_Banner_2015_PYC-web_CG-1.jpg'),(6765,3709,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:400;s:4:\"file\";s:40:\"2016/09/KGM_Banner_2015_PYC-web_CG-1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"KGM_Banner_2015_PYC-web_CG-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"KGM_Banner_2015_PYC-web_CG-1-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"KGM_Banner_2015_PYC-web_CG-1-768x307.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:38:\"KGM_Banner_2015_PYC-web_CG-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:40:\"KGM_Banner_2015_PYC-web_CG-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:40:\"KGM_Banner_2015_PYC-web_CG-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:41:\"KGM_Banner_2015_PYC-web_CG-1-1000x400.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:40:\"KGM_Banner_2015_PYC-web_CG-1-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:40:\"KGM_Banner_2015_PYC-web_CG-1-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:41:\"KGM_Banner_2015_PYC-web_CG-1-1000x400.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(6766,3707,'_edit_last','1'),(6767,3707,'_nectar_slider_bg_type','image_bg'),(6768,3707,'_nectar_slider_image','http://punjabyouthclub.com/wp-content/uploads/2016/09/KGM_Banner_2015_PYC-web_CG.jpg'),(6769,3707,'_nectar_media_upload_webm',''),(6770,3707,'_nectar_media_upload_mp4',''),(6771,3707,'_nectar_media_upload_ogv',''),(6772,3707,'_nectar_slider_preview_image',''),(6773,3707,'_nectar_slider_video_texture','off'),(6774,3707,'_nectar_slider_slide_bg_alignment','center'),(6775,3707,'_nectar_slider_slide_font_color','light'),(6776,3707,'_nectar_slider_heading','Consulate General of India Mr. Agrawal '),(6777,3707,'_nectar_slider_caption','Opening of KGM Tournament 2015'),(6778,3707,'_nectar_slider_caption_background','off'),(6779,3707,'_nectar_slider_down_arrow','off'),(6780,3707,'_nectar_slider_link_type','button_links'),(6781,3707,'_nectar_slider_button',''),(6782,3707,'_nectar_slider_button_url',''),(6783,3707,'_nectar_slider_button_style','solid_color'),(6784,3707,'_nectar_slider_button_color','primary-color'),(6785,3707,'_nectar_slider_button_2',''),(6786,3707,'_nectar_slider_button_url_2',''),(6787,3707,'_nectar_slider_button_style_2','solid_color'),(6788,3707,'_nectar_slider_button_color_2','primary-color'),(6789,3707,'_nectar_slider_entire_link',''),(6790,3707,'_nectar_slider_video_popup',''),(6791,3707,'_nectar_slide_xpos_alignment','centered'),(6792,3707,'_nectar_slide_ypos_alignment','bottom'),(6793,3707,'_nectar_slider_slide_custom_class',''),(6794,3707,'_edit_lock','1474812806:1'),(6795,3710,'_wp_attached_file','2016/09/KGM_Banner-72x120-inch-2016_Web.jpg'),(6796,3710,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:479;s:4:\"file\";s:43:\"2016/09/KGM_Banner-72x120-inch-2016_Web.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"KGM_Banner-72x120-inch-2016_Web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"KGM_Banner-72x120-inch-2016_Web-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"KGM_Banner-72x120-inch-2016_Web-768x307.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"KGM_Banner-72x120-inch-2016_Web-1024x409.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:409;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"blog-widget\";a:4:{s:4:\"file\";s:41:\"KGM_Banner-72x120-inch-2016_Web-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-thumb\";a:4:{s:4:\"file\";s:43:\"KGM_Banner-72x120-inch-2016_Web-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-widget\";a:4:{s:4:\"file\";s:43:\"KGM_Banner-72x120-inch-2016_Web-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"wide\";a:4:{s:4:\"file\";s:44:\"KGM_Banner-72x120-inch-2016_Web-1000x479.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"regular\";a:4:{s:4:\"file\";s:43:\"KGM_Banner-72x120-inch-2016_Web-500x479.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"tall\";a:4:{s:4:\"file\";s:43:\"KGM_Banner-72x120-inch-2016_Web-500x479.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"wide_tall\";a:4:{s:4:\"file\";s:44:\"KGM_Banner-72x120-inch-2016_Web-1000x479.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(6797,3688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6798,3377,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6799,3696,'_oembed_c3779c53ff3aa07e88d7eb691f79373b','<iframe width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/QajQak8uOgU?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(6800,3696,'_oembed_time_c3779c53ff3aa07e88d7eb691f79373b','1487273892'),(6801,2662,'_oembed_c3779c53ff3aa07e88d7eb691f79373b','<iframe width=\"1080\" height=\"608\" src=\"https://www.youtube.com/embed/QajQak8uOgU?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(6802,2662,'_oembed_time_c3779c53ff3aa07e88d7eb691f79373b','1487431130'),(6803,3714,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6810,3718,'_wp_attached_file','2017/07/salient-7.0.9-k98lsaSzUYWX1heYRN8.zip'),(6811,3719,'_wp_attached_file','2017/07/includes.php'),(6812,3719,'_wp_attachment_context','upgrader'),(6813,3719,'_nectar_love','0'),(6814,3719,'_oembed_410dbe62ad7baf56fac9f1949b74dbf1','{{unknown}}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` mediumtext COLLATE utf8mb4_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 utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=3720 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (2,2,'2015-07-10 02:30:49','2015-07-10 02:30:49','Hacked by SyntaxError','Hacked by SyntaxError','','publish','open','open','','Hacked-by-SyntaxError','','','2015-07-10 02:30:49','2015-07-10 02:30:49','',0,'http://punjabyouthclub.com/?page_id=2',0,'post','',1),(65,2,'2013-03-23 14:18:20','2013-03-23 14:18:20','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas id est sed lacus volutpat lobortis ac non mauris. Morbi id mi vitae sem aliquam luctus. Praesent placerat feugiat dapibus.','The Moose','','publish','closed','closed','','london-office','','','2013-03-23 14:18:20','2013-03-23 14:18:20','',0,'http://themenectar.com/demo/salient/?post_type=portfolio&amp;p=65',12,'portfolio','',0),(70,2,'2013-03-23 14:23:36','2013-03-23 14:23:36','Have your sidebar stick around on extended portfolio items!\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Proin eu diam lorem, id scelerisque sapien. In accumsan metus at magna vehicula placerat tempor varius ipsum.','Box - Ext. Content','','publish','closed','closed','','blackbox','','','2013-03-23 14:23:36','2013-03-23 14:23:36','',0,'http://themenectar.com/demo/salient/?post_type=portfolio&amp;p=70',10,'portfolio','',0),(72,2,'2013-03-23 14:25:17','2013-03-23 14:25:17','Illustration by <a href=\"http://www.julianburford.nl/\" target=\"_blank\">Julian Burford</a>\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas id est sed lacus volutpat lobortis ac non mauris. Morbi id mi vitae sem aliquam luctus. Praesent placerat feugiat dapibus. Nam sit amet odio in leo varius mollis a at ligula. Suspendisse elementum nibh eu felis aliquet pellentesque.','Flippin Bird','','publish','closed','closed','','flippin-the-bird','','','2013-03-23 14:25:17','2013-03-23 14:25:17','',0,'http://themenectar.com/demo/salient/?post_type=portfolio&amp;p=72',9,'portfolio','',0),(76,2,'2013-03-23 14:26:38','2013-03-23 14:26:38','Illustration by <a href=\"http://www.julianburford.nl/\" target=\"_blank\">Julian Burford</a>\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Placerat tempor varius ipsum. libero, non congue odio vulputate eu. Phasellus euismod magna ac est.','Merchant','','publish','closed','closed','','merchant','','','2013-03-23 14:26:38','2013-03-23 14:26:38','',0,'http://themenectar.com/demo/salient/?post_type=portfolio&amp;p=76',5,'portfolio','',0),(82,2,'2013-01-26 16:19:14','2013-01-26 16:19:14','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi vitae dui et nunc ornare vulputate non fringilla massa. Praesent sit amet erat sapien, auctor consectetur ligula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non ligula augue. Integer justo arcu, tempor eu venenatis non, sagittis nec lacus.  Morbi vitae dui et nunc ornare vulputate non fringilla massa. Praesent sit amet erat sapien, auctor consectetur ligula.','Nulla fringilla magna','','draft','open','open','','nulla-fringilla-magna','','','2015-07-13 08:00:43','2015-07-13 08:00:43','',0,'http://themenectar.com/demo/salient/?p=82',5,'post','',0),(84,2,'2013-03-17 16:40:53','2013-03-17 16:40:53','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi vitae dui et nunc ornare vulputate non fringilla massa. Praesent sit amet erat sapien, auctor consectetur ligula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non ligula augue. Praesent imperdiet magna at risus lobortis ac accumsan lorem ornare. In aliquam, sapien ac vehicula vestibulum, arcu magna aliquet velit,','Auctor consectetur ligula gravida','','draft','open','open','','auctor-consectetur-ligula','','','2015-07-13 07:59:36','2015-07-13 07:59:36','',0,'http://themenectar.com/demo/salient/?p=84',2,'post','',0),(108,2,'2013-01-04 17:19:25','2013-01-04 17:19:25','','Quisque sit amet sapien et lacus','','draft','open','open','','quisque-sit-amet-sapien-et-lacus','','','2015-07-13 08:01:24','2015-07-13 08:01:24','',0,'http://themenectar.com/demo/salient/?p=108',6,'post','',0),(137,2,'2012-12-29 17:59:15','2012-12-29 17:59:15','','The Sweetest WordPress Themes Around.','','draft','open','open','','premium-wordpress-themes-bursting-with-quality','','','2015-07-13 08:09:30','2015-07-13 08:09:30','',0,'http://themenectar.com/demo/salient/?p=137',7,'post','',0),(152,2,'2012-11-07 18:10:00','2012-11-07 18:10:00','<!--more-->\n\nPhasellus venenatis venenatis velit ut ultricies. Cras porta dignissim malesuada. Etiam auctor, justo et facilisis ultrices, justo mauris imperdiet ligula, vitae tincidunt justo quam fermentum nulla. Nunc interdum porta ligula, eu malesuada nunc tristique eu. Integer sed mi ac velit congue vulputate sed quis lacus. Fusce tellus sem, ultricies consequat porta at, ultrices in odio. Nullam a sapien vitae erat porta faucibus rhoncus eleifend dolor. Mauris semper rutrum ante a auctor. Nullam non arcu erat, vel sollicitudin felis. Nam erat nisl, mattis euismod lacinia at, tempus quis nunc.\n\nDonec luctus odio eget ipsum lacinia lacinia. Suspendisse porttitor laoreet sagittis. Nulla mi justo, auctor sed posuere sit amet, pretium ac metus. Nulla porta justo ac velit accumsan faucibus. In dignissim, orci nec ultricies elementum, erat mi tristique dui, a tristique ligula quam non est. Suspendisse mattis aliquet est, at tempor ipsum lacinia a. Cras enim sapien, dapibus sit amet iaculis sit amet, pharetra non diam. Curabitur sed nisi in metus eleifend fringilla. Aenean viverra sem in quam luctus eget gravida diam scelerisque.','Suspendisse vulputate diam','','draft','open','open','','suspendisse-vulputate-diam','','','2015-07-13 08:01:52','2015-07-13 08:01:52','',0,'http://themenectar.com/demo/salient/?p=152',15,'post','',0),(527,2,'2015-07-10 04:13:24','2015-07-10 04:13:24','','About','','publish','open','open','','about','','','2015-07-10 04:13:24','2015-07-10 04:13:24','',0,'http://punjabyouthclub.com/index.php/2015/07/10/about/',8,'nav_menu_item','',0),(528,2,'2015-07-10 04:13:24','2015-07-10 04:13:24','','Features','','publish','open','open','','features','','','2015-07-10 04:13:24','2015-07-10 04:13:24','',0,'http://punjabyouthclub.com/index.php/2015/07/10/features/',28,'nav_menu_item','',0),(529,2,'2015-07-10 04:13:25','2015-07-10 04:13:25','','Home','','publish','open','open','','home','','','2015-07-10 04:13:25','2015-07-10 04:13:25','',0,'http://punjabyouthclub.com/index.php/2015/07/10/home/',1,'nav_menu_item','',0),(530,2,'2015-07-10 04:13:25','2015-07-10 04:13:25','','Nectar Sliders','','publish','open','open','','nectar-sliders','','','2015-07-10 04:13:25','2015-07-10 04:13:25','',0,'http://punjabyouthclub.com/index.php/2015/07/10/nectar-sliders/',38,'nav_menu_item','',0),(531,2,'2015-07-10 04:13:25','2015-07-10 04:13:25','','Gorgeous Design','','publish','open','open','','gorgeous-design','','','2015-07-10 04:13:25','2015-07-10 04:13:25','',0,'http://punjabyouthclub.com/index.php/2015/07/10/gorgeous-design/',29,'nav_menu_item','',0),(532,2,'2015-07-10 04:13:26','2015-07-10 04:13:26','','Love At First Sight','','publish','open','open','','love-at-first-sight','','','2015-07-10 04:13:26','2015-07-10 04:13:26','',0,'http://punjabyouthclub.com/index.php/2015/07/10/love-at-first-sight/',30,'nav_menu_item','',0),(533,2,'2015-07-10 04:13:26','2015-07-10 04:13:26','','Full Width Slider','','publish','open','open','','full-width-slider','','','2015-07-10 04:13:26','2015-07-10 04:13:26','',0,'http://punjabyouthclub.com/index.php/2015/07/10/full-width-slider/',39,'nav_menu_item','',0),(534,2,'2015-07-10 04:13:27','2015-07-10 04:13:27','','Parallax Slider','','publish','open','open','','parallax-slider','','','2015-07-10 04:13:27','2015-07-10 04:13:27','',0,'http://punjabyouthclub.com/index.php/2015/07/10/parallax-slider/',40,'nav_menu_item','',0),(535,2,'2015-07-10 04:13:27','2015-07-10 04:13:27','','Video Backgrounds','','publish','open','open','','video-backgrounds','','','2015-07-10 04:13:27','2015-07-10 04:13:27','',0,'http://punjabyouthclub.com/index.php/2015/07/10/video-backgrounds/',41,'nav_menu_item','',0),(536,2,'2015-07-10 04:13:28','2015-07-10 04:13:28','','Robust Power','','publish','open','open','','robust-power','','','2015-07-10 04:13:28','2015-07-10 04:13:28','',0,'http://punjabyouthclub.com/index.php/2015/07/10/robust-power/',43,'nav_menu_item','',0),(537,2,'2015-07-10 04:13:29','2015-07-10 04:13:29','','Tell Your Story','','publish','open','open','','tell-your-story','','','2015-07-10 04:13:29','2015-07-10 04:13:29','',0,'http://punjabyouthclub.com/index.php/2015/07/10/tell-your-story/',32,'nav_menu_item','',0),(538,2,'2015-07-10 04:13:30','2015-07-10 04:13:30','','Show Off Your Work','','publish','open','open','','show-off-your-work','','','2015-07-10 04:13:30','2015-07-10 04:13:30','',0,'http://punjabyouthclub.com/index.php/2015/07/10/show-off-your-work/',31,'nav_menu_item','',0),(539,2,'2015-07-10 04:13:31','2015-07-10 04:13:31','','Multiple Instances','','publish','open','open','','multiple-instances','','','2015-07-10 04:13:31','2015-07-10 04:13:31','',0,'http://punjabyouthclub.com/index.php/2015/07/10/multiple-instances/',42,'nav_menu_item','',0),(540,2,'2015-07-10 04:13:32','2015-07-10 04:13:32','','Portfolio Columns','','publish','open','open','','portfolio-columns','','','2015-07-10 04:13:32','2015-07-10 04:13:32','',0,'http://punjabyouthclub.com/index.php/2015/07/10/portfolio-columns/',16,'nav_menu_item','',0),(541,2,'2015-07-10 04:13:32','2015-07-10 04:13:32','','Portfolio Fullwidth','','publish','open','open','','portfolio-fullwidth','','','2015-07-10 04:13:32','2015-07-10 04:13:32','',0,'http://punjabyouthclub.com/index.php/2015/07/10/portfolio-fullwidth/',22,'nav_menu_item','',0),(542,2,'2015-07-10 04:13:33','2015-07-10 04:13:33','','Portfolio','','publish','open','open','','portfolio','','','2015-07-10 04:13:33','2015-07-10 04:13:33','',0,'http://punjabyouthclub.com/index.php/2015/07/10/portfolio/',15,'nav_menu_item','',0),(543,2,'2015-07-10 04:13:33','2015-07-10 04:13:33','','Blog','','publish','open','open','','blog','','','2015-07-10 04:13:33','2015-07-10 04:13:33','',0,'http://punjabyouthclub.com/index.php/2015/07/10/blog/',48,'nav_menu_item','',0),(544,2,'2015-07-10 04:13:33','2015-07-10 04:13:33','','Pages','','publish','open','open','','pages','','','2015-07-10 04:13:33','2015-07-10 04:13:33','',0,'http://punjabyouthclub.com/index.php/2015/07/10/pages/',7,'nav_menu_item','',0),(559,2,'2012-12-08 13:55:44','2012-12-08 13:55:44','Vivamus risus mi, lobortis ut congue vitae, vestibulum vitae augue. Maecenas nunc odio, pulvinar id vulputate nec, porttitor at quam. Suspendisse vulputate diam eu leo bibendum feugiat.  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non ligula augue. Praesent imperdiet magna at risus lobortis ac accumsan lorem ornare Cras sed lobortis libero. Pellentesque arcu lacus, dignissim ut porta in, interdum vel risus. Curabitur non est purus. Ut adipiscing purus augue, quis elementum dolor convallis id.','Aenean laoreet tortor','','draft','open','open','','aenean-laoreet-tortor','','','2015-07-13 08:09:42','2015-07-13 08:09:42','',0,'http://themenectar.com/demo/salient/?p=559',10,'post','',0),(629,2,'2013-09-22 00:05:16','2013-09-22 00:05:16','','LowPoly Social','','publish','closed','closed','','geowolf-social','','','2013-09-22 00:05:16','2013-09-22 00:05:16','',0,'http://localhost/wordpress-3-6/?post_type=portfolio&amp;p=629',4,'portfolio','',0),(652,2,'2013-09-22 01:14:46','2013-09-22 01:14:46','','Auto Draft','','publish','closed','closed','','auto-draft-11','','','2015-07-10 14:55:18','2015-07-10 14:55:18','',0,'http://localhost/wordpress-3-6/?post_type=nectar_slider&#038;p=637',4,'nectar_slider','',0),(654,2,'2013-09-22 00:34:44','2013-09-22 00:34:44','','Mobile Weather App','','publish','closed','closed','','mobile-weather-app','','','2013-09-22 00:34:44','2013-09-22 00:34:44','',0,'http://localhost/wordpress-3-6/?post_type=portfolio&amp;p=632',6,'portfolio','',0),(672,2,'2013-11-10 22:23:39','2013-11-10 22:23:39','','Auto Draft','','publish','closed','closed','','auto-draft-2','','','2013-11-10 22:23:39','2013-11-10 22:23:39','',0,'http://localhost/wordpress-3-6/?post_type=nectar_slider&amp;p=672',3,'nectar_slider','',0),(743,2,'2015-07-07 09:43:19','2015-07-07 09:43:19','[vc_row][vc_column width=\"1/1\"][social_buttons full_width_icons=\"true\" facebook=\"true\" twitter=\"true\" google_plus=\"true\" linkedin=\"true\" pinterest=\"true\"][/vc_column][/vc_row][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"bhangra,dastar_mukabla,kavi-barbar,mahek-punjab-di,no_drugs\" layout=\"3\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','publish','closed','closed','','portfolio-fullwidth-default','','','2015-07-15 03:32:38','2015-07-15 03:32:38','',0,'http://localhost/wordpress-3-6/?page_id=743',25,'page','',0),(1239,2,'2013-01-09 04:31:39','2013-01-09 04:31:39','Quisque porta ipsum quis neque elementum lacinia. Pellentesque ut risus rutrum, tristique lacus nec, mollis risus. Vestibulum mollis erat arcu, eu vehicula purus consequat nec. ','Velit feugiat porttito','','draft','open','open','','velit-feugiat-porttito','','','2015-07-13 08:01:00','2015-07-13 08:01:00','',0,'http://themenectar.com/demo/salient/?p=1239',9,'post','',0),(1242,2,'2012-11-05 04:36:53','2012-11-05 04:36:53','','Carl Sagan','','draft','open','open','','carl-sagan','','','2015-07-13 08:02:22','2015-07-13 08:02:22','',0,'http://themenectar.com/demo/salient/?p=1242',3,'post','',0),(1247,2,'2012-12-09 04:43:27','2012-12-09 04:43:27','Cras sed lobortis libero. Pellentesque arcu lacus, dignissim ut porta in, interdum vel risus. Curabitur non est purus. Ut adipiscing purus augue, quis elementum dolor convallis id. Duis vitae sodales massa, et pharetra massa. Phasellus consectetur neque non ante ultricies rhoncus. <!--more-->Nunc eu auctor enim. Cras in risus eu velit feugiat porttitor ut non risus. Nulla vel est diam. Proin commodo ligula eu elit porta, non viverra justo ullamcorper. Curabitur at tellus erat. Vivamus tincidunt congue felis, aliquam fringilla nunc bibendum laoreet. Fusce fermentum posuere tincidunt.\n\nQuisque porta ipsum quis neque elementum lacinia. Pellentesque ut risus rutrum, tristique lacus nec, mollis risus. Vestibulum mollis erat arcu, eu vehicula purus consequat nec. Nulla turpis leo, aliquet id risus ut, volutpat tincidunt justo. Maecenas faucibus, est id gravida bibendum, nisl leo pulvinar eros, vel luctus nisi justo at dui. Nulla ultrices nulla id ultricies dignissim. Fusce id viverra massa, vitae congue eros. Fusce mi neque, sagittis eu dapibus ac, sodales nec est. Fusce a tempor justo. Donec pellentesque consectetur nunc consequat commodo. Nulla facilisi. Quisque id tellus urna. Aliquam lacinia velit ut convallis posuere.','Nullam blandit venenatis lectus','','draft','open','open','','nullam-blandit-venenatis-lectus','','','2015-07-13 08:01:40','2015-07-13 08:01:40','',0,'http://themenectar.com/demo/salient/?p=1247',8,'post','',0),(1251,2,'2012-11-06 04:47:29','2012-11-06 04:47:29','Quisque luctus nec sem quis vestibulum. Sed neque est, ornare eu laoreet in, molestie vitae augue.  <!--more--> Donec porta eros sit amet consequat bibendum. Duis sit amet augue urna. Aliquam a vulputate neque, sit amet pretium sapien. Suspendisse sagittis odio id lacus dignissim, in auctor felis rutrum.\n\nCras sed lobortis libero. Pellentesque arcu lacus, dignissim ut porta in, interdum vel risus. Curabitur non est purus. Ut adipiscing purus augue, quis elementum dolor convallis id. Duis vitae sodales massa, et pharetra massa. Phasellus consectetur neque non ante ultricies rhoncus. Fusce ac rhoncus lorem. Vivamus molestie erat metus, at aliquam ipsum ornare sed. Nunc eu auctor enim. Cras in risus eu velit feugiat porttitor ut non risus. Nulla vel est diam. Proin commodo ligula eu elit porta, non viverra justo ullamcorper. Curabitur at tellus erat. Vivamus tincidunt congue felis, aliquam fringilla nunc bibendum laoreet. Fusce fermentum posuere tincidunt.','Facilisis Elementum','','draft','open','open','','facilisis-nulla-eget','','','2015-07-13 08:02:10','2015-07-13 08:02:10','',0,'http://themenectar.com/demo/salient/?p=1251',13,'post','',0),(1829,2,'2014-03-30 05:39:58','2014-03-30 05:39:58','','One More Beer','','publish','closed','closed','','one-more-beer','','','2014-03-30 05:39:58','2014-03-30 05:39:58','',0,'http://themenectar.com/demo/salient-frostwave/?post_type=portfolio&amp;p=1829',7,'portfolio','',0),(1832,2,'2014-03-30 05:45:36','2014-03-30 05:45:36','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin eu diam lorem, id scelerisque sapien. In accumsan metus at magna vehicula placerat tempor varius ipsum.','Mountain Drift','','publish','closed','closed','','mountain-drift','','','2014-03-30 05:45:36','2014-03-30 05:45:36','',0,'http://themenectar.com/demo/salient-frostwave/?post_type=portfolio&amp;p=1832',8,'portfolio','',0),(1835,2,'2014-03-30 05:47:54','2014-03-30 05:47:54','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin eu diam lorem, id scelerisque sapien. In accumsan metus at magna vehicula placerat tempor varius ipsum. libero, non congue odio vulputate eu. Phasellus euismod magna ac est.','Table Rocket','','publish','closed','closed','','table-rocket','','','2014-03-30 05:47:54','2014-03-30 05:47:54','',0,'http://themenectar.com/demo/salient-frostwave/?post_type=portfolio&amp;p=1835',3,'portfolio','',0),(1838,2,'2014-03-30 05:52:39','2014-03-30 05:52:39','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin eu diam lorem, id scelerisque sapien. In accumsan metus at magna vehicula placerat tempor varius ipsum.','Ownage','','publish','closed','closed','','ownage','','','2014-03-30 05:52:39','2014-03-30 05:52:39','',0,'http://themenectar.com/demo/salient-frostwave/?post_type=portfolio&amp;p=1838',2,'portfolio','',0),(1851,2,'2015-07-15 06:18:01','2015-07-15 06:18:01','&nbsp;\r\n\r\n&nbsp;','Mahek Punjab Di 2007','','draft','open','closed','','spacebound-2','','','2016-09-07 23:46:06','2016-09-07 23:46:06','',0,'http://themenectar.com/demo/salient-frostwave/?post_type=portfolio&#038;p=1851',1,'portfolio','',0),(2057,2,'2014-03-30 22:31:18','2014-03-30 22:31:18','','Auto Draft','','publish','closed','closed','','auto-draft-15','','','2014-03-30 22:31:18','2014-03-30 22:31:18','',0,'http://themenectar.com/demo/salient-frostwave/?post_type=nectar_slider&amp;p=2057',1,'nectar_slider','',0),(2327,2,'2013-03-06 14:18:41','2013-03-06 14:18:41','','Ambrose Redmoon','','draft','open','open','','ambrose-redmoon-2','','','2015-07-13 08:00:33','2015-07-13 08:00:33','',0,'http://themenectar.com/demo/salient/?p=106',14,'post','',0),(2328,2,'2013-01-21 17:45:17','2013-01-21 17:45:17','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent ullamcorper suscipit mi, id convallis risus ullamcorper eget. Curabitur ultricies elit lacinia arcu ullamcorper adipiscing. Integer velit dui, gravida semper commodo vel <!--more-->\n\n<h4>Illustration by <a href=\"http://www.julianburford.nl/\" target=\"_blank\">Julian Burford</a></h4>\n\nNunc interdum porta ligula, eu malesuada nunc tristique eu. Integer sed mi ac velit congue vulputate sed quis lacus. Fusce tellus sem, ultricies consequat porta at, ultrices in odio. Nullam a sapien vitae erat porta faucibus rhoncus eleifend dolor. Mauris semper rutrum ante a auctor. Nullam non arcu erat, vel sollicitudin felis. Nam erat nisl, mattis euismod lacinia at, tempus quis nunc.\n\nQuisque at dolor venenatis justo fringilla dignissim ut id eros. Quisque non elit id purus feugiat vestibulum. Phasellus eget sodales neque. Morbi eget odio nec justo consequat gravida. Phasellus dolor nisl, venenatis eget euismod et, dapibus et purus. Maecenas interdum nisi a dolor facilisis eu laoreet mi facilisis. Mauris pharetra interdum lorem eu venenatis. Praesent est diam, fringilla in hendrerit vel, ullamcorper et mauris. Vivamus risus mi, lobortis ut congue vitae, vestibulum vitae augue. Maecenas nunc odio, pulvinar id vulputate nec, porttitor at quam. Suspendisse vulputate diam eu leo bibendum feugiat. Integer luctus orci a nunc consequat eleifend. Nam tempus quam sed felis tristique faucibus. Aliquam facilisis vehicula malesuada.','Magna fringilla quis','','draft','open','open','','magna-fringilla-quis-condimentum-2','','','2015-07-13 08:00:52','2015-07-13 08:00:52','',0,'http://themenectar.com/demo/salient/?p=124',11,'post','',0),(2329,2,'2012-12-23 18:06:42','2012-12-23 18:06:42','Quisque at dolor venenatis justo fringilla dignissim ut id eros. Quisque non elit id purus feugiat vestibulum. Phasellus eget sodales neque. Morbi eget odio nec justo consequat gravida. Phasellus dolor nisl, venenatis eget euismod et, dapibus et purus. Maecenas interdum nisi a dolor facilisis eu laoreet mi facilisis. Mauris pharetra interdum lorem eu venenatis. Praesent est diam, fringilla in hendrerit vel, ullamcorper et mauris.\n<!--more-->\nInteger convallis, odio ut rutrum euismod, mi purus pulvinar justo, quis mollis metus metus vitae nibh. Proin eget tincidunt arcu. Donec ante mi, elementum non adipiscing vitae, pharetra quis mauris. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Curabitur eget nibh non odio iaculis posuere. Sed ante tortor, pharetra vitae iaculis id, sodales ac tellus. Ut viverra, nulla et adipiscing condimentum, libero nisi condimentum tellus, vel pharetra neque ligula sit amet mi. Sed rutrum consectetur purus ac tincidunt.','Pharetra interdum','','draft','open','open','','mauris-pharetra-interdum-lorem-2','','','2015-07-13 08:01:32','2015-07-13 08:01:32','',0,'http://themenectar.com/demo/salient/?p=144',12,'post','',0),(2593,2,'2015-07-10 04:14:58','2015-07-10 04:14:58','','Portfolio Default Style','','publish','open','open','','portfolio-default-style','','','2015-07-10 04:14:58','2015-07-10 04:14:58','',0,'http://punjabyouthclub.com/index.php/2015/07/10/portfolio-default-style/',23,'nav_menu_item','',0),(2614,2,'2015-07-10 04:18:01','2015-07-10 04:18:01','<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] <wordpress@punjabyouthclub.com>\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 My Blog (http://punjabyouthclub.com)\nsajjadzia10@gmail.com\nReply-To: [your-email]\n\n0\n0\n\n[your-subject]\nMy Blog <wordpress@punjabyouthclub.com>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on My Blog (http://punjabyouthclub.com)\n[your-email]\nReply-To: sajjadzia10@gmail.com\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 in the required field.\nThis input is too long.\nThis input is too short.','Contact form 1','','publish','open','open','','contact-form-1','','','2015-07-10 04:18:01','2015-07-10 04:18:01','',0,'http://punjabyouthclub.com/?post_type=wpcf7_contact_form&p=2614',0,'wpcf7_contact_form','',0),(2617,2,'2015-07-10 06:31:57','2015-07-10 06:31:57','','Untitled-1','','inherit','open','open','','untitled-1','','','2015-07-10 06:31:57','2015-07-10 06:31:57','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Untitled-1.jpg',0,'attachment','image/jpeg',0),(2622,2,'2015-07-10 06:55:31','2015-07-10 06:55:31','','Header','','inherit','open','open','','header','','','2015-07-10 14:54:08','2015-07-10 14:54:08','',0,'http://punjabyouthclub.com/wp-content/uploads/2013/06/Header.jpg',0,'attachment','image/jpeg',0),(2636,2,'2015-07-10 07:23:16','2015-07-10 07:23:16','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"1\" category=\"all,applications,illustration,logo,music,photography,print,video\" layout=\"fullwidth\" starting_category=\"default\"][/vc_column][/vc_row]','Portfolio Fullwidth Default','','inherit','open','open','','743-revision-v1','','','2015-07-10 07:23:16','2015-07-10 07:23:16','',743,'http://punjabyouthclub.com/index.php/2015/07/10/743-revision-v1/',0,'revision','',0),(2662,2,'2015-07-10 07:43:13','2015-07-10 07:43:13','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"PYC history in form of event photos from 2000 until 2015\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_video link=\"https://www.youtube.com/watch?v=QajQak8uOgU\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]The Punjab Youth Club was established in July 2000. In such a short period of time the club has taken big steps in helping Punjabis involved in various charitable, social reforms and culture/language development.\r\n\r\nThe brief summary of the Club’s history is as following:\r\n\r\nThere was a small print news published in the Punjabi daily Ajit (dated 27/04/2000). It was titled “When Satpal’s daughter cry for her Daddy… At the time of publication of this news this small girl was on the hospital bed unaware of what was happening in the world. The reason for her conditions was the untimely death of her father. He was the sole bread earner of the family. His innocent daughter could not bare the shock and went into Coma. Her world is hanging in a delicate balance of life and death ever since. The bereaved family was finding it hard to fund her costly treatment. The daily Ajit intervened at this point and published an appeal for financial help. The appeal asked donors to come forward to help the family of a small time painter Satpal who would otherwise stop the treatment and let their little girl slip away to hands of awaiting cruel destiny.\r\n\r\nThe appeal was read in Hong Kong and it moved the hearts of Punjabis living here. The first person to come forward was S. Jasmel Singh (Pappu) and after him Master Jagtar Singh and Raja Dhillon along with current members of PYC got together to collect money from the generous Punjabi community of Hong Kong. One hundred thousand rupees were collected and sent to Satpal\'s family. It was decided to send the money under one organization, which would be called PUNJAB YOUTH CLUB. All the members decided to continue with acts like these to serve mankind. It was also decided to diversify the activities of the Club. The club collaborated with Khalsa Diwan to help Gujrat earth quake victims. Apart from that PYC also sponsored 24 orphan children with education scholarship for year 2000-2001. The club also collected donations for Hospital to be built in Badhni Kalan village in Punjab.\r\n\r\nThe club took effective steps to promote our mother tongue and PUNJABI Culture. A programme called MAHEK PUNJAB DI was organized. It was first of its kind experience for local Punjabis who had not experienced any thing like this for decades. Renowned Punjabi singer DURGA RANGILA entertained the local Punjabis. Various other cultural dances included Bhangra and Giddha were also performed by local artists.\r\n\r\nAnother important step taken by PYC was to organize yearly Turban Tying event which takes place on the anniversary of Great Martyr Saheed Udham Singh. These kinds of activities are meant to pass our great heritage and culture to the future generations. Continuing the same trend PYC organized a great show “MAHEK PUNJAB DI 2002” in which we presented the greatest Artist, Singer, Actor and Writer from Punjab Mr. GURDAS MAAN.\r\n\r\nIn October 2002 PYC also helped a person living near Jagraon (Ludhiana) by paying for all his hospital expenses for operation which he wasn’t able to clear himself .\r\n\r\nDue to the sudden death of Jagroop Singh in earlier this year, we supported his brother on expenses to come to Hong Kong from India and to handle the cremation and take his ashes back to India.\r\n\r\nWe sincerely hope that the Punjabi Community appreciates our effort and will support us in all our future events.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]','History English','','publish','open','open','','history-english','','','2015-09-21 07:28:14','2015-09-21 07:28:14','',0,'http://punjabyouthclub.com/?page_id=2662',0,'page','',0),(2663,2,'2015-07-10 07:43:13','2015-07-10 07:43:13','','History English','','inherit','open','open','','2662-revision-v1','','','2015-07-10 07:43:13','2015-07-10 07:43:13','',2662,'http://punjabyouthclub.com/index.php/2015/07/10/2662-revision-v1/',0,'revision','',0),(2664,2,'2015-07-10 07:44:23','2015-07-10 07:44:23','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][image_with_animation image_url=\"2908\" alignment=\"center\" animation=\"Fade In\" img_link_target=\"_self\"][image_with_animation image_url=\"2910\" alignment=\"center\" animation=\"Fade In\" img_link_target=\"_self\"][image_with_animation image_url=\"2911\" alignment=\"center\" animation=\"Fade In\" img_link_target=\"_self\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','History Punjabi','','publish','open','open','','history-punjabi','','','2015-07-11 07:46:22','2015-07-11 07:46:22','',0,'http://punjabyouthclub.com/?page_id=2664',0,'page','',0),(2665,2,'2015-07-10 07:44:23','2015-07-10 07:44:23','','History Punjabi','','inherit','open','open','','2664-revision-v1','','','2015-07-10 07:44:23','2015-07-10 07:44:23','',2664,'http://punjabyouthclub.com/index.php/2015/07/10/2664-revision-v1/',0,'revision','',0),(2666,2,'2015-07-10 07:44:43','2015-07-10 07:44:43','','Memorandum','','publish','open','open','','memorandum','','','2015-07-10 07:44:43','2015-07-10 07:44:43','',0,'http://punjabyouthclub.com/?page_id=2666',0,'page','',0),(2667,2,'2015-07-10 07:44:43','2015-07-10 07:44:43','','Memorandum','','inherit','open','open','','2666-revision-v1','','','2015-07-10 07:44:43','2015-07-10 07:44:43','',2666,'http://punjabyouthclub.com/index.php/2015/07/10/2666-revision-v1/',0,'revision','',0),(2668,2,'2015-07-10 07:45:11','2015-07-10 07:45:11','','Our Goals','','publish','open','open','','our-goals','','','2015-07-10 07:45:11','2015-07-10 07:45:11','',0,'http://punjabyouthclub.com/?page_id=2668',0,'page','',0),(2669,2,'2015-07-10 07:45:11','2015-07-10 07:45:11','','Our Goals','','inherit','open','open','','2668-revision-v1','','','2015-07-10 07:45:11','2015-07-10 07:45:11','',2668,'http://punjabyouthclub.com/index.php/2015/07/10/2668-revision-v1/',0,'revision','',0),(2670,2,'2015-07-10 07:46:22','2015-07-10 07:46:22',' ','','','publish','open','open','','2670','','','2015-09-21 07:33:06','2015-09-21 07:33:06','',0,'http://punjabyouthclub.com/?p=2670',6,'nav_menu_item','',0),(2671,2,'2015-07-10 07:46:22','2015-07-10 07:46:22',' ','','','publish','open','open','','2671','','','2015-09-21 07:33:05','2015-09-21 07:33:05','',0,'http://punjabyouthclub.com/?p=2671',5,'nav_menu_item','',0),(2672,2,'2015-07-10 07:46:22','2015-07-10 07:46:22',' ','','','publish','open','open','','2672','','','2015-09-21 07:33:05','2015-09-21 07:33:05','',0,'http://punjabyouthclub.com/?p=2672',4,'nav_menu_item','',0),(2673,2,'2015-07-10 07:46:21','2015-07-10 07:46:21',' ','','','publish','open','open','','2673','','','2015-09-21 07:33:05','2015-09-21 07:33:05','',0,'http://punjabyouthclub.com/?p=2673',3,'nav_menu_item','',0),(2680,2,'2015-07-10 07:51:58','2015-07-10 07:51:58','The Punjab Youth Club was established in July 2000. In such a short period of time the club has taken big steps in helping Punjabis involved in various charitable, social reforms and culture/language development.\r\n\r\nThe brief summary of the Club’s history is as following:\r\n\r\nThere was a small print news published in the Punjabi daily Ajit (dated 27/04/2000). It was titled “When Satpal’s daughter cry for her Daddy… At the time of publication of this news this small girl was on the hospital bed unaware of what was happening in the world. The reason for her conditions was the untimely death of her father. He was the sole bread earner of the family. His innocent daughter could not bare the shock and went into Coma. Her world is hanging in a delicate balance of life and death ever since. The bereaved family was finding it hard to fund her costly treatment. The daily Ajit intervened at this point and published an appeal for financial help. The appeal asked donors to come forward to help the family of a small time painter Satpal who would otherwise stop the treatment and let their little girl slip away to hands of awaiting cruel destiny.\r\n\r\nThe appeal was read in Hong Kong and it moved the hearts of Punjabis living here. The first person to come forward was S. Jasmel Singh (Pappu) and after him Master Jagtar Singh and Raja Dhillon along with current members of PYC got together to collect money from the generous Punjabi community of Hong Kong. One hundred thousand rupees were collected and sent to Satpal\'s family. It was decided to send the money under one organization, which would be called PUNJAB YOUTH CLUB. All the members decided to continue with acts like these to serve mankind. It was also decided to diversify the activities of the Club. The club collaborated with Khalsa Diwan to help Gujrat earth quake victims. Apart from that PYC also sponsored 24 orphan children with education scholarship for year 2000-2001. The club also collected donations for Hospital to be built in Badhni Kalan village in Punjab.\r\n\r\nThe club took effective steps to promote our mother tongue and PUNJABI Culture. A programme called MAHEK PUNJAB DI was organized. It was first of its kind experience for local Punjabis who had not experienced any thing like this for decades. Renowned Punjabi singer DURGA RANGILA entertained the local Punjabis. Various other cultural dances included Bhangra and Giddha were also performed by local artists.\r\n\r\nAnother important step taken by PYC was to organize yearly Turban Tying event which takes place on the anniversary of Great Martyr Saheed Udham Singh. These kinds of activities are meant to pass our great heritage and culture to the future generations. Continuing the same trend PYC organized a great show “MAHEK PUNJAB DI 2002” in which we presented the greatest Artist, Singer, Actor and Writer from Punjab Mr. GURDAS MAAN.\r\n\r\nIn October 2002 PYC also helped a person living near Jagraon (Ludhiana) by paying for all his hospital expenses for operation which he wasn’t able to clear himself .\r\n\r\nDue to the sudden death of Jagroop Singh in earlier this year, we supported his brother on expenses to come to Hong Kong from India and to handle the cremation and take his ashes back to India.\r\n\r\nWe sincerely hope that the Punjabi Community appreciates our effort and will support us in all our future events.','About Us','','publish','open','open','','about-us','','','2015-07-10 16:25:49','2015-07-10 16:25:49','',0,'http://punjabyouthclub.com/?page_id=2680',0,'page','',0),(2681,2,'2015-07-10 07:51:58','2015-07-10 07:51:58','','ABOUT US','','inherit','open','open','','2680-revision-v1','','','2015-07-10 07:51:58','2015-07-10 07:51:58','',2680,'http://punjabyouthclub.com/index.php/2015/07/10/2680-revision-v1/',0,'revision','',0),(2682,2,'2015-07-10 07:52:42','2015-07-10 07:52:42','[vc_row][vc_column width=\"1/1\"][heading]Punjab Youth Club Management Committee[/heading][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" animation=\"grow-in\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row]','Committee','','publish','open','open','','committee','','','2015-07-10 17:39:40','2015-07-10 17:39:40','',0,'http://punjabyouthclub.com/?page_id=2682',0,'page','',0),(2683,2,'2015-07-10 07:52:42','2015-07-10 07:52:42','','Committee','','inherit','open','open','','2682-revision-v1','','','2015-07-10 07:52:42','2015-07-10 07:52:42','',2682,'http://punjabyouthclub.com/index.php/2015/07/10/2682-revision-v1/',0,'revision','',0),(2687,2,'2015-07-10 07:54:17','2015-07-10 07:54:17','','About Us','','inherit','open','open','','2680-revision-v1','','','2015-07-10 07:54:17','2015-07-10 07:54:17','',2680,'http://punjabyouthclub.com/index.php/2015/07/10/2680-revision-v1/',0,'revision','',0),(2688,2,'2015-07-10 07:56:23','2015-07-10 07:56:23','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Present Management Committee\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row]','Management','','publish','open','open','','management','','','2015-07-13 07:40:00','2015-07-13 07:40:00','',0,'http://punjabyouthclub.com/?page_id=2688',0,'page','',0),(2689,2,'2015-07-10 07:56:07','2015-07-10 07:56:07','','Management','','inherit','open','open','','2688-revision-v1','','','2015-07-10 07:56:07','2015-07-10 07:56:07','',2688,'http://punjabyouthclub.com/index.php/2015/07/10/2688-revision-v1/',0,'revision','',0),(2690,2,'2015-07-10 07:57:02','2015-07-10 07:57:02','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Punjab Youth Club Membership Form\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<p align=\"center\">To DOWNLOAD membership form please click below.</p>\r\n\r\n<blockquote>\r\n<h1 align=\"center\"><a href=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC-MEMBERSHIP_Form.pdf\"><img class=\"alignnone size-medium wp-image-3566\" src=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/download-form1-300x103.jpg\" alt=\"download-form1\" width=\"300\" height=\"103\" /></a></h1>\r\n<p align=\"center\">Please note that you  will need<a href=\"http://www.adobe.com/products/acrobat/readstep2.html\" target=\"_blank\"> Adobe Acrobat Reader 6.0 or higher</a> to read and fill up the membership form.</p>\r\n</blockquote>\r\n<p align=\"center\"><a href=\"http://www.adobe.com/products/acrobat/readstep2.html\"><img src=\"http://punjabyouthclub.com/old_site/images/adobe.gif\" alt=\"\" width=\"150\" height=\"65\" border=\"0\" /></a></p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Membership','','publish','open','open','','membership','','','2015-08-26 09:27:10','2015-08-26 09:27:10','',0,'http://punjabyouthclub.com/?page_id=2690',0,'page','',0),(2691,2,'2015-07-10 07:57:02','2015-07-10 07:57:02','','Membership','','inherit','open','open','','2690-revision-v1','','','2015-07-10 07:57:02','2015-07-10 07:57:02','',2690,'http://punjabyouthclub.com/index.php/2015/07/10/2690-revision-v1/',0,'revision','',0),(2692,2,'2015-07-10 07:58:07','2015-07-10 07:58:07','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Roll of Honor \" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"5\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Balwinder Singh Brar\" job_position=\"President\" description=\"Year 2012-Present\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Parvinder Singh Mann\" job_position=\"President\" description=\"Year 2009-2012\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Navtej Singh Atwal\" job_position=\"President\" description=\"Year 2005-2009\r\nFounder Member of the Club\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"5\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Kashmir Singh Sohal\" job_position=\"President\" description=\"Year 2003-2005\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jagtar Singh Gill ( Dhudike)\" job_position=\"President\" description=\"Year 2001-2003\r\nFounder Member of Punjab Youth Club (HK)\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][/vc_row]','Roll of Honor','','publish','open','open','','roll-of-honor','','','2015-07-14 09:47:48','2015-07-14 09:47:48','',0,'http://punjabyouthclub.com/?page_id=2692',0,'page','',0),(2693,2,'2015-07-10 07:58:07','2015-07-10 07:58:07','','Roll of Honor','','inherit','open','open','','2692-revision-v1','','','2015-07-10 07:58:07','2015-07-10 07:58:07','',2692,'http://punjabyouthclub.com/index.php/2015/07/10/2692-revision-v1/',0,'revision','',0),(2694,2,'2015-07-10 07:58:59','2015-07-10 07:58:59',' ','','','publish','open','open','','2694','','','2015-09-21 07:33:06','2015-09-21 07:33:06','',0,'http://punjabyouthclub.com/?p=2694',9,'nav_menu_item','',0),(2695,2,'2015-07-10 07:58:59','2015-07-10 07:58:59',' ','','','publish','open','open','','2695','','','2015-09-21 07:33:06','2015-09-21 07:33:06','',0,'http://punjabyouthclub.com/?p=2695',8,'nav_menu_item','',0),(2696,2,'2015-07-10 07:58:59','2015-07-10 07:58:59',' ','','','publish','open','open','','2696','','','2015-09-21 07:33:06','2015-09-21 07:33:06','',0,'http://punjabyouthclub.com/?p=2696',7,'nav_menu_item','',0),(2697,2,'2015-07-10 07:59:30','2015-07-10 07:59:30','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3692,3067,3066,3065,3064,3063\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"400x600\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3394,3389,3396,3393,3390,3392,3391,3395\" display_title_caption=\"true\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"400x600\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3388,3397,3398\" display_title_caption=\"true\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"600x500\"][/vc_column][/vc_row]','Activities','','publish','open','open','','activities','','','2015-09-21 07:19:14','2015-09-21 07:19:14','',0,'http://punjabyouthclub.com/?page_id=2697',0,'page','',0),(2698,2,'2015-07-10 07:59:30','2015-07-10 07:59:30','','Activities','','inherit','open','open','','2697-revision-v1','','','2015-07-10 07:59:30','2015-07-10 07:59:30','',2697,'http://punjabyouthclub.com/index.php/2015/07/10/2697-revision-v1/',0,'revision','',0),(2699,2,'2015-07-10 08:00:10','2015-07-10 08:00:10','','KGM Tournament','','publish','open','open','','kgm-tournament','','','2015-07-10 08:00:10','2015-07-10 08:00:10','',0,'http://punjabyouthclub.com/?page_id=2699',0,'page','',0),(2700,2,'2015-07-10 08:00:10','2015-07-10 08:00:10','','KGM Tournament','','inherit','open','open','','2699-revision-v1','','','2015-07-10 08:00:10','2015-07-10 08:00:10','',2699,'http://punjabyouthclub.com/index.php/2015/07/10/2699-revision-v1/',0,'revision','',0),(2701,2,'2015-07-10 08:00:45','2015-07-10 08:00:45','','Cultural Show','','publish','open','open','','cultural-show','','','2015-07-10 08:00:45','2015-07-10 08:00:45','',0,'http://punjabyouthclub.com/?page_id=2701',0,'page','',0),(2702,2,'2015-07-10 08:00:45','2015-07-10 08:00:45','','Cultural Show','','inherit','open','open','','2701-revision-v1','','','2015-07-10 08:00:45','2015-07-10 08:00:45','',2701,'http://punjabyouthclub.com/index.php/2015/07/10/2701-revision-v1/',0,'revision','',0),(2705,2,'2015-07-10 08:02:40','2015-07-10 08:02:40','[vc_row][vc_column width=\"1/1\"][nectar_blog layout=\"std-blog-sidebar\" category=\"video\" pagination_type=\"default\" posts_per_page=\"10\"][/vc_column][/vc_row]','Videos','','publish','open','open','','videos','','','2015-07-13 07:57:34','2015-07-13 07:57:34','',0,'http://punjabyouthclub.com/?page_id=2705',0,'page','',0),(2706,2,'2015-07-10 08:02:20','2015-07-10 08:02:20','','Videos','','inherit','open','open','','2705-revision-v1','','','2015-07-10 08:02:20','2015-07-10 08:02:20','',2705,'http://punjabyouthclub.com/index.php/2015/07/10/2705-revision-v1/',0,'revision','',0),(2707,2,'2015-07-10 08:03:39','2015-07-10 08:03:39','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3308,3307,3306,3305,3304,3303,3302,3301,3300,3299,3298,3296,3295,3293,3292,3291,3290,3289,3288,3287,3286,3285,3284,3283,3277,3278,3279,3280,3281,3282,3276\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"4\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"800\"][/vc_column][/vc_row]','Media News','','publish','open','open','','media-news','','','2015-08-31 08:48:39','2015-08-31 08:48:39','',0,'http://punjabyouthclub.com/?page_id=2707',0,'page','',0),(2708,2,'2015-07-10 08:03:39','2015-07-10 08:03:39','','Media News','','inherit','open','open','','2707-revision-v1','','','2015-07-10 08:03:39','2015-07-10 08:03:39','',2707,'http://punjabyouthclub.com/index.php/2015/07/10/2707-revision-v1/',0,'revision','',0),(2709,2,'2015-07-10 08:04:31','2015-07-10 08:04:31','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Contact Us\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][bar color=\"Accent-Color\" title=\"Almost reached\" percent=\"100\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n<p style=\"text-align: center;\">Will update soon...</p>\r\n<p style=\"text-align: center;\">Please visit our Facebook Page</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"https://www.facebook.com/punjabyouthclub\">PunjabYouthClub</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]','Contact Us','','publish','open','open','','contact-us','','','2015-07-14 10:25:44','2015-07-14 10:25:44','',0,'http://punjabyouthclub.com/?page_id=2709',0,'page','',0),(2710,2,'2015-07-10 08:04:31','2015-07-10 08:04:31','','Contact Us','','inherit','open','open','','2709-revision-v1','','','2015-07-10 08:04:31','2015-07-10 08:04:31','',2709,'http://punjabyouthclub.com/index.php/2015/07/10/2709-revision-v1/',0,'revision','',0),(2711,2,'2015-07-10 08:06:29','2015-07-10 08:06:29',' ','','','publish','open','open','','2711','','','2015-09-21 07:33:06','2015-09-21 07:33:06','',0,'http://punjabyouthclub.com/?p=2711',14,'nav_menu_item','',0),(2712,2,'2015-07-10 08:06:29','2015-07-10 08:06:29',' ','','','publish','open','open','','2712','','','2015-09-21 07:33:06','2015-09-21 07:33:06','',0,'http://punjabyouthclub.com/?p=2712',13,'nav_menu_item','',0),(2713,2,'2015-07-10 08:06:29','2015-07-10 08:06:29',' ','','','publish','open','open','','2713','','','2015-09-21 07:33:06','2015-09-21 07:33:06','',0,'http://punjabyouthclub.com/?p=2713',12,'nav_menu_item','',0),(2717,2,'2015-07-10 08:06:28','2015-07-10 08:06:28',' ','','','publish','open','open','','2717','','','2015-09-21 07:33:06','2015-09-21 07:33:06','',0,'http://punjabyouthclub.com/?p=2717',10,'nav_menu_item','',0),(2719,2,'2015-09-21 07:26:58','2015-09-21 07:26:58','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"PYC history in form of event photos from 2000 until 2015\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_video link=\"https://www.youtube.com/watch?v=QajQak8uOgU\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]The Punjab Youth Club was established in July 2000. In such a short period of time the club has taken big steps in helping Punjabis involved in various charitable, social reforms and culture/language development.\r\n\r\nThe brief summary of the Club’s history is as following:\r\n\r\nThere was a small print news published in the Punjabi daily Ajit (dated 27/04/2000). It was titled “When Satpal’s daughter cry for her Daddy… At the time of publication of this news this small girl was on the hospital bed unaware of what was happening in the world. The reason for her conditions was the untimely death of her father. He was the sole bread earner of the family. His innocent daughter could not bare the shock and went into Coma. Her world is hanging in a delicate balance of life and death ever since. The bereaved family was finding it hard to fund her costly treatment. The daily Ajit intervened at this point and published an appeal for financial help. The appeal asked donors to come forward to help the family of a small time painter Satpal who would otherwise stop the treatment and let their little girl slip away to hands of awaiting cruel destiny.\r\n\r\nThe appeal was read in Hong Kong and it moved the hearts of Punjabis living here. The first person to come forward was S. Jasmel Singh (Pappu) and after him Master Jagtar Singh and Raja Dhillon along with current members of PYC got together to collect money from the generous Punjabi community of Hong Kong. One hundred thousand rupees were collected and sent to Satpal\'s family. It was decided to send the money under one organization, which would be called PUNJAB YOUTH CLUB. All the members decided to continue with acts like these to serve mankind. It was also decided to diversify the activities of the Club. The club collaborated with Khalsa Diwan to help Gujrat earth quake victims. Apart from that PYC also sponsored 24 orphan children with education scholarship for year 2000-2001. The club also collected donations for Hospital to be built in Badhni Kalan village in Punjab.\r\n\r\nThe club took effective steps to promote our mother tongue and PUNJABI Culture. A programme called MAHEK PUNJAB DI was organized. It was first of its kind experience for local Punjabis who had not experienced any thing like this for decades. Renowned Punjabi singer DURGA RANGILA entertained the local Punjabis. Various other cultural dances included Bhangra and Giddha were also performed by local artists.\r\n\r\nAnother important step taken by PYC was to organize yearly Turban Tying event which takes place on the anniversary of Great Martyr Saheed Udham Singh. These kinds of activities are meant to pass our great heritage and culture to the future generations. Continuing the same trend PYC organized a great show “MAHEK PUNJAB DI 2002” in which we presented the greatest Artist, Singer, Actor and Writer from Punjab Mr. GURDAS MAAN.\r\n\r\nIn October 2002 PYC also helped a person living near Jagraon (Ludhiana) by paying for all his hospital expenses for operation which he wasn’t able to clear himself .\r\n\r\nDue to the sudden death of Jagroop Singh in earlier this year, we supported his brother on expenses to come to Hong Kong from India and to handle the cremation and take his ashes back to India.\r\n\r\nWe sincerely hope that the Punjabi Community appreciates our effort and will support us in all our future events.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]','History English','','inherit','open','open','','2662-autosave-v1','','','2015-09-21 07:26:58','2015-09-21 07:26:58','',2662,'http://punjabyouthclub.com/index.php/2015/07/10/2662-autosave-v1/',0,'revision','',0),(2720,2,'2015-07-10 08:33:09','2015-07-10 08:33:09','[vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]The Punjab Youth Club was established in July 2000. In such a short period of time the club has taken big steps in helping Punjabis involved in various charitable, social reforms and culture/language development.\r\n\r\n&nbsp;\r\n\r\nThe brief summary of the Club’s history is as following:\r\n\r\nThere was a small print news published in the Punjabi daily Ajit (dated 27/04/2000). It was titled “When Satpal’s daughter cry for her Daddy… At the time of publication of this news this small girl was on the hospital bed unaware of what was happening in the world. The reason for her conditions was the untimely death of her father. He was the sole bread earner of the family. His innocent daughter could not bare the shock and went into Coma. Her world is hanging in a delicate balance of life and death ever since. The bereaved family was finding it hard to fund her costly treatment. The daily Ajit intervened at this point and published an appeal for financial help. The appeal asked donors to come forward to help the family of a small time painter Satpal who would otherwise stop the treatment and let their little girl slip away to hands of awaiting cruel destiny.\r\n\r\n&nbsp;\r\n\r\nThe appeal was read in Hong Kong and it moved the hearts of Punjabis living here. The first person to come forward was S. Jasmel Singh (Pappu) and after him Master Jagtar Singh and Raja Dhillon along with current members of PYC got together to collect money from the generous Punjabi community of Hong Kong. One hundred thousand rupees were collected and sent to Satpal\'s family. It was decided to send the money under one organization, which would be called PUNJAB YOUTH CLUB. All the members decided to continue with acts like these to serve mankind. It was also decided to diversify the activities of the Club. The club collaborated with Khalsa Diwan to help Gujrat earth quake victims. Apart from that PYC also sponsored 24 orphan children with education scholarship for year 2000-2001. The club also collected donations for Hospital to be built in Badhni Kalan village in Punjab.\r\n\r\n&nbsp;\r\n\r\nThe club took effective steps to promote our mother tongue and PUNJABI Culture. A programme called MAHEK PUNJAB DI was organized. It was first of its kind experience for local Punjabis who had not experienced any thing like this for decades. Renowned Punjabi singer DURGA RANGILA entertained the local Punjabis. Various other cultural dances included Bhangra and Giddha were also performed by local artists.\r\n\r\n&nbsp;\r\n\r\nAnother important step taken by PYC was to organize yearly Turban Tying event which takes place on the anniversary of Great Martyr Saheed Udham Singh. These kinds of activities are meant to pass our great heritage and culture to the future generations. Continuing the same trend PYC organized a great show “MAHEK PUNJAB DI 2002” in which we presented the greatest Artist, Singer, Actor and Writer from Punjab Mr. GURDAS MAAN.\r\n\r\nIn October 2002 PYC also helped a person living near Jagraon (Ludhiana) by paying for all his hospital expenses for operation which he wasn’t able to clear himself.\r\n\r\nDue to the sudden death of Jagroop Singh in earlier this year, we supported his brother on expenses to come to Hong Kong from India and to handle the cremation and take his ashes back to India.\r\n\r\n&nbsp;\r\n\r\nWe sincerely hope that the Punjabi Community appreciates our effort and will support us in all our future events.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','History English','','inherit','open','open','','2662-revision-v1','','','2015-07-10 08:33:09','2015-07-10 08:33:09','',2662,'http://punjabyouthclub.com/index.php/2015/07/10/2662-revision-v1/',0,'revision','',0),(2721,2,'2015-07-10 08:38:04','2015-07-10 08:38:04','[vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h3>The Punjab Youth Club was established in July 2000. In such a short period of time the club has taken big steps in helping Punjabis involved in various charitable, social reforms and culture/language development.</h3>\r\nThe brief summary of the Club’s history is as following:\r\n\r\nThere was a small print news published in the Punjabi daily Ajit (dated 27/04/2000). It was titled “When Satpal’s daughter cry for her Daddy… At the time of publication of this news this small girl was on the hospital bed unaware of what was happening in the world. The reason for her conditions was the untimely death of her father. He was the sole bread earner of the family. His innocent daughter could not bare the shock and went into Coma. Her world is hanging in a delicate balance of life and death ever since. The bereaved family was finding it hard to fund her costly treatment. The daily Ajit intervened at this point and published an appeal for financial help. The appeal asked donors to come forward to help the family of a small time painter Satpal who would otherwise stop the treatment and let their little girl slip away to hands of awaiting cruel destiny.\r\n\r\nThe appeal was read in Hong Kong and it moved the hearts of Punjabis living here. The first person to come forward was S. Jasmel Singh (Pappu) and after him Master Jagtar Singh and Raja Dhillon along with current members of PYC got together to collect money from the generous Punjabi community of Hong Kong. One hundred thousand rupees were collected and sent to Satpal\'s family. It was decided to send the money under one organization, which would be called PUNJAB YOUTH CLUB. All the members decided to continue with acts like these to serve mankind. It was also decided to diversify the activities of the Club. The club collaborated with Khalsa Diwan to help Gujrat earth quake victims. Apart from that PYC also sponsored 24 orphan children with education scholarship for year 2000-2001. The club also collected donations for Hospital to be built in Badhni Kalan village in Punjab.\r\n\r\nThe club took effective steps to promote our mother tongue and PUNJABI Culture. A programme called MAHEK PUNJAB DI was organized. It was first of its kind experience for local Punjabis who had not experienced any thing like this for decades. Renowned Punjabi singer DURGA RANGILA entertained the local Punjabis. Various other cultural dances included Bhangra and Giddha were also performed by local artists.\r\n\r\nAnother important step taken by PYC was to organize yearly Turban Tying event which takes place on the anniversary of Great Martyr Saheed Udham Singh. These kinds of activities are meant to pass our great heritage and culture to the future generations. Continuing the same trend PYC organized a great show “MAHEK PUNJAB DI 2002” in which we presented the greatest Artist, Singer, Actor and Writer from Punjab Mr. GURDAS MAAN.\r\n\r\nIn October 2002 PYC also helped a person living near Jagraon (Ludhiana) by paying for all his hospital expenses for operation which he wasn’t able to clear himself.\r\n\r\nDue to the sudden death of Jagroop Singh in earlier this year, we supported his brother on expenses to come to Hong Kong from India and to handle the cremation and take his ashes back to India.\r\n\r\nWe sincerely hope that the Punjabi Community appreciates our effort and will support us in all our future events.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','History English','','inherit','open','open','','2662-revision-v1','','','2015-07-10 08:38:04','2015-07-10 08:38:04','',2662,'http://punjabyouthclub.com/index.php/2015/07/10/2662-revision-v1/',0,'revision','',0),(2722,2,'2015-07-10 08:39:45','2015-07-10 08:39:45','[vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]\r\n<h4>The Punjab Youth Club was established in July 2000. In such a short period of time the club has taken big steps in helping Punjabis involved in various charitable, social reforms and culture/language development.\r\nThe brief summary of the Club’s history is as following:\r\nThere was a small print news published in the Punjabi daily Ajit (dated 27/04/2000). It was titled “When Satpal’s daughter cry for her Daddy… At the time of publication of this news this small girl was on the hospital bed unaware of what was happening in the world. The reason for her conditions was the untimely death of her father. He was the sole bread earner of the family. His innocent daughter could not bare the shock and went into Coma. Her world is hanging in a delicate balance of life and death ever since. The bereaved family was finding it hard to fund her costly treatment. The daily Ajit intervened at this point and published an appeal for financial help. The appeal asked donors to come forward to help the family of a small time painter Satpal who would otherwise stop the treatment and let their little girl slip away to hands of awaiting cruel destiny.</h4>\r\nThe appeal was read in Hong Kong and it moved the hearts of Punjabis living here. The first person to come forward was S. Jasmel Singh (Pappu) and after him Master Jagtar Singh and Raja Dhillon along with current members of PYC got together to collect money from the generous Punjabi community of Hong Kong. One hundred thousand rupees were collected and sent to Satpal\'s family. It was decided to send the money under one organization, which would be called PUNJAB YOUTH CLUB. All the members decided to continue with acts like these to serve mankind. It was also decided to diversify the activities of the Club. The club collaborated with Khalsa Diwan to help Gujrat earth quake victims. Apart from that PYC also sponsored 24 orphan children with education scholarship for year 2000-2001. The club also collected donations for Hospital to be built in Badhni Kalan village in Punjab.\r\n\r\nThe club took effective steps to promote our mother tongue and PUNJABI Culture. A programme called MAHEK PUNJAB DI was organized. It was first of its kind experience for local Punjabis who had not experienced any thing like this for decades. Renowned Punjabi singer DURGA RANGILA entertained the local Punjabis. Various other cultural dances included Bhangra and Giddha were also performed by local artists.\r\n\r\nAnother important step taken by PYC was to organize yearly Turban Tying event which takes place on the anniversary of Great Martyr Saheed Udham Singh. These kinds of activities are meant to pass our great heritage and culture to the future generations. Continuing the same trend PYC organized a great show “MAHEK PUNJAB DI 2002” in which we presented the greatest Artist, Singer, Actor and Writer from Punjab Mr. GURDAS MAAN.\r\n\r\nIn October 2002 PYC also helped a person living near Jagraon (Ludhiana) by paying for all his hospital expenses for operation which he wasn’t able to clear himself.\r\n\r\nDue to the sudden death of Jagroop Singh in earlier this year, we supported his brother on expenses to come to Hong Kong from India and to handle the cremation and take his ashes back to India.\r\n\r\nWe sincerely hope that the Punjabi Community appreciates our effort and will support us in all our future events.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','History English','','inherit','open','open','','2662-revision-v1','','','2015-07-10 08:39:45','2015-07-10 08:39:45','',2662,'http://punjabyouthclub.com/index.php/2015/07/10/2662-revision-v1/',0,'revision','',0),(2723,2,'2015-07-10 08:44:09','2015-07-10 08:44:09','[vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>The Punjab Youth Club was established in July 2000. In such a short period of time the club has taken big steps in helping Punjabis involved in various charitable, social reforms and culture/language development.</strong>\r\n\r\n<strong>The brief summary of the Club’s history is as following:</strong>\r\n\r\n<strong>There was a small print news published in the Punjabi daily Ajit (dated 27/04/2000). It was titled “When Satpal’s daughter cry for her Daddy… At the time of publication of this news this small girl was on the hospital bed unaware of what was happening in the world. The reason for her conditions was the untimely death of her father. He was the sole bread earner of the family. His innocent daughter could not bare the shock and went into Coma. Her world is hanging in a delicate balance of life and death ever since. The bereaved family was finding it hard to fund her costly treatment. The daily Ajit intervened at this point and published an appeal for financial help. The appeal asked donors to come forward to help the family of a small time painter Satpal who would otherwise stop the treatment and let their little girl slip away to hands of awaiting cruel destiny.</strong>\r\n\r\n<strong>The appeal was read in Hong Kong and it moved the hearts of Punjabis living here. The first person to come forward was S. Jasmel Singh (Pappu) and after him Master Jagtar Singh and Raja Dhillon along with current members of PYC got together to collect money from the generous Punjabi community of Hong Kong. One hundred thousand rupees were collected and sent to Satpal\'s family. It was decided to send the money under one organization, which would be called PUNJAB YOUTH CLUB. All the members decided to continue with acts like these to serve mankind. It was also decided to diversify the activities of the Club. The club collaborated with Khalsa Diwan to help Gujrat earth quake victims. Apart from that PYC also sponsored 24 orphan children with education scholarship for year 2000-2001. The club also collected donations for Hospital to be built in Badhni Kalan village in Punjab.</strong>\r\n\r\n<strong>The club took effective steps to promote our mother tongue and PUNJABI Culture. A programme called MAHEK PUNJAB DI was organized. It was first of its kind experience for local Punjabis who had not experienced any thing like this for decades. Renowned Punjabi singer DURGA RANGILA entertained the local Punjabis. Various other cultural dances included Bhangra and Giddha were also performed by local artists.</strong>\r\n\r\n<strong>Another important step taken by PYC was to organize yearly Turban Tying event which takes place on the anniversary of Great Martyr Saheed Udham Singh. These kinds of activities are meant to pass our great heritage and culture to the future generations. Continuing the same trend PYC organized a great show “MAHEK PUNJAB DI 2002” in which we presented the greatest Artist, Singer, Actor and Writer from Punjab Mr. GURDAS MAAN.</strong>\r\n\r\n<strong>In October 2002 PYC also helped a person living near Jagraon (Ludhiana) by paying for all his hospital expenses for operation which he wasn’t able to clear himself.</strong>\r\n\r\n<strong>Due to the sudden death of Jagroop Singh in earlier this year, we supported his brother on expenses to come to Hong Kong from India and to handle the cremation and take his ashes back to India.</strong>\r\n\r\n<strong>We sincerely hope that the Punjabi Community appreciates our effort and will support us in all our future events.</strong>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','History English','','inherit','open','open','','2662-revision-v1','','','2015-07-10 08:44:09','2015-07-10 08:44:09','',2662,'http://punjabyouthclub.com/index.php/2015/07/10/2662-revision-v1/',0,'revision','',0),(2724,2,'2015-07-10 10:55:31','2015-07-10 10:55:31','[vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]<strong>\r\n</strong>\r\n<h4>The Punjab Youth Club was established in July 2000. In such a short period of time the club has taken big steps in helping Punjabis involved in various charitable, social reforms and culture/language development.</h4>\r\n<strong> </strong>\r\n<h4>The brief summary of the Club’s history is as following:</h4>\r\n<strong> </strong>\r\n<h4>There was a small print news published in the Punjabi daily Ajit (dated 27/04/2000). It was titled “When Satpal’s daughter cry for her Daddy… At the time of publication of this news this small girl was on the hospital bed unaware of what was happening in the world. The reason for her conditions was the untimely death of her father. He was the sole bread earner of the family. His innocent daughter could not bare the shock and went into Coma. Her world is hanging in a delicate balance of life and death ever since. The bereaved family was finding it hard to fund her costly treatment. The daily Ajit intervened at this point and published an appeal for financial help. The appeal asked donors to come forward to help the family of a small time painter Satpal who would otherwise stop the treatment and let their little girl slip away to hands of awaiting cruel destiny.</h4>\r\n<strong> </strong>\r\n<h4>The appeal was read in Hong Kong and it moved the hearts of Punjabis living here. The first person to come forward was S. Jasmel Singh (Pappu) and after him Master Jagtar Singh and Raja Dhillon along with current members of PYC got together to collect money from the generous Punjabi community of Hong Kong. One hundred thousand rupees were collected and sent to Satpal\'s family. It was decided to send the money under one organization, which would be called PUNJAB YOUTH CLUB. All the members decided to continue with acts like these to serve mankind. It was also decided to diversify the activities of the Club. The club collaborated with Khalsa Diwan to help Gujrat earth quake victims. Apart from that PYC also sponsored 24 orphan children with education scholarship for year 2000-2001. The club also collected donations for Hospital to be built in Badhni Kalan village in Punjab.</h4>\r\n<strong> </strong>\r\n<h4>The club took effective steps to promote our mother tongue and PUNJABI Culture. A programme called MAHEK PUNJAB DI was organized. It was first of its kind experience for local Punjabis who had not experienced any thing like this for decades. Renowned Punjabi singer DURGA RANGILA entertained the local Punjabis. Various other cultural dances included Bhangra and Giddha were also performed by local artists.</h4>\r\n<strong> </strong>\r\n<h4>Another important step taken by PYC was to organize yearly Turban Tying event which takes place on the anniversary of Great Martyr Saheed Udham Singh. These kinds of activities are meant to pass our great heritage and culture to the future generations. Continuing the same trend PYC organized a great show “MAHEK PUNJAB DI 2002” in which we presented the greatest Artist, Singer, Actor and Writer from Punjab Mr. GURDAS MAAN.</h4>\r\n<strong> </strong>\r\n<h4>In October 2002 PYC also helped a person living near Jagraon (Ludhiana) by paying for all his hospital expenses for operation which he wasn’t able to clear himself</h4>\r\n.\r\n\r\n<strong> </strong>\r\n<h4>Due to the sudden death of Jagroop Singh in earlier this year, we supported his brother on expenses to come to Hong Kong from India and to handle the cremation and take his ashes back to India.</h4>\r\n<strong> </strong>\r\n<h4>We sincerely hope that the Punjabi Community appreciates our effort and will support us in all our future events.</h4>\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','History English','','inherit','open','open','','2662-revision-v1','','','2015-07-10 10:55:31','2015-07-10 10:55:31','',2662,'http://punjabyouthclub.com/index.php/2015/07/10/2662-revision-v1/',0,'revision','',0),(2726,2,'2015-07-10 10:58:25','2015-07-10 10:58:25','','About','','publish','open','open','','about-2','','','2015-07-10 10:58:25','2015-07-10 10:58:25','',0,'http://punjabyouthclub.com/index.php/2015/07/10/about-2/',8,'nav_menu_item','',0),(2727,2,'2015-07-10 10:58:26','2015-07-10 10:58:26','','Features','','publish','open','open','','features-2','','','2015-07-10 10:58:26','2015-07-10 10:58:26','',0,'http://punjabyouthclub.com/index.php/2015/07/10/features-2/',28,'nav_menu_item','',0),(2728,2,'2015-07-10 10:58:26','2015-07-10 10:58:26','','Home','','publish','open','open','','home-2','','','2015-07-10 10:58:26','2015-07-10 10:58:26','',0,'http://punjabyouthclub.com/index.php/2015/07/10/home-2/',1,'nav_menu_item','',0),(2729,2,'2015-07-10 10:58:27','2015-07-10 10:58:27','','Nectar Sliders','','publish','open','open','','nectar-sliders-2','','','2015-07-10 10:58:27','2015-07-10 10:58:27','',0,'http://punjabyouthclub.com/index.php/2015/07/10/nectar-sliders-2/',38,'nav_menu_item','',0),(2730,2,'2015-07-10 10:58:27','2015-07-10 10:58:27','','Gorgeous Design','','publish','open','open','','gorgeous-design-2','','','2015-07-10 10:58:27','2015-07-10 10:58:27','',0,'http://punjabyouthclub.com/index.php/2015/07/10/gorgeous-design-2/',29,'nav_menu_item','',0),(2731,2,'2015-07-10 10:58:28','2015-07-10 10:58:28','','Love At First Sight','','publish','open','open','','love-at-first-sight-2','','','2015-07-10 10:58:28','2015-07-10 10:58:28','',0,'http://punjabyouthclub.com/index.php/2015/07/10/love-at-first-sight-2/',30,'nav_menu_item','',0),(2732,2,'2015-07-10 10:58:28','2015-07-10 10:58:28','','Full Width Slider','','publish','open','open','','full-width-slider-2','','','2015-07-10 10:58:28','2015-07-10 10:58:28','',0,'http://punjabyouthclub.com/index.php/2015/07/10/full-width-slider-2/',39,'nav_menu_item','',0),(2733,2,'2015-07-10 10:58:29','2015-07-10 10:58:29','','Parallax Slider','','publish','open','open','','parallax-slider-2','','','2015-07-10 10:58:29','2015-07-10 10:58:29','',0,'http://punjabyouthclub.com/index.php/2015/07/10/parallax-slider-2/',40,'nav_menu_item','',0),(2734,2,'2015-07-10 10:58:29','2015-07-10 10:58:29','','Video Backgrounds','','publish','open','open','','video-backgrounds-2','','','2015-07-10 10:58:29','2015-07-10 10:58:29','',0,'http://punjabyouthclub.com/index.php/2015/07/10/video-backgrounds-2/',41,'nav_menu_item','',0),(2735,2,'2015-07-10 10:58:30','2015-07-10 10:58:30','','Robust Power','','publish','open','open','','robust-power-2','','','2015-07-10 10:58:30','2015-07-10 10:58:30','',0,'http://punjabyouthclub.com/index.php/2015/07/10/robust-power-2/',43,'nav_menu_item','',0),(2736,2,'2015-07-10 10:58:31','2015-07-10 10:58:31','','Tell Your Story','','publish','open','open','','tell-your-story-2','','','2015-07-10 10:58:31','2015-07-10 10:58:31','',0,'http://punjabyouthclub.com/index.php/2015/07/10/tell-your-story-2/',32,'nav_menu_item','',0),(2737,2,'2015-07-10 10:58:32','2015-07-10 10:58:32','','Show Off Your Work','','publish','open','open','','show-off-your-work-2','','','2015-07-10 10:58:32','2015-07-10 10:58:32','',0,'http://punjabyouthclub.com/index.php/2015/07/10/show-off-your-work-2/',31,'nav_menu_item','',0),(2738,2,'2015-07-10 10:58:33','2015-07-10 10:58:33','','Multiple Instances','','publish','open','open','','multiple-instances-2','','','2015-07-10 10:58:33','2015-07-10 10:58:33','',0,'http://punjabyouthclub.com/index.php/2015/07/10/multiple-instances-2/',42,'nav_menu_item','',0),(2739,2,'2015-07-10 10:58:33','2015-07-10 10:58:33','','Portfolio Columns','','publish','open','open','','portfolio-columns-2','','','2015-07-10 10:58:33','2015-07-10 10:58:33','',0,'http://punjabyouthclub.com/index.php/2015/07/10/portfolio-columns-2/',16,'nav_menu_item','',0),(2740,2,'2015-07-10 10:58:34','2015-07-10 10:58:34','','Portfolio Fullwidth','','publish','open','open','','portfolio-fullwidth-2','','','2015-07-10 10:58:34','2015-07-10 10:58:34','',0,'http://punjabyouthclub.com/index.php/2015/07/10/portfolio-fullwidth-2/',22,'nav_menu_item','',0),(2741,2,'2015-07-10 10:58:34','2015-07-10 10:58:34','','Portfolio','','publish','open','open','','portfolio-2','','','2015-07-10 10:58:34','2015-07-10 10:58:34','',0,'http://punjabyouthclub.com/index.php/2015/07/10/portfolio-2/',15,'nav_menu_item','',0),(2742,2,'2015-07-10 10:58:35','2015-07-10 10:58:35','','Blog','','publish','open','open','','blog-2','','','2015-07-10 10:58:35','2015-07-10 10:58:35','',0,'http://punjabyouthclub.com/index.php/2015/07/10/blog-2/',48,'nav_menu_item','',0),(2743,2,'2015-07-10 10:58:35','2015-07-10 10:58:35','','Pages','','publish','open','open','','pages-2','','','2015-07-10 10:58:35','2015-07-10 10:58:35','',0,'http://punjabyouthclub.com/index.php/2015/07/10/pages-2/',7,'nav_menu_item','',0),(2744,2,'2013-06-26 22:56:49','2013-06-26 22:56:49','[vc_row type=\"full_width_background\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][nectar_slider location=\"Home\" flexible_slider_height=\"true\" full_width=\"true\" arrow_navigation=\"true\" overall_style=\"classic\" bullet_navigation=\"true\" desktop_swipe=\"true\" parallax=\"true\" loop=\"true\" slider_transition=\"slide\" button_sizing=\"regular\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_color=\"#ffffff\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" overlay_strength=\"0.3\"][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n 	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n 	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n 	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n 	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\r\n 	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n<ul>\r\n 	<li>1st KGM Memorial Youth Hockey Tournament 2010</li>\r\n 	<li>2nd KGM Memorial Youth Hockey Tournament 2011</li>\r\n 	<li>3rd KGM Memorial Youth Hockey Tournament 2012</li>\r\n 	<li>4th KGM Memorial Youth Hockey Tournament 2013</li>\r\n 	<li>5thKGM Memorial Youth Hockey Tournament 20114</li>\r\n 	<li>6th KGM Memorial Youth Hockey Tournament 2015</li>\r\n 	<li>7th <a href=\"https://www.facebook.com/events/1141735102568536/\">\"Komagata Maru Memorial Youth Hockey Tournament \"</a> on 10th October 2016</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club who started Bhangra in Hong Kong in year 2000 at 300th Vaisakhi celebrations. Bhangra credit goes to Mr. Bhupinder Pal Singh Mangat.\r\n\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\" overlay_strength=\"0.3\"][vc_column enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" project_style=\"1\" load_in_animation=\"none\" projects_per_page=\"4\"][/vc_column][/vc_row][vc_row type=\"in_container\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\"][/vc_column][/vc_row][vc_row type=\"in_container\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][vc_gallery type=\"image_grid\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section type=\"full_width_content\" vertically_center_columns=\"true\" image_url=\"2265\" bg_pos=\"Center Center\" parallax_bg=\"true\" background_color=\"#101012\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\"][vc_column centered_text=\"true\" column_padding=\"padding-5-percent\" column_padding_position=\"all\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" background_hover_color_opacity=\"1\" font_color=\"#ffffff\" width=\"1/1\"][testimonial_slider style=\"default\" autorotate=\"7000\"][testimonial name=\"Mukhtar Singh, President KNS Sports Club\" quote=\"As years moved on, it became apparent that Punjab Youth Club is an important part of Hong Kong -Punjabi Society. The pride that we all take is their experience with voluntary endeavor &amp; the friendship that we have developed with them. Wishing Punjab Youth Club all the best &amp; keep up the good work.\" id=\"t1\" title=\"Testimonial\" tab_id=\"1474470380325-10\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\" tab_id=\"1474470380484-8\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\" tab_id=\"1474470380602-10\"][/testimonial][/testimonial_slider][clients columns=\"6\" fade_in_animation=\"true\" carousel=\"true\"][client image=\"3075\" title=\"Client\" id=\"1395635698-1-67\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\" tab_id=\"1474470380736-8\"] Click the edit button to add your testimonial. [/client][client image=\"3085\" title=\"Client\" id=\"1395636117002-0-4\" name=\"Brar Group\" tab_id=\"1474470380851-3\"][/client][client image=\"3077\" title=\"Client\" id=\"1395635965058-0-2\" name=\"Toronto Motel Hong Kong\" tab_id=\"1474470380973-4\"][/client][client image=\"3074\" title=\"Client\" id=\"1395635698-2-45\" name=\"MultiLines Intl. Co. Ltd.\" tab_id=\"1474470381091-7\"] Click the edit button to add your testimonial. [/client][client image=\"3081\" title=\"Client\" id=\"1395636055291-0-6\" name=\"Buttar &amp; Associates\" tab_id=\"1474470381201-5\"][/client][client image=\"3072\" title=\"Client\" id=\"1395635975628-0-8\" name=\"Dr. Fix It All\" tab_id=\"1474470381328-1\"][/client][client image=\"3071\" title=\"Client\" id=\"1436665265751-0-7\" name=\"Dime Air\" tab_id=\"1474470381439-3\"][/client][client image=\"3082\" title=\"Client\" id=\"1436665318808-0-4\" name=\"Dhillon Hotels\" tab_id=\"1474470381563-3\"][/client][client image=\"3076\" title=\"Client\" id=\"1436665294182-0-6\" name=\"Satrang Entertainers\" tab_id=\"1474470381695-8\"][/client][client image=\"3083\" title=\"Client\" id=\"1436665533508-0-1\" name=\"Brar Group\" tab_id=\"1474470381812-0\"][/client][client image=\"3078\" title=\"Client\" id=\"1436665572198-0-8\" name=\"TS Security\" tab_id=\"1474470381940-5\"][/client][client image=\"3073\" title=\"Client\" id=\"1436665626816-0-0\" name=\"Grewal Commercial Services\" tab_id=\"1474470382070-7\"][/client][/clients][/vc_column][/full_width_section][full_width_section type=\"full_width_content\" background_color=\"#171920\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\"][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#20cfef\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#fe4641\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#6b58cd\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" font_color=\"#ffffff\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial</h3>\r\nIt gives me great pleasure to join the 15th Anniversary celebrations of Punjab Youth Club (HK). As you know, Punjabi culture is one of the richest cultures of the world. During the last century, a lot of Punjabis settled overseas but the beats of Bhangra, steps of Gidda, Punjabi poetry and festivals, all these aspects of their rich culture were missing, far from their homeland. During the last 15 years the Punjab Youth Club has filled this vacuum and has never left any stone unturned in promoting the Punjabi culture, sports and religious activities in Hong Kong.\r\n\r\nI believe Punjab Youth Club would continue to serve the Punjabi community in Hong Kong in the years to come and I wish Punjab Youth Club every success in the future.\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr.Gurdev Singh Galib \" image=\"steadysets-icon-diamond\"]\r\n<h6>Chief Officer\r\nCorrectional Services Dept, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','publish','open','open','','home-extended-2','','','2016-09-25 14:24:48','2016-09-25 14:24:48','',0,'http://localhost/wordpress-3-5/?page_id=551',35,'page','',0),(2753,2,'2015-07-10 11:00:05','2015-07-10 11:00:05',' ','','','publish','open','open','','2753','','','2015-07-10 11:00:05','2015-07-10 11:00:05','',0,'http://punjabyouthclub.com/index.php/2015/07/10/2753/',2,'nav_menu_item','',0),(2759,2,'2015-07-10 11:00:08','2015-07-10 11:00:08','','Portfolio Default Style','','publish','open','open','','portfolio-default-style-2','','','2015-07-10 11:00:08','2015-07-10 11:00:08','',0,'http://punjabyouthclub.com/index.php/2015/07/10/portfolio-default-style-2/',23,'nav_menu_item','',0),(2780,2,'2015-07-10 11:03:04','2015-07-10 11:03:04','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Design To Brag About</h4>\r\nPhasellus enim libero, blandit vel sapien vitae, condimentum ultricies magna et. Quisque euismod orci ut et lobortis aliquam. Aliquam in tortor enim.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Completely Customizable</h4>\r\nPhasellus enim libero, blandit vel sapien vitae, condimentum ultricies magna et. Quisque euismod orci ut et lobortis aliquam. Aliquam in tortor enim.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Loaded With Power</h4>\r\nPhasellus enim libero, blandit vel sapien vitae, condimentum ultricies magna et. Quisque euismod orci ut et lobortis aliquam. Aliquam in tortor enim.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"120\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"600\"][text-with-icon icon_type=\"font_icon\" icon=\"linecon-icon-display\" color=\"Accent-Color\"]\r\n<h4>In-Depth Tutorial Videos</h4>\r\nPhasellus enim libero, blandit vel sapien vitae, condimentum ultricies magna et. Quisque euismod orci ut et lobortis aliquam. Aliquam in tortor enim.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"800\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-file-settings\" color=\"Accent-Color\"]\r\n<h4>Clean Modern Code</h4>\r\nPhasellus enim libero, blandit vel sapien vitae, condimentum ultricies magna et. Quisque euismod orci ut et lobortis aliquam. Aliquam in tortor enim.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"1000\"][text-with-icon icon_type=\"font_icon\" icon=\"linecon-icon-settings\" color=\"Accent-Color\"]\r\n<h4>Free Updates &amp; Support</h4>\r\nPhasellus enim libero, blandit vel sapien vitae, condimentum ultricies magna et. Quisque euismod orci ut et lobortis aliquam. Aliquam in tortor enim.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#6b58cd\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Like What You See? We\'re Just Getting Started [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://themenectar.com/demo/salient-frostwave/portfolio-fullwidth-masonry/\" text=\"View Portfolio\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"dark\" bottom_padding=\"90\" type=\"full_width_background\" text_align=\"left\" top_padding=\"120\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Drag &amp; drop page builder</li>\r\n	<li>Responsive &amp; retina ready design</li>\r\n	<li>Extensive + powerful theme options</li>\r\n	<li>Exclusive nectar slider included</li>\r\n	<li>WooCommerce integration</li>\r\n	<li>Unlimited colors &amp; layouts</li>\r\n	<li>HD video tutorial series</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-star-empty\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Gorgeous &amp; trend-setting design</li>\r\n	<li>Super intuitive shortcode generator</li>\r\n	<li>Three full icon sets tightly integrated</li>\r\n	<li>Loads of Google fonts to choose from</li>\r\n	<li>Premium Support &amp; updates for free</li>\r\n	<li>Optional AJAX search in header</li>\r\n	<li>SEO optimized &amp; clean code</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Jaw-dropping CSS3 animations</li>\r\n	<li>Tons of portfolio &amp; blog styles</li>\r\n	<li>Optional smooth scrolling effect</li>\r\n	<li>Advanced typography options</li>\r\n	<li>Boxed &amp; wide layout options</li>\r\n	<li>Built in \"love\" system</li>\r\n	<li>Built in mega menu</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][/full_width_section][vc_row type=\"full_width_content\" bg_position=\"center center\" bg_repeat=\"repeat\" text_color=\"light\" text_align=\"center\" bg_color=\"#0e1015\" top_padding=\"60\" bottom_padding=\"60\"][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"14\" subject=\"Theme Users\" symbol_position=\"after\" symbol=\"k\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"1538\" subject=\"Cups of Coffee\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"463\" subject=\"Features Added\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"7200\" subject=\"Tickets Answered\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" delay=\"0\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"1000\" subject=\"YouTube Subscribers\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" delay=\"0\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"600\" subject=\"Google Fonts\" symbol_position=\"after\" symbol=\"*\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Fluid\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>A Breeze To Build With</h3>\r\nTake full control of the power Salient has to offer with our new exciting page builder. You\'ll be grinning in delight when you see just how easy it is to create stunning layouts with little effort.\r\n\r\n[button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/features/page-builder/\" text=\"Discover More\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Tutorials To Help</h3>\r\nThe days of being overwhelmed by long documents without any visual guidance are over - We have an entire video tutorial series available for you that\'s narrated through the duration.\r\n\r\n[button color=\"see-through\" size=\"large\" url=\"https://www.youtube.com/user/ThemeNectar\" text=\"See The Tutorials\"  image=\"steadysets-icon-screen\" open_new_tab=\"true\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Show Off In Style</h3>\r\nThe looks &amp; functionality you\'ve been dying for are finally easily accessible. We know you\'ll enjoy the freedom to showcase your content in the way that it deserves.\r\n\r\n[button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/portfolio/mobile-weather-app/\" text=\"Shine Like A Star\" image=\"steadysets-icon-star\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"80\" parallax_bg=\"true\"][vc_column centered_text=\"true\" width=\"1/4\" animation=\"fade-in-from-bottom\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-tablet\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>100% Responsive Design</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"200\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"600\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-diamond\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Award Winning Quality</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"400\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"800\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-file\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Extensive Documentation</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"600\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"1000\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-gift\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Loaded With Goodies</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"light\" text_align=\"center\" top_padding=\"120\" bottom_padding=\"120\" video_overlay_color=\"#1fd9fb\" bg_color=\"#020202\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h1 style=\"text-align: center;\">Ready To Stand Out?</h1>\r\n<p style=\"text-align: center;\">[divider line_type=\"No Line\" custom_height=\"30\"]</p>\r\n<p style=\"text-align: center;\">[button color=\"See-Through\" size=\"large\" url=\"http://themeforest.net/item/salient-responsive-multipurpose-theme/4363266\" text=\"Buy Salient Now\" image=\"default-arrow\"]  [button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/contact-alternative/\" text=\"Reach Out To Us\" image=\"default-arrow\"]</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 11:03:04','2015-07-10 11:03:04','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2781,2,'2015-07-10 11:05:13','2015-07-10 11:05:13','','Home','','publish','open','open','','home-3','','','2015-09-21 07:33:05','2015-09-21 07:33:05','',0,'http://punjabyouthclub.com/?p=2781',1,'nav_menu_item','',0),(2784,2,'2015-07-10 11:09:03','2015-07-10 11:09:03','','mann035','','inherit','open','open','','mann035','','','2015-07-10 15:58:24','2015-07-10 15:58:24','',1851,'http://punjabyouthclub.com/wp-content/uploads/2015/07/mann035.jpg',0,'attachment','image/jpeg',0),(2787,2,'2015-07-10 11:12:48','2015-07-10 11:12:48','','IMG_3101','','inherit','open','open','','img_3101','','','2015-07-10 17:04:06','2015-07-10 17:04:06','',1851,'http://punjabyouthclub.com/wp-content/uploads/2015/07/IMG_3101.jpg',0,'attachment','image/jpeg',0),(2788,2,'2015-07-10 13:16:05','2015-07-10 13:16:05','','logo_test','','inherit','open','open','','logo_test','','','2015-07-10 13:16:05','2015-07-10 13:16:05','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/logo_test.jpg',0,'attachment','image/jpeg',0),(2789,2,'2015-07-10 13:35:43','2015-07-10 13:35:43','[vc_row][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]The Punjab Youth Club was established in July 2000. In such a short period of time the club has taken big steps in helping Punjabis involved in various charitable, social reforms and culture/language development.\r\n\r\nThe brief summary of the Club’s history is as following:\r\n\r\nThere was a small print news published in the Punjabi daily Ajit (dated 27/04/2000). It was titled “When Satpal’s daughter cry for her Daddy… At the time of publication of this news this small girl was on the hospital bed unaware of what was happening in the world. The reason for her conditions was the untimely death of her father. He was the sole bread earner of the family. His innocent daughter could not bare the shock and went into Coma. Her world is hanging in a delicate balance of life and death ever since. The bereaved family was finding it hard to fund her costly treatment. The daily Ajit intervened at this point and published an appeal for financial help. The appeal asked donors to come forward to help the family of a small time painter Satpal who would otherwise stop the treatment and let their little girl slip away to hands of awaiting cruel destiny.\r\n\r\nThe appeal was read in Hong Kong and it moved the hearts of Punjabis living here. The first person to come forward was S. Jasmel Singh (Pappu) and after him Master Jagtar Singh and Raja Dhillon along with current members of PYC got together to collect money from the generous Punjabi community of Hong Kong. One hundred thousand rupees were collected and sent to Satpal\'s family. It was decided to send the money under one organization, which would be called PUNJAB YOUTH CLUB. All the members decided to continue with acts like these to serve mankind. It was also decided to diversify the activities of the Club. The club collaborated with Khalsa Diwan to help Gujrat earth quake victims. Apart from that PYC also sponsored 24 orphan children with education scholarship for year 2000-2001. The club also collected donations for Hospital to be built in Badhni Kalan village in Punjab.\r\n\r\nThe club took effective steps to promote our mother tongue and PUNJABI Culture. A programme called MAHEK PUNJAB DI was organized. It was first of its kind experience for local Punjabis who had not experienced any thing like this for decades. Renowned Punjabi singer DURGA RANGILA entertained the local Punjabis. Various other cultural dances included Bhangra and Giddha were also performed by local artists.\r\n\r\nAnother important step taken by PYC was to organize yearly Turban Tying event which takes place on the anniversary of Great Martyr Saheed Udham Singh. These kinds of activities are meant to pass our great heritage and culture to the future generations. Continuing the same trend PYC organized a great show “MAHEK PUNJAB DI 2002” in which we presented the greatest Artist, Singer, Actor and Writer from Punjab Mr. GURDAS MAAN.\r\n\r\nIn October 2002 PYC also helped a person living near Jagraon (Ludhiana) by paying for all his hospital expenses for operation which he wasn’t able to clear himself .\r\n\r\nDue to the sudden death of Jagroop Singh in earlier this year, we supported his brother on expenses to come to Hong Kong from India and to handle the cremation and take his ashes back to India.\r\n\r\nWe sincerely hope that the Punjabi Community appreciates our effort and will support us in all our future events.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','History English','','inherit','open','open','','2662-revision-v1','','','2015-07-10 13:35:43','2015-07-10 13:35:43','',2662,'http://punjabyouthclub.com/index.php/2015/07/10/2662-revision-v1/',0,'revision','',0),(2790,2,'2015-07-10 13:54:03','2015-07-10 13:54:03','','PYC logo new-3B','','inherit','open','open','','pyc-logo-new-3b','','','2015-07-13 06:12:43','2015-07-13 06:12:43','',2692,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC-logo-new-3B.png',0,'attachment','image/png',0),(2791,2,'2015-07-10 14:08:28','2015-07-10 14:08:28','The Punjab Youth Club was established in July 2000. In such a short period of time the club has taken big steps in helping Punjabis involved in various charitable, social reforms and culture/language development.\n\nThe brief summary of the Club’s history is as following:\n\nThere was a small print news published in the Punjabi daily Ajit (dated 27/04/2000). It was titled “When Satpal’s daughter cry for her Daddy… At the time of publication of this news this small girl was on the hospital bed unaware of what was happening in the world. The reason for her conditions was the untimely death of her father. He was the sole bread earner of the family. His innocent daughter could not bare the shock and went into Coma. Her world is hanging in a delicate balance of life and death ever since. The bereaved family was finding it hard to fund her costly treatment. The daily Ajit intervened at this point and published an appeal for financial help. The appeal asked donors to come forward to help the family of a small time painter Satpal who would otherwise stop the treatment and let their little girl slip away to hands of awaiting cruel destiny.\n\nThe appeal was read in Hong Kong and it moved the hearts of Punjabis living here. The first person to come forward was S. Jasmel Singh (Pappu) and after him Master Jagtar Singh and Raja Dhillon along with current members of PYC got together to collect money from the generous Punjabi community of Hong Kong. One hundred thousand rupees were collected and sent to Satpal\'s family. It was decided to send the money under one organization, which would be called PUNJAB YOUTH CLUB. All the members decided to continue with acts like these to serve mankind. It was also decided to diversify the activities of the Club. The club collaborated with Khalsa Diwan to help Gujrat earth quake victims. Apart from that PYC also sponsored 24 orphan children with education scholarship for year 2000-2001. The club also collected donations for Hospital to be built in Badhni Kalan village in Punjab.\n\nThe club took effective steps to promote our mother tongue and PUNJABI Culture. A programme called MAHEK PUNJAB DI was organized. It was first of its kind experience for local Punjabis who had not experienced any thing like this for decades. Renowned Punjabi singer DURGA RANGILA entertained the local Punjabis. Various other cultural dances included Bhangra and Giddha were also performed by local artists.\n\nAnother important step taken by PYC was to organize yearly Turban Tying event which takes place on the anniversary of Great Martyr Saheed Udham Singh. These kinds of activities are meant to pass our great heritage and culture to the future generations. Continuing the same trend PYC organized a great show “MAHEK PUNJAB DI 2002” in which we presented the greatest Artist, Singer, Actor and Writer from Punjab Mr. GURDAS MAAN.\n\nIn October 2002 PYC also helped a person living near Jagraon (Ludhiana) by paying for all his hospital expenses for operation which he wasn’t able to clear himself .\n\nDue to the sudden death of Jagroop Singh in earlier this year, we supported his brother on expenses to come to Hong Kong from India and to handle the cremation and take his ashes back to India.\n\nWe sincerely hope that the Punjabi Community appreciates our effort and will support us in all our future events.','About Us','','inherit','open','open','','2680-autosave-v1','','','2015-07-10 14:08:28','2015-07-10 14:08:28','',2680,'http://punjabyouthclub.com/index.php/2015/07/10/2680-autosave-v1/',0,'revision','',0),(2792,2,'2015-07-10 14:09:28','2015-07-10 14:09:28','The Punjab Youth Club was established in July 2000. In such a short period of time the club has taken big steps in helping Punjabis involved in various charitable, social reforms and culture/language development.\r\n\r\nThe brief summary of the Club’s history is as following:\r\n\r\nThere was a small print news published in the Punjabi daily Ajit (dated 27/04/2000). It was titled “When Satpal’s daughter cry for her Daddy… At the time of publication of this news this small girl was on the hospital bed unaware of what was happening in the world. The reason for her conditions was the untimely death of her father. He was the sole bread earner of the family. His innocent daughter could not bare the shock and went into Coma. Her world is hanging in a delicate balance of life and death ever since. The bereaved family was finding it hard to fund her costly treatment. The daily Ajit intervened at this point and published an appeal for financial help. The appeal asked donors to come forward to help the family of a small time painter Satpal who would otherwise stop the treatment and let their little girl slip away to hands of awaiting cruel destiny.\r\n\r\nThe appeal was read in Hong Kong and it moved the hearts of Punjabis living here. The first person to come forward was S. Jasmel Singh (Pappu) and after him Master Jagtar Singh and Raja Dhillon along with current members of PYC got together to collect money from the generous Punjabi community of Hong Kong. One hundred thousand rupees were collected and sent to Satpal\'s family. It was decided to send the money under one organization, which would be called PUNJAB YOUTH CLUB. All the members decided to continue with acts like these to serve mankind. It was also decided to diversify the activities of the Club. The club collaborated with Khalsa Diwan to help Gujrat earth quake victims. Apart from that PYC also sponsored 24 orphan children with education scholarship for year 2000-2001. The club also collected donations for Hospital to be built in Badhni Kalan village in Punjab.\r\n\r\nThe club took effective steps to promote our mother tongue and PUNJABI Culture. A programme called MAHEK PUNJAB DI was organized. It was first of its kind experience for local Punjabis who had not experienced any thing like this for decades. Renowned Punjabi singer DURGA RANGILA entertained the local Punjabis. Various other cultural dances included Bhangra and Giddha were also performed by local artists.\r\n\r\nAnother important step taken by PYC was to organize yearly Turban Tying event which takes place on the anniversary of Great Martyr Saheed Udham Singh. These kinds of activities are meant to pass our great heritage and culture to the future generations. Continuing the same trend PYC organized a great show “MAHEK PUNJAB DI 2002” in which we presented the greatest Artist, Singer, Actor and Writer from Punjab Mr. GURDAS MAAN.\r\n\r\nIn October 2002 PYC also helped a person living near Jagraon (Ludhiana) by paying for all his hospital expenses for operation which he wasn’t able to clear himself .\r\n\r\nDue to the sudden death of Jagroop Singh in earlier this year, we supported his brother on expenses to come to Hong Kong from India and to handle the cremation and take his ashes back to India.\r\n\r\nWe sincerely hope that the Punjabi Community appreciates our effort and will support us in all our future events.','About Us','','inherit','open','open','','2680-revision-v1','','','2015-07-10 14:09:28','2015-07-10 14:09:28','',2680,'http://punjabyouthclub.com/index.php/2015/07/10/2680-revision-v1/',0,'revision','',0),(2796,2,'2015-07-10 14:38:32','2015-07-10 14:38:32','','PYC_Banner_Logo','','inherit','open','open','','pyc_banner_logo','','','2015-07-10 14:38:32','2015-07-10 14:38:32','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Banner_Logo.png',0,'attachment','image/png',0),(2797,2,'2015-07-10 14:38:33','2015-07-10 14:38:33','','PYC_Banner_Logo-1','','inherit','open','open','','pyc_banner_logo-1','','','2015-07-10 14:38:33','2015-07-10 14:38:33','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Banner_Logo-1.png',0,'attachment','image/png',0),(2798,2,'2015-07-10 14:52:43','2015-07-10 14:52:43','','Spacebound','','inherit','open','open','','1851-revision-v1','','','2015-07-10 14:52:43','2015-07-10 14:52:43','',1851,'http://punjabyouthclub.com/index.php/2015/07/10/1851-revision-v1/',0,'revision','',0),(2800,2,'2015-07-10 14:58:24','2015-07-10 14:58:24','','Mahek Punjab Di 2007','','inherit','open','open','','1851-revision-v1','','','2015-07-10 14:58:24','2015-07-10 14:58:24','',1851,'http://punjabyouthclub.com/index.php/2015/07/10/1851-revision-v1/',0,'revision','',0),(2801,2,'2016-09-21 15:13:15','2016-09-21 15:13:15','[vc_row type=\"full_width_background\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][nectar_slider location=\"Home\" flexible_slider_height=\"true\" full_width=\"true\" arrow_navigation=\"true\" overall_style=\"classic\" bullet_navigation=\"true\" desktop_swipe=\"true\" parallax=\"true\" loop=\"true\" slider_transition=\"slide\" button_sizing=\"regular\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_color=\"#ffffff\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" overlay_strength=\"0.3\"][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\n<h4>Punjab Youth Club (HK)</h4>\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\n<ul>\n 	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\n 	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\n 	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\n 	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\n 	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\n</ul>\n[/text-with-icon][/vc_column][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"200\"][text-with-icon icon_type=\"image_icon\" icon_image=\"3385\"]\n<h4>Punjab Youth Club (HK)</h4>\nSuccessful organizer of sports events and always support other organization in their sports events.\nUpcoming 1st October \"Komagat Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\n<h4>Punjab Youth Club (HK)</h4>\nFirst Punjabi Club who started Bhangra in Hong Kong in year 2000 at 300th Vaisakhi celebrations. Bhangra credit goes to Mr. Bhupinder Pal Singh Mangat.\n\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\" overlay_strength=\"0.3\"][vc_column enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" project_style=\"1\" load_in_animation=\"none\" projects_per_page=\"4\"][/vc_column][/vc_row][vc_row type=\"in_container\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\"][/vc_column][/vc_row][vc_row type=\"in_container\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][vc_gallery type=\"image_grid\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section type=\"full_width_content\" vertically_center_columns=\"true\" image_url=\"2265\" bg_pos=\"Center Center\" parallax_bg=\"true\" background_color=\"#101012\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\"][vc_column centered_text=\"true\" column_padding=\"padding-5-percent\" column_padding_position=\"all\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" background_hover_color_opacity=\"1\" font_color=\"#ffffff\" width=\"1/1\"][testimonial_slider style=\"default\" autorotate=\"7000\"][testimonial name=\"Mukhtar Singh, President KNS Sports Club\" quote=\"As years moved on, it became apparent that Punjab Youth Club is an important part of Hong Kong -Punjabi Society. The pride that we all take is their experience with voluntary endeavor &amp; the friendship that we have developed with them. Wishing Punjab Youth Club all the best &amp; keep up the good work.\" id=\"t1\" title=\"Testimonial\" tab_id=\"1474470554134-6\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\" tab_id=\"1474470554280-10\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\" tab_id=\"1474470554412-3\"][/testimonial][/testimonial_slider][clients columns=\"6\" fade_in_animation=\"true\" carousel=\"true\"][client image=\"3075\" title=\"Client\" id=\"1395635698-1-67\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\" tab_id=\"1474470554552-5\"] Click the edit button to add your testimonial. [/client][client image=\"3085\" title=\"Client\" id=\"1395636117002-0-4\" name=\"Brar Group\" tab_id=\"1474470554680-5\"][/client][client image=\"3077\" title=\"Client\" id=\"1395635965058-0-2\" name=\"Toronto Motel Hong Kong\" tab_id=\"1474470554813-4\"][/client][client image=\"3074\" title=\"Client\" id=\"1395635698-2-45\" name=\"MultiLines Intl. Co. Ltd.\" tab_id=\"1474470554933-10\"] Click the edit button to add your testimonial. [/client][client image=\"3081\" title=\"Client\" id=\"1395636055291-0-6\" name=\"Buttar &amp; Associates\" tab_id=\"1474470555061-0\"][/client][client image=\"3072\" title=\"Client\" id=\"1395635975628-0-8\" name=\"Dr. Fix It All\" tab_id=\"1474470555184-5\"][/client][client image=\"3071\" title=\"Client\" id=\"1436665265751-0-7\" name=\"Dime Air\" tab_id=\"1474470555314-10\"][/client][client image=\"3082\" title=\"Client\" id=\"1436665318808-0-4\" name=\"Dhillon Hotels\" tab_id=\"1474470555438-0\"][/client][client image=\"3076\" title=\"Client\" id=\"1436665294182-0-6\" name=\"Satrang Entertainers\" tab_id=\"1474470555574-9\"][/client][client image=\"3083\" title=\"Client\" id=\"1436665533508-0-1\" name=\"Brar Group\" tab_id=\"1474470555747-6\"][/client][client image=\"3078\" title=\"Client\" id=\"1436665572198-0-8\" name=\"TS Security\" tab_id=\"1474470555870-4\"][/client][client image=\"3073\" title=\"Client\" id=\"1436665626816-0-0\" name=\"Grewal Commercial Services\" tab_id=\"1474470556002-3\"][/client][/clients][/vc_column][/full_width_section][full_width_section type=\"full_width_content\" background_color=\"#171920\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\"][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#20cfef\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\n<h4>Testimonial</h4>\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\n\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\n<h6>President\nHong Kong Hockey Association</h6>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#fe4641\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\n<h4>Testimonial</h4>\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\n\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\n\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\n\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\n<h6>President\nThe Nav Bharat Club, Hong Kong</h6>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#6b58cd\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" font_color=\"#ffffff\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\n<h3>Testimonial</h3>\nIt gives me great pleasure to join the 15th Anniversary celebrations of Punjab Youth Club (HK). As you know, Punjabi culture is one of the richest cultures of the world. During the last century, a lot of Punjabis settled overseas but the beats of Bhangra, steps of Gidda, Punjabi poetry and festivals, all these aspects of their rich culture were missing, far from their homeland. During the last 15 years the Punjab Youth Club has filled this vacuum and has never left any stone unturned in promoting the Punjabi culture, sports and religious activities in Hong Kong.\n\nI believe Punjab Youth Club would continue to serve the Punjabi community in Hong Kong in the years to come and I wish Punjab Youth Club every success in the future.\n\n[button color=\"See-Through\" size=\"large\"  text=\"Mr.Gurdev Singh Galib \" image=\"steadysets-icon-diamond\"]\n<h6>Chief Officer\nCorrectional Services Dept, Hong Kong</h6>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-autosave-v1','','','2016-09-21 15:13:15','2016-09-21 15:13:15','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-autosave-v1/',0,'revision','',0),(2802,2,'2015-07-10 15:10:12','2015-07-10 15:10:12','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"1\" category=\"mahek-punjab-di-2007\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Portfolio Fullwidth Default','','inherit','open','open','','743-revision-v1','','','2015-07-10 15:10:12','2015-07-10 15:10:12','',743,'http://punjabyouthclub.com/index.php/2015/07/10/743-revision-v1/',0,'revision','',0),(2803,2,'2015-07-10 15:15:05','2015-07-10 15:15:05','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"120\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"600\"][text-with-icon icon_type=\"font_icon\" icon=\"linecon-icon-display\" color=\"Accent-Color\"]\r\n<h4>Test 1</h4>\r\nPunjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"800\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-file-settings\" color=\"Accent-Color\"]\r\n<h4>Test 2</h4>\r\nPunjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"1000\"][text-with-icon icon_type=\"font_icon\" icon=\"linecon-icon-settings\" color=\"Accent-Color\"]\r\n<h4>Test 1</h4>\r\nPunjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club Punjab Youth Club[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#6b58cd\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Like What You See? We\'re Just Getting Started [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://themenectar.com/demo/salient-frostwave/portfolio-fullwidth-masonry/\" text=\"View Portfolio\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"dark\" bottom_padding=\"90\" type=\"full_width_background\" text_align=\"left\" top_padding=\"120\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Drag &amp; drop page builder</li>\r\n	<li>Responsive &amp; retina ready design</li>\r\n	<li>Extensive + powerful theme options</li>\r\n	<li>Exclusive nectar slider included</li>\r\n	<li>WooCommerce integration</li>\r\n	<li>Unlimited colors &amp; layouts</li>\r\n	<li>HD video tutorial series</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-star-empty\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Gorgeous &amp; trend-setting design</li>\r\n	<li>Super intuitive shortcode generator</li>\r\n	<li>Three full icon sets tightly integrated</li>\r\n	<li>Loads of Google fonts to choose from</li>\r\n	<li>Premium Support &amp; updates for free</li>\r\n	<li>Optional AJAX search in header</li>\r\n	<li>SEO optimized &amp; clean code</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Jaw-dropping CSS3 animations</li>\r\n	<li>Tons of portfolio &amp; blog styles</li>\r\n	<li>Optional smooth scrolling effect</li>\r\n	<li>Advanced typography options</li>\r\n	<li>Boxed &amp; wide layout options</li>\r\n	<li>Built in \"love\" system</li>\r\n	<li>Built in mega menu</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][/full_width_section][vc_row type=\"full_width_content\" bg_position=\"center center\" bg_repeat=\"repeat\" text_color=\"light\" text_align=\"center\" bg_color=\"#0e1015\" top_padding=\"60\" bottom_padding=\"60\"][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"14\" subject=\"Theme Users\" symbol_position=\"after\" symbol=\"k\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"1538\" subject=\"Cups of Coffee\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"463\" subject=\"Features Added\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"7200\" subject=\"Tickets Answered\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" delay=\"0\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"1000\" subject=\"YouTube Subscribers\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" delay=\"0\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"600\" subject=\"Google Fonts\" symbol_position=\"after\" symbol=\"*\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Fluid\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>A Breeze To Build With</h3>\r\nTake full control of the power Salient has to offer with our new exciting page builder. You\'ll be grinning in delight when you see just how easy it is to create stunning layouts with little effort.\r\n\r\n[button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/features/page-builder/\" text=\"Discover More\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Tutorials To Help</h3>\r\nThe days of being overwhelmed by long documents without any visual guidance are over - We have an entire video tutorial series available for you that\'s narrated through the duration.\r\n\r\n[button color=\"see-through\" size=\"large\" url=\"https://www.youtube.com/user/ThemeNectar\" text=\"See The Tutorials\"  image=\"steadysets-icon-screen\" open_new_tab=\"true\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Show Off In Style</h3>\r\nThe looks &amp; functionality you\'ve been dying for are finally easily accessible. We know you\'ll enjoy the freedom to showcase your content in the way that it deserves.\r\n\r\n[button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/portfolio/mobile-weather-app/\" text=\"Shine Like A Star\" image=\"steadysets-icon-star\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"80\" parallax_bg=\"true\"][vc_column centered_text=\"true\" width=\"1/4\" animation=\"fade-in-from-bottom\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-tablet\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>100% Responsive Design</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"200\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"600\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-diamond\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Award Winning Quality</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"400\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"800\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-file\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Extensive Documentation</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"600\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"1000\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-gift\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Loaded With Goodies</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"light\" text_align=\"center\" top_padding=\"120\" bottom_padding=\"120\" video_overlay_color=\"#1fd9fb\" bg_color=\"#020202\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h1 style=\"text-align: center;\">Ready To Stand Out?</h1>\r\n<p style=\"text-align: center;\">[divider line_type=\"No Line\" custom_height=\"30\"]</p>\r\n<p style=\"text-align: center;\">[button color=\"See-Through\" size=\"large\" url=\"http://themeforest.net/item/salient-responsive-multipurpose-theme/4363266\" text=\"Buy Salient Now\" image=\"default-arrow\"]  [button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/contact-alternative/\" text=\"Reach Out To Us\" image=\"default-arrow\"]</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 15:15:05','2015-07-10 15:15:05','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2804,2,'2015-07-10 15:19:38','2015-07-10 15:19:38','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#6b58cd\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Like What You See? We\'re Just Getting Started [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://themenectar.com/demo/salient-frostwave/portfolio-fullwidth-masonry/\" text=\"View Portfolio\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"dark\" bottom_padding=\"90\" type=\"full_width_background\" text_align=\"left\" top_padding=\"120\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Drag &amp; drop page builder</li>\r\n	<li>Responsive &amp; retina ready design</li>\r\n	<li>Extensive + powerful theme options</li>\r\n	<li>Exclusive nectar slider included</li>\r\n	<li>WooCommerce integration</li>\r\n	<li>Unlimited colors &amp; layouts</li>\r\n	<li>HD video tutorial series</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-star-empty\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Gorgeous &amp; trend-setting design</li>\r\n	<li>Super intuitive shortcode generator</li>\r\n	<li>Three full icon sets tightly integrated</li>\r\n	<li>Loads of Google fonts to choose from</li>\r\n	<li>Premium Support &amp; updates for free</li>\r\n	<li>Optional AJAX search in header</li>\r\n	<li>SEO optimized &amp; clean code</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Jaw-dropping CSS3 animations</li>\r\n	<li>Tons of portfolio &amp; blog styles</li>\r\n	<li>Optional smooth scrolling effect</li>\r\n	<li>Advanced typography options</li>\r\n	<li>Boxed &amp; wide layout options</li>\r\n	<li>Built in \"love\" system</li>\r\n	<li>Built in mega menu</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][/full_width_section][vc_row type=\"full_width_content\" bg_position=\"center center\" bg_repeat=\"repeat\" text_color=\"light\" text_align=\"center\" bg_color=\"#0e1015\" top_padding=\"60\" bottom_padding=\"60\"][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"14\" subject=\"Theme Users\" symbol_position=\"after\" symbol=\"k\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"1538\" subject=\"Cups of Coffee\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"463\" subject=\"Features Added\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"7200\" subject=\"Tickets Answered\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" delay=\"0\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"1000\" subject=\"YouTube Subscribers\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" delay=\"0\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"600\" subject=\"Google Fonts\" symbol_position=\"after\" symbol=\"*\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Fluid\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>A Breeze To Build With</h3>\r\nTake full control of the power Salient has to offer with our new exciting page builder. You\'ll be grinning in delight when you see just how easy it is to create stunning layouts with little effort.\r\n\r\n[button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/features/page-builder/\" text=\"Discover More\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Tutorials To Help</h3>\r\nThe days of being overwhelmed by long documents without any visual guidance are over - We have an entire video tutorial series available for you that\'s narrated through the duration.\r\n\r\n[button color=\"see-through\" size=\"large\" url=\"https://www.youtube.com/user/ThemeNectar\" text=\"See The Tutorials\"  image=\"steadysets-icon-screen\" open_new_tab=\"true\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Show Off In Style</h3>\r\nThe looks &amp; functionality you\'ve been dying for are finally easily accessible. We know you\'ll enjoy the freedom to showcase your content in the way that it deserves.\r\n\r\n[button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/portfolio/mobile-weather-app/\" text=\"Shine Like A Star\" image=\"steadysets-icon-star\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"80\" parallax_bg=\"true\"][vc_column centered_text=\"true\" width=\"1/4\" animation=\"fade-in-from-bottom\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-tablet\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>100% Responsive Design</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"200\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"600\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-diamond\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Award Winning Quality</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"400\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"800\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-file\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Extensive Documentation</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"600\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"1000\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-gift\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Loaded With Goodies</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"light\" text_align=\"center\" top_padding=\"120\" bottom_padding=\"120\" video_overlay_color=\"#1fd9fb\" bg_color=\"#020202\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h1 style=\"text-align: center;\">Ready To Stand Out?</h1>\r\n<p style=\"text-align: center;\">[divider line_type=\"No Line\" custom_height=\"30\"]</p>\r\n<p style=\"text-align: center;\">[button color=\"See-Through\" size=\"large\" url=\"http://themeforest.net/item/salient-responsive-multipurpose-theme/4363266\" text=\"Buy Salient Now\" image=\"default-arrow\"]  [button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/contact-alternative/\" text=\"Reach Out To Us\" image=\"default-arrow\"]</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 15:19:38','2015-07-10 15:19:38','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2805,2,'2015-07-10 15:22:36','2015-07-10 15:22:36','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#6b58cd\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Punjab Youth Club\'s History through photos [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"<a href=\"http://punjabyouthclub.com/index.php/photo-gallery/\">http://themenectar.com/demo/salient-frostwave/portfolio-fullwidth-masonry</a>/\" text=\"Let\'s View Now\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"dark\" bottom_padding=\"90\" type=\"full_width_background\" text_align=\"left\" top_padding=\"120\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Drag &amp; drop page builder</li>\r\n	<li>Responsive &amp; retina ready design</li>\r\n	<li>Extensive + powerful theme options</li>\r\n	<li>Exclusive nectar slider included</li>\r\n	<li>WooCommerce integration</li>\r\n	<li>Unlimited colors &amp; layouts</li>\r\n	<li>HD video tutorial series</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-star-empty\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Gorgeous &amp; trend-setting design</li>\r\n	<li>Super intuitive shortcode generator</li>\r\n	<li>Three full icon sets tightly integrated</li>\r\n	<li>Loads of Google fonts to choose from</li>\r\n	<li>Premium Support &amp; updates for free</li>\r\n	<li>Optional AJAX search in header</li>\r\n	<li>SEO optimized &amp; clean code</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Jaw-dropping CSS3 animations</li>\r\n	<li>Tons of portfolio &amp; blog styles</li>\r\n	<li>Optional smooth scrolling effect</li>\r\n	<li>Advanced typography options</li>\r\n	<li>Boxed &amp; wide layout options</li>\r\n	<li>Built in \"love\" system</li>\r\n	<li>Built in mega menu</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][/full_width_section][vc_row type=\"full_width_content\" bg_position=\"center center\" bg_repeat=\"repeat\" text_color=\"light\" text_align=\"center\" bg_color=\"#0e1015\" top_padding=\"60\" bottom_padding=\"60\"][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"14\" subject=\"Theme Users\" symbol_position=\"after\" symbol=\"k\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"1538\" subject=\"Cups of Coffee\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"463\" subject=\"Features Added\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"7200\" subject=\"Tickets Answered\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" delay=\"0\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"1000\" subject=\"YouTube Subscribers\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" delay=\"0\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"600\" subject=\"Google Fonts\" symbol_position=\"after\" symbol=\"*\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Fluid\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>A Breeze To Build With</h3>\r\nTake full control of the power Salient has to offer with our new exciting page builder. You\'ll be grinning in delight when you see just how easy it is to create stunning layouts with little effort.\r\n\r\n[button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/features/page-builder/\" text=\"Discover More\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Tutorials To Help</h3>\r\nThe days of being overwhelmed by long documents without any visual guidance are over - We have an entire video tutorial series available for you that\'s narrated through the duration.\r\n\r\n[button color=\"see-through\" size=\"large\" url=\"https://www.youtube.com/user/ThemeNectar\" text=\"See The Tutorials\"  image=\"steadysets-icon-screen\" open_new_tab=\"true\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Show Off In Style</h3>\r\nThe looks &amp; functionality you\'ve been dying for are finally easily accessible. We know you\'ll enjoy the freedom to showcase your content in the way that it deserves.\r\n\r\n[button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/portfolio/mobile-weather-app/\" text=\"Shine Like A Star\" image=\"steadysets-icon-star\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"80\" parallax_bg=\"true\"][vc_column centered_text=\"true\" width=\"1/4\" animation=\"fade-in-from-bottom\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-tablet\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>100% Responsive Design</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"200\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"600\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-diamond\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Award Winning Quality</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"400\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"800\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-file\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Extensive Documentation</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"600\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"1000\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-gift\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Loaded With Goodies</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"light\" text_align=\"center\" top_padding=\"120\" bottom_padding=\"120\" video_overlay_color=\"#1fd9fb\" bg_color=\"#020202\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h1 style=\"text-align: center;\">Ready To Stand Out?</h1>\r\n<p style=\"text-align: center;\">[divider line_type=\"No Line\" custom_height=\"30\"]</p>\r\n<p style=\"text-align: center;\">[button color=\"See-Through\" size=\"large\" url=\"http://themeforest.net/item/salient-responsive-multipurpose-theme/4363266\" text=\"Buy Salient Now\" image=\"default-arrow\"]  [button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/contact-alternative/\" text=\"Reach Out To Us\" image=\"default-arrow\"]</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 15:22:36','2015-07-10 15:22:36','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2806,2,'2015-07-10 15:24:47','2015-07-10 15:24:47','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#6b58cd\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Punjab Youth Club\'s History through photos [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://punjabyouthclub.com/index.php/photo-gallery//\" text=\"Let\'s View Now\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"dark\" bottom_padding=\"90\" type=\"full_width_background\" text_align=\"left\" top_padding=\"120\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Drag &amp; drop page builder</li>\r\n	<li>Responsive &amp; retina ready design</li>\r\n	<li>Extensive + powerful theme options</li>\r\n	<li>Exclusive nectar slider included</li>\r\n	<li>WooCommerce integration</li>\r\n	<li>Unlimited colors &amp; layouts</li>\r\n	<li>HD video tutorial series</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-star-empty\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Gorgeous &amp; trend-setting design</li>\r\n	<li>Super intuitive shortcode generator</li>\r\n	<li>Three full icon sets tightly integrated</li>\r\n	<li>Loads of Google fonts to choose from</li>\r\n	<li>Premium Support &amp; updates for free</li>\r\n	<li>Optional AJAX search in header</li>\r\n	<li>SEO optimized &amp; clean code</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Jaw-dropping CSS3 animations</li>\r\n	<li>Tons of portfolio &amp; blog styles</li>\r\n	<li>Optional smooth scrolling effect</li>\r\n	<li>Advanced typography options</li>\r\n	<li>Boxed &amp; wide layout options</li>\r\n	<li>Built in \"love\" system</li>\r\n	<li>Built in mega menu</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][/full_width_section][vc_row type=\"full_width_content\" bg_position=\"center center\" bg_repeat=\"repeat\" text_color=\"light\" text_align=\"center\" bg_color=\"#0e1015\" top_padding=\"60\" bottom_padding=\"60\"][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"14\" subject=\"Theme Users\" symbol_position=\"after\" symbol=\"k\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"1538\" subject=\"Cups of Coffee\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"463\" subject=\"Features Added\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"7200\" subject=\"Tickets Answered\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" delay=\"0\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"1000\" subject=\"YouTube Subscribers\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" delay=\"0\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"600\" subject=\"Google Fonts\" symbol_position=\"after\" symbol=\"*\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Fluid\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>A Breeze To Build With</h3>\r\nTake full control of the power Salient has to offer with our new exciting page builder. You\'ll be grinning in delight when you see just how easy it is to create stunning layouts with little effort.\r\n\r\n[button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/features/page-builder/\" text=\"Discover More\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Tutorials To Help</h3>\r\nThe days of being overwhelmed by long documents without any visual guidance are over - We have an entire video tutorial series available for you that\'s narrated through the duration.\r\n\r\n[button color=\"see-through\" size=\"large\" url=\"https://www.youtube.com/user/ThemeNectar\" text=\"See The Tutorials\"  image=\"steadysets-icon-screen\" open_new_tab=\"true\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Show Off In Style</h3>\r\nThe looks &amp; functionality you\'ve been dying for are finally easily accessible. We know you\'ll enjoy the freedom to showcase your content in the way that it deserves.\r\n\r\n[button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/portfolio/mobile-weather-app/\" text=\"Shine Like A Star\" image=\"steadysets-icon-star\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"80\" parallax_bg=\"true\"][vc_column centered_text=\"true\" width=\"1/4\" animation=\"fade-in-from-bottom\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-tablet\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>100% Responsive Design</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"200\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"600\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-diamond\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Award Winning Quality</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"400\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"800\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-file\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Extensive Documentation</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"600\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"1000\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-gift\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Loaded With Goodies</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"light\" text_align=\"center\" top_padding=\"120\" bottom_padding=\"120\" video_overlay_color=\"#1fd9fb\" bg_color=\"#020202\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h1 style=\"text-align: center;\">Ready To Stand Out?</h1>\r\n<p style=\"text-align: center;\">[divider line_type=\"No Line\" custom_height=\"30\"]</p>\r\n<p style=\"text-align: center;\">[button color=\"See-Through\" size=\"large\" url=\"http://themeforest.net/item/salient-responsive-multipurpose-theme/4363266\" text=\"Buy Salient Now\" image=\"default-arrow\"]  [button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/contact-alternative/\" text=\"Reach Out To Us\" image=\"default-arrow\"]</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 15:24:47','2015-07-10 15:24:47','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2807,2,'2015-07-10 15:26:35','2015-07-10 15:26:35','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"1\" category=\"mahek-punjab-di-2007\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-10 15:26:35','2015-07-10 15:26:35','',743,'http://punjabyouthclub.com/index.php/2015/07/10/743-revision-v1/',0,'revision','',0),(2808,2,'2015-07-10 15:26:47','2015-07-10 15:26:47','<p>[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"1\" category=\"mahek-punjab-di-2007\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]</p>\r\n','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-10 15:26:47','2015-07-10 15:26:47','',743,'http://punjabyouthclub.com/index.php/2015/07/10/743-revision-v1/',0,'revision','',0),(2809,2,'2015-07-10 15:28:02','2015-07-10 15:28:02','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"1\" category=\"mahek-punjab-di-2007\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-10 15:28:02','2015-07-10 15:28:02','',743,'http://punjabyouthclub.com/index.php/2015/07/10/743-revision-v1/',0,'revision','',0),(2810,2,'2015-07-10 15:35:35','2015-07-10 15:35:35','[gallery link=\"file\" ids=\"2784,2783,2782,2787\"]\r\n\r\n&nbsp;','Mahek Punjab Di 2007','','inherit','open','open','','1851-revision-v1','','','2015-07-10 15:35:35','2015-07-10 15:35:35','',1851,'http://punjabyouthclub.com/index.php/2015/07/10/1851-revision-v1/',0,'revision','',0),(2811,2,'2015-07-10 15:35:53','2015-07-10 15:35:53','','pchetna Logo copy','','inherit','open','open','','pchetna-logo-copy','','','2015-07-10 15:35:53','2015-07-10 15:35:53','',2744,'http://punjabyouthclub.com/wp-content/uploads/2013/06/pchetna-Logo-copy.jpg',0,'attachment','image/jpeg',0),(2812,2,'2015-07-10 15:41:41','2015-07-10 15:41:41','[gallery link=\"file\" size=\"full\" ids=\"2784,2783,2782,2787\"]\r\n\r\n&nbsp;','Mahek Punjab Di 2007','','inherit','open','open','','1851-revision-v1','','','2015-07-10 15:41:41','2015-07-10 15:41:41','',1851,'http://punjabyouthclub.com/index.php/2015/07/10/1851-revision-v1/',0,'revision','',0),(2813,2,'2015-07-10 15:44:45','2015-07-10 15:44:45','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#6b58cd\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Punjab Youth Club\'s History through photos [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://punjabyouthclub.com/index.php/photo-gallery//\" text=\"Let\'s View Now\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"dark\" bottom_padding=\"90\" type=\"full_width_background\" text_align=\"left\" top_padding=\"120\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-star-empty\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][/full_width_section][vc_row type=\"full_width_content\" bg_position=\"center center\" bg_repeat=\"repeat\" text_color=\"light\" text_align=\"center\" bg_color=\"#0e1015\" top_padding=\"60\" bottom_padding=\"60\"][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"14\" subject=\"Theme Users\" symbol_position=\"after\" symbol=\"k\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"1538\" subject=\"Cups of Coffee\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"463\" subject=\"Features Added\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"7200\" subject=\"Tickets Answered\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" delay=\"0\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"1000\" subject=\"YouTube Subscribers\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" delay=\"0\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"600\" subject=\"Google Fonts\" symbol_position=\"after\" symbol=\"*\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Fluid\" url=\"Http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>A Breeze To Build With</h3>\r\nTake full control of the power Salient has to offer with our new exciting page builder. You\'ll be grinning in delight when you see just how easy it is to create stunning layouts with little effort.\r\n\r\n[button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/features/page-builder/\" text=\"Discover More\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Tutorials To Help</h3>\r\nThe days of being overwhelmed by long documents without any visual guidance are over - We have an entire video tutorial series available for you that\'s narrated through the duration.\r\n\r\n[button color=\"see-through\" size=\"large\" url=\"https://www.youtube.com/user/ThemeNectar\" text=\"See The Tutorials\"  image=\"steadysets-icon-screen\" open_new_tab=\"true\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Show Off In Style</h3>\r\nThe looks &amp; functionality you\'ve been dying for are finally easily accessible. We know you\'ll enjoy the freedom to showcase your content in the way that it deserves.\r\n\r\n[button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/portfolio/mobile-weather-app/\" text=\"Shine Like A Star\" image=\"steadysets-icon-star\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"80\" parallax_bg=\"true\"][vc_column centered_text=\"true\" width=\"1/4\" animation=\"fade-in-from-bottom\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-tablet\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>100% Responsive Design</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"200\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"600\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-diamond\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Award Winning Quality</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"400\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"800\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-file\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Extensive Documentation</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"600\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"1000\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-gift\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Loaded With Goodies</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"light\" text_align=\"center\" top_padding=\"120\" bottom_padding=\"120\" video_overlay_color=\"#1fd9fb\" bg_color=\"#020202\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h1 style=\"text-align: center;\">Ready To Stand Out?</h1>\r\n<p style=\"text-align: center;\">[divider line_type=\"No Line\" custom_height=\"30\"]</p>\r\n<p style=\"text-align: center;\">[button color=\"See-Through\" size=\"large\" url=\"http://themeforest.net/item/salient-responsive-multipurpose-theme/4363266\" text=\"Buy Salient Now\" image=\"default-arrow\"]  [button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/contact-alternative/\" text=\"Reach Out To Us\" image=\"default-arrow\"]</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 15:44:45','2015-07-10 15:44:45','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2814,2,'2015-07-10 15:47:54','2015-07-10 15:47:54','[gallery size=\"full\" columns=\"1\" ids=\"2784,2783,2782,2787\"]\r\n\r\n&nbsp;','Mahek Punjab Di 2007','','inherit','open','open','','1851-revision-v1','','','2015-07-10 15:47:54','2015-07-10 15:47:54','',1851,'http://punjabyouthclub.com/index.php/2015/07/10/1851-revision-v1/',0,'revision','',0),(2815,2,'2015-07-10 15:56:07','2015-07-10 15:56:07','[gallery size=\"large\" columns=\"2\" link=\"none\" ids=\"2784,2783,2782,2787\"]\r\n\r\n&nbsp;','Mahek Punjab Di 2007','','inherit','open','open','','1851-revision-v1','','','2015-07-10 15:56:07','2015-07-10 15:56:07','',1851,'http://punjabyouthclub.com/index.php/2015/07/10/1851-revision-v1/',0,'revision','',0),(2816,2,'2015-07-10 15:58:34','2015-07-10 15:58:34','&nbsp;\r\n\r\n&nbsp;','Mahek Punjab Di 2007','','inherit','open','open','','1851-revision-v1','','','2015-07-10 15:58:34','2015-07-10 15:58:34','',1851,'http://punjabyouthclub.com/index.php/2015/07/10/1851-revision-v1/',0,'revision','',0),(2817,2,'2015-07-10 16:04:26','2015-07-10 16:04:26','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#20cfef\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Punjab Youth Club\'s History through photos [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://punjabyouthclub.com/index.php/photo-gallery//\" text=\"Let\'s View Now\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"dark\" bottom_padding=\"90\" type=\"full_width_background\" text_align=\"left\" top_padding=\"120\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-star-empty\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][/full_width_section][vc_row type=\"full_width_content\" bg_position=\"center center\" bg_repeat=\"repeat\" text_color=\"light\" text_align=\"center\" bg_color=\"#0e1015\" top_padding=\"60\" bottom_padding=\"60\"][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"14\" subject=\"Theme Users\" symbol_position=\"after\" symbol=\"k\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"1538\" subject=\"Cups of Coffee\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"463\" subject=\"Features Added\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" delay=\"0\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"7200\" subject=\"Tickets Answered\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" delay=\"0\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"1000\" subject=\"YouTube Subscribers\" symbol_position=\"after\"][/vc_column][vc_column width=\"1/6\" animation=\"fade-in\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\" delay=\"0\" enable_animation=\"true\"][milestone color=\"Extra-Color-2\" number=\"600\" subject=\"Google Fonts\" symbol_position=\"after\" symbol=\"*\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Fluid\" url=\"Http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>A Breeze To Build With</h3>\r\nTake full control of the power Salient has to offer with our new exciting page builder. You\'ll be grinning in delight when you see just how easy it is to create stunning layouts with little effort.\r\n\r\n[button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/features/page-builder/\" text=\"Discover More\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Tutorials To Help</h3>\r\nThe days of being overwhelmed by long documents without any visual guidance are over - We have an entire video tutorial series available for you that\'s narrated through the duration.\r\n\r\n[button color=\"see-through\" size=\"large\" url=\"https://www.youtube.com/user/ThemeNectar\" text=\"See The Tutorials\"  image=\"steadysets-icon-screen\" open_new_tab=\"true\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Show Off In Style</h3>\r\nThe looks &amp; functionality you\'ve been dying for are finally easily accessible. We know you\'ll enjoy the freedom to showcase your content in the way that it deserves.\r\n\r\n[button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/portfolio/mobile-weather-app/\" text=\"Shine Like A Star\" image=\"steadysets-icon-star\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"80\" parallax_bg=\"true\"][vc_column centered_text=\"true\" width=\"1/4\" animation=\"fade-in-from-bottom\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-tablet\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>100% Responsive Design</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"200\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"600\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-diamond\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Award Winning Quality</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"400\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"800\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-file\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Extensive Documentation</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"600\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"1000\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-gift\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Loaded With Goodies</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"light\" text_align=\"center\" top_padding=\"120\" bottom_padding=\"120\" video_overlay_color=\"#1fd9fb\" bg_color=\"#020202\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h1 style=\"text-align: center;\">Ready To Stand Out?</h1>\r\n<p style=\"text-align: center;\">[divider line_type=\"No Line\" custom_height=\"30\"]</p>\r\n<p style=\"text-align: center;\">[button color=\"See-Through\" size=\"large\" url=\"http://themeforest.net/item/salient-responsive-multipurpose-theme/4363266\" text=\"Buy Salient Now\" image=\"default-arrow\"]  [button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/contact-alternative/\" text=\"Reach Out To Us\" image=\"default-arrow\"]</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 16:04:26','2015-07-10 16:04:26','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2818,2,'2015-07-10 16:05:08','2015-07-10 16:05:08','','DSC07235','','inherit','open','open','','dsc07235','','','2015-07-10 16:05:08','2015-07-10 16:05:08','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/DSC07235.jpg',0,'attachment','image/jpeg',0),(2819,2,'2015-07-10 16:05:13','2015-07-10 16:05:13','','IMG_3101','','inherit','open','open','','img_3101-2','','','2015-07-10 16:05:13','2015-07-10 16:05:13','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3101.jpg',0,'attachment','image/jpeg',0),(2820,2,'2015-07-10 16:05:17','2015-07-10 16:05:17','','IMG_3102','','inherit','open','open','','img_3102','','','2015-07-10 16:05:17','2015-07-10 16:05:17','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3102.jpg',0,'attachment','image/jpeg',0),(2821,2,'2015-07-10 16:05:29','2015-07-10 16:05:29','','IMG_3104','','inherit','open','open','','img_3104','','','2015-07-10 16:05:29','2015-07-10 16:05:29','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3104.jpg',0,'attachment','image/jpeg',0),(2822,2,'2015-07-10 16:05:33','2015-07-10 16:05:33','','IMG_3105','','inherit','open','open','','img_3105','','','2015-07-10 16:05:33','2015-07-10 16:05:33','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3105.jpg',0,'attachment','image/jpeg',0),(2823,2,'2015-07-10 16:05:35','2015-07-10 16:05:35','','IMG_3114','','inherit','open','open','','img_3114','','','2015-07-10 16:05:35','2015-07-10 16:05:35','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3114.jpg',0,'attachment','image/jpeg',0),(2824,2,'2015-07-10 16:05:39','2015-07-10 16:05:39','','IMG_3115','','inherit','open','open','','img_3115','','','2015-07-10 16:05:39','2015-07-10 16:05:39','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3115.jpg',0,'attachment','image/jpeg',0),(2825,2,'2015-07-10 16:05:42','2015-07-10 16:05:42','','IMG_3117','','inherit','open','open','','img_3117','','','2015-07-10 16:05:42','2015-07-10 16:05:42','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3117.jpg',0,'attachment','image/jpeg',0),(2826,2,'2015-07-10 16:05:46','2015-07-10 16:05:46','','IMG_3119','','inherit','open','open','','img_3119','','','2015-07-10 16:05:46','2015-07-10 16:05:46','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3119.jpg',0,'attachment','image/jpeg',0),(2827,2,'2015-07-10 16:05:49','2015-07-10 16:05:49','','IMG_3123','','inherit','open','open','','img_3123','','','2015-07-10 16:05:49','2015-07-10 16:05:49','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3123.jpg',0,'attachment','image/jpeg',0),(2828,2,'2015-07-10 16:05:53','2015-07-10 16:05:53','','IMG_3125','','inherit','open','open','','img_3125','','','2015-07-10 16:05:53','2015-07-10 16:05:53','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3125.jpg',0,'attachment','image/jpeg',0),(2829,2,'2015-07-10 16:05:57','2015-07-10 16:05:57','','IMG_3126','','inherit','open','open','','img_3126','','','2015-07-10 16:05:57','2015-07-10 16:05:57','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3126.jpg',0,'attachment','image/jpeg',0),(2830,2,'2015-07-10 16:06:01','2015-07-10 16:06:01','','IMG_3128','','inherit','open','open','','img_3128','','','2015-07-10 16:06:01','2015-07-10 16:06:01','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3128.jpg',0,'attachment','image/jpeg',0),(2831,2,'2015-07-10 16:06:04','2015-07-10 16:06:04','','IMG_3133','','inherit','open','open','','img_3133','','','2015-07-10 16:06:04','2015-07-10 16:06:04','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3133.jpg',0,'attachment','image/jpeg',0),(2832,2,'2015-07-10 16:06:08','2015-07-10 16:06:08','','IMG_3137','','inherit','open','open','','img_3137','','','2015-07-10 16:06:08','2015-07-10 16:06:08','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3137.jpg',0,'attachment','image/jpeg',0),(2833,2,'2015-07-10 16:06:11','2015-07-10 16:06:11','','IMG_3143','','inherit','open','open','','img_3143','','','2015-07-10 16:06:11','2015-07-10 16:06:11','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3143.jpg',0,'attachment','image/jpeg',0),(2834,2,'2015-07-10 16:06:16','2015-07-10 16:06:16','','IMG_3144','','inherit','open','open','','img_3144','','','2015-07-10 16:06:16','2015-07-10 16:06:16','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3144.jpg',0,'attachment','image/jpeg',0),(2835,2,'2015-07-10 16:06:19','2015-07-10 16:06:19','','IMG_3145','','inherit','open','open','','img_3145','','','2015-07-10 16:06:19','2015-07-10 16:06:19','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3145.jpg',0,'attachment','image/jpeg',0),(2836,2,'2015-07-10 16:06:22','2015-07-10 16:06:22','','IMG_3147','','inherit','open','open','','img_3147','','','2015-07-10 16:06:22','2015-07-10 16:06:22','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3147.jpg',0,'attachment','image/jpeg',0),(2837,2,'2015-07-10 16:06:25','2015-07-10 16:06:25','','IMG_3150','','inherit','open','open','','img_3150','','','2015-07-10 16:06:25','2015-07-10 16:06:25','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3150.jpg',0,'attachment','image/jpeg',0),(2838,2,'2015-07-10 16:06:28','2015-07-10 16:06:28','','IMG_3157','','inherit','open','open','','img_3157','','','2015-07-10 16:06:28','2015-07-10 16:06:28','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3157.jpg',0,'attachment','image/jpeg',0),(2839,2,'2015-07-10 16:06:31','2015-07-10 16:06:31','','IMG_3161','','inherit','open','open','','img_3161','','','2015-07-10 16:06:31','2015-07-10 16:06:31','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3161.jpg',0,'attachment','image/jpeg',0),(2840,2,'2015-07-10 16:06:35','2015-07-10 16:06:35','','IMG_3162','','inherit','open','open','','img_3162','','','2015-07-10 16:06:35','2015-07-10 16:06:35','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3162.jpg',0,'attachment','image/jpeg',0),(2841,2,'2015-07-10 16:06:38','2015-07-10 16:06:38','','IMG_3163','','inherit','open','open','','img_3163','','','2015-07-10 16:06:38','2015-07-10 16:06:38','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3163.jpg',0,'attachment','image/jpeg',0),(2842,2,'2015-07-10 16:06:41','2015-07-10 16:06:41','','IMG_3166','','inherit','open','open','','img_3166','','','2015-07-10 16:06:41','2015-07-10 16:06:41','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3166.jpg',0,'attachment','image/jpeg',0),(2843,2,'2015-07-10 16:07:20','2015-07-10 16:07:20','','IMG_3173','','inherit','open','open','','img_3173','','','2015-07-10 16:07:20','2015-07-10 16:07:20','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3173.jpg',0,'attachment','image/jpeg',0),(2844,2,'2015-07-10 16:07:32','2015-07-10 16:07:32','','IMG_3183','','inherit','open','open','','img_3183','','','2015-07-10 16:07:32','2015-07-10 16:07:32','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3183.jpg',0,'attachment','image/jpeg',0),(2845,2,'2015-07-10 16:07:52','2015-07-10 16:07:52','','mann004','','inherit','open','open','','mann004','','','2015-07-10 16:07:52','2015-07-10 16:07:52','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann004.jpg',0,'attachment','image/jpeg',0),(2846,2,'2015-07-10 16:07:58','2015-07-10 16:07:58','','mann006','','inherit','open','open','','mann006','','','2015-07-10 16:07:58','2015-07-10 16:07:58','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann006.jpg',0,'attachment','image/jpeg',0),(2847,2,'2015-07-10 16:08:01','2015-07-10 16:08:01','','mann007','','inherit','open','open','','mann007','','','2015-07-10 16:08:01','2015-07-10 16:08:01','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann007.jpg',0,'attachment','image/jpeg',0),(2848,2,'2015-07-10 16:08:06','2015-07-10 16:08:06','','mann008','','inherit','open','open','','mann008','','','2015-07-10 16:08:06','2015-07-10 16:08:06','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann008.jpg',0,'attachment','image/jpeg',0),(2849,2,'2015-07-10 16:08:10','2015-07-10 16:08:10','','mann009','','inherit','open','open','','mann009','','','2015-07-10 16:08:10','2015-07-10 16:08:10','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann009.jpg',0,'attachment','image/jpeg',0),(2850,2,'2015-07-10 16:08:15','2015-07-10 16:08:15','','mann010','','inherit','open','open','','mann010','','','2015-07-10 16:08:15','2015-07-10 16:08:15','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann010.jpg',0,'attachment','image/jpeg',0),(2851,2,'2015-07-10 16:08:20','2015-07-10 16:08:20','','mann011','','inherit','open','open','','mann011','','','2015-07-10 16:08:20','2015-07-10 16:08:20','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann011.jpg',0,'attachment','image/jpeg',0),(2852,2,'2015-07-10 16:08:24','2015-07-10 16:08:24','','mann012','','inherit','open','open','','mann012','','','2015-07-10 16:08:24','2015-07-10 16:08:24','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann012.jpg',0,'attachment','image/jpeg',0),(2853,2,'2015-07-10 16:08:28','2015-07-10 16:08:28','','mann013','','inherit','open','open','','mann013','','','2015-07-10 16:08:28','2015-07-10 16:08:28','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann013.jpg',0,'attachment','image/jpeg',0),(2854,2,'2015-07-10 16:08:33','2015-07-10 16:08:33','','mann015','','inherit','open','open','','mann015','','','2015-07-10 16:08:33','2015-07-10 16:08:33','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann015.jpg',0,'attachment','image/jpeg',0),(2855,2,'2015-07-10 16:08:39','2015-07-10 16:08:39','','mann023','','inherit','open','open','','mann023','','','2015-07-10 16:08:39','2015-07-10 16:08:39','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann023.jpg',0,'attachment','image/jpeg',0),(2856,2,'2015-07-10 16:08:42','2015-07-10 16:08:42','','mann024','','inherit','open','open','','mann024','','','2015-07-10 16:08:42','2015-07-10 16:08:42','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann024.jpg',0,'attachment','image/jpeg',0),(2857,2,'2015-07-10 16:08:46','2015-07-10 16:08:46','','mann026','','inherit','open','open','','mann026','','','2015-07-10 16:08:46','2015-07-10 16:08:46','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann026.jpg',0,'attachment','image/jpeg',0),(2858,2,'2015-07-10 16:08:51','2015-07-10 16:08:51','','mann027','','inherit','open','open','','mann027','','','2015-07-10 16:08:51','2015-07-10 16:08:51','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann027.jpg',0,'attachment','image/jpeg',0),(2859,2,'2015-07-10 16:08:55','2015-07-10 16:08:55','','mann028','','inherit','open','open','','mann028','','','2015-07-10 16:08:55','2015-07-10 16:08:55','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann028.jpg',0,'attachment','image/jpeg',0),(2860,2,'2015-07-10 16:08:59','2015-07-10 16:08:59','','mann034','','inherit','open','open','','mann034','','','2015-07-10 16:08:59','2015-07-10 16:08:59','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann034.jpg',0,'attachment','image/jpeg',0),(2861,2,'2015-07-10 16:09:02','2015-07-10 16:09:02','','mann037','','inherit','open','open','','mann037','','','2015-07-10 16:09:02','2015-07-10 16:09:02','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann037.jpg',0,'attachment','image/jpeg',0),(2862,2,'2015-07-10 16:15:03','2015-07-10 16:15:03','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#20cfef\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Punjab Youth Club\'s History through photos [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://punjabyouthclub.com/index.php/photo-gallery//\" text=\"Let\'s View Now\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"dark\" bottom_padding=\"90\" type=\"full_width_background\" text_align=\"left\" top_padding=\"120\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-star-empty\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Show Off In Style</h3>\r\nThe looks &amp; functionality you\'ve been dying for are finally easily accessible. We know you\'ll enjoy the freedom to showcase your content in the way that it deserves.\r\n\r\n[button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/portfolio/mobile-weather-app/\" text=\"Shine Like A Star\" image=\"steadysets-icon-star\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"80\" parallax_bg=\"true\"][vc_column centered_text=\"true\" width=\"1/4\" animation=\"fade-in-from-bottom\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-tablet\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>100% Responsive Design</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"200\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"600\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-diamond\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Award Winning Quality</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"400\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"800\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-file\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Extensive Documentation</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"600\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"1000\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-gift\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Loaded With Goodies</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"light\" text_align=\"center\" top_padding=\"120\" bottom_padding=\"120\" video_overlay_color=\"#1fd9fb\" bg_color=\"#020202\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h1 style=\"text-align: center;\">Ready To Stand Out?</h1>\r\n<p style=\"text-align: center;\">[divider line_type=\"No Line\" custom_height=\"30\"]</p>\r\n<p style=\"text-align: center;\">[button color=\"See-Through\" size=\"large\" url=\"http://themeforest.net/item/salient-responsive-multipurpose-theme/4363266\" text=\"Buy Salient Now\" image=\"default-arrow\"]  [button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/contact-alternative/\" text=\"Reach Out To Us\" image=\"default-arrow\"]</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 16:15:03','2015-07-10 16:15:03','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2863,2,'2015-07-10 16:19:20','2015-07-10 16:19:20','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#20cfef\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Punjab Youth Club\'s History through photos [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://punjabyouthclub.com/index.php/photo-gallery//\" text=\"Let\'s View Now\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"dark\" bottom_padding=\"90\" type=\"full_width_background\" text_align=\"left\" top_padding=\"120\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-star-empty\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"80\" parallax_bg=\"true\"][vc_column centered_text=\"true\" width=\"1/4\" animation=\"fade-in-from-bottom\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-tablet\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>100% Responsive Design</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"200\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"600\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-diamond\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Award Winning Quality</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"400\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"800\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-file\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Extensive Documentation</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"600\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"1000\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-gift\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Loaded With Goodies</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"light\" text_align=\"center\" top_padding=\"120\" bottom_padding=\"120\" video_overlay_color=\"#1fd9fb\" bg_color=\"#020202\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h1 style=\"text-align: center;\">Ready To Stand Out?</h1>\r\n<p style=\"text-align: center;\">[divider line_type=\"No Line\" custom_height=\"30\"]</p>\r\n<p style=\"text-align: center;\">[button color=\"See-Through\" size=\"large\" url=\"http://themeforest.net/item/salient-responsive-multipurpose-theme/4363266\" text=\"Buy Salient Now\" image=\"default-arrow\"]  [button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/contact-alternative/\" text=\"Reach Out To Us\" image=\"default-arrow\"]</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 16:19:20','2015-07-10 16:19:20','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2864,2,'2015-07-10 16:42:53','2015-07-10 16:42:53','[heading subtitle=\"Present Management Committee\"] [/heading]','Committee','','inherit','open','open','','2682-revision-v1','','','2015-07-10 16:42:53','2015-07-10 16:42:53','',2682,'http://punjabyouthclub.com/index.php/2015/07/10/2682-revision-v1/',0,'revision','',0),(2865,2,'2015-07-10 17:12:35','2015-07-10 17:12:35','[vc_row][vc_column width=\"1/1\"][heading]Punjab Youth Club Management Committee[/heading][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" animation=\"grow-in\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row]','Committee','','inherit','open','open','','2682-autosave-v1','','','2015-07-10 17:12:35','2015-07-10 17:12:35','',2682,'http://punjabyouthclub.com/index.php/2015/07/10/2682-autosave-v1/',0,'revision','',0),(2866,2,'2015-07-10 16:50:03','2015-07-10 16:50:03','[heading subtitle=\"Present Management Committee\"] [/heading]\r\n\r\n[three_fourths boxed=\"true\" centered_text=\"true\"] [/three_fourths]\r\n\r\n[team_member description=\"\" social=\"\" link_element=\"none\" color=\"Accent-Color\" image_url=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC-logo-new-3B.png\" name=\"Mr. Singh\" job_position=\"President\" link_url=\"\"]','Committee','','inherit','open','open','','2682-revision-v1','','','2015-07-10 16:50:03','2015-07-10 16:50:03','',2682,'http://punjabyouthclub.com/index.php/2015/07/10/2682-revision-v1/',0,'revision','',0),(2867,2,'2015-07-10 17:10:30','2015-07-10 17:10:30',' ','','','publish','open','open','','2867','','','2015-09-21 07:33:06','2015-09-21 07:33:06','',0,'http://punjabyouthclub.com/?p=2867',11,'nav_menu_item','',0),(2868,2,'2015-07-10 17:13:48','2015-07-10 17:13:48','[vc_row][vc_column width=\"1/1\"][heading]Punjab Youth Club Management Committee[/heading][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" animation=\"grow-in\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"2790\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row]','Committee','','inherit','open','open','','2682-revision-v1','','','2015-07-10 17:13:48','2015-07-10 17:13:48','',2682,'http://punjabyouthclub.com/index.php/2015/07/10/2682-revision-v1/',0,'revision','',0),(2869,2,'2015-07-10 17:18:06','2015-07-10 17:18:06','','NO DRUGS_2014 copy','','inherit','open','open','','no-drugs_2014-copy','','','2015-07-10 17:18:06','2015-07-10 17:18:06','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/NO-DRUGS_2014-copy.jpg',0,'attachment','image/jpeg',0),(2871,2,'2015-07-10 17:18:19','2015-07-10 17:18:19','','NO DRUGS_2014-B copy','','inherit','open','open','','no-drugs_2014-b-copy','','','2015-07-10 17:18:19','2015-07-10 17:18:19','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/NO-DRUGS_2014-B-copy.jpg',0,'attachment','image/jpeg',0),(2872,2,'2015-07-10 17:18:23','2015-07-10 17:18:23','','No-Drugs-PBC_S','','inherit','open','open','','no-drugs-pbc_s','','','2015-07-10 17:18:23','2015-07-10 17:18:23','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/No-Drugs-PBC_S.jpg',0,'attachment','image/jpeg',0),(2873,2,'2015-07-10 17:18:36','2015-07-10 17:18:36','','KGM hockey_ 2014- NO DRUGS1','','inherit','open','open','','kgm-hockey_-2014-no-drugs1','','','2015-07-10 17:18:36','2015-07-10 17:18:36','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/KGM-hockey_-2014-NO-DRUGS1.png',0,'attachment','image/png',0),(2874,2,'2015-07-10 17:18:58','2015-07-10 17:18:58','','KGM hockey_ 2014- NO DRUGS-1','','inherit','open','open','','kgm-hockey_-2014-no-drugs-1','','','2015-07-10 17:18:58','2015-07-10 17:18:58','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/KGM-hockey_-2014-NO-DRUGS-1.png',0,'attachment','image/png',0),(2875,2,'2015-07-10 17:19:20','2015-07-10 17:19:20','','KGM hockey_ 2014- NO DRUGS-2','','inherit','open','open','','kgm-hockey_-2014-no-drugs-2','','','2015-07-10 18:17:43','2015-07-10 18:17:43','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/KGM-hockey_-2014-NO-DRUGS-2.png',0,'attachment','image/png',0),(2876,2,'2015-07-10 17:19:39','2015-07-10 17:19:39','','KGM hockey_ 2014- NO DRUGS-3','','inherit','open','open','','kgm-hockey_-2014-no-drugs-3','','','2015-07-10 17:19:39','2015-07-10 17:19:39','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/KGM-hockey_-2014-NO-DRUGS-3.png',0,'attachment','image/png',0),(2877,2,'2015-07-10 17:21:01','2015-07-10 17:21:01','','NO DRUGS_2014-C copy','','inherit','open','open','','no-drugs_2014-c-copy','','','2015-07-10 17:21:01','2015-07-10 17:21:01','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/NO-DRUGS_2014-C-copy.jpg',0,'attachment','image/jpeg',0),(2878,2,'2015-07-10 17:26:24','2015-07-10 17:26:24','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"flip-in\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#20cfef\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Punjab Youth Club\'s History through photos [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://punjabyouthclub.com/index.php/photo-gallery//\" text=\"Let\'s View Now\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"dark\" bottom_padding=\"90\" type=\"full_width_background\" text_align=\"left\" top_padding=\"120\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-star-empty\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"80\" parallax_bg=\"true\"][vc_column centered_text=\"true\" width=\"1/4\" animation=\"fade-in-from-bottom\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-tablet\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>100% Responsive Design</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"200\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"600\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-diamond\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Award Winning Quality</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"400\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"800\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-file\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Extensive Documentation</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"600\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"1000\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-gift\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Loaded With Goodies</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"light\" text_align=\"center\" top_padding=\"120\" bottom_padding=\"120\" video_overlay_color=\"#1fd9fb\" bg_color=\"#020202\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h1 style=\"text-align: center;\">Ready To Stand Out?</h1>\r\n<p style=\"text-align: center;\">[divider line_type=\"No Line\" custom_height=\"30\"]</p>\r\n<p style=\"text-align: center;\">[button color=\"See-Through\" size=\"large\" url=\"http://themeforest.net/item/salient-responsive-multipurpose-theme/4363266\" text=\"Buy Salient Now\" image=\"default-arrow\"]  [button color=\"See-Through\" size=\"large\" url=\"http://themenectar.com/demo/salient-frostwave/contact-alternative/\" text=\"Reach Out To Us\" image=\"default-arrow\"]</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 17:26:24','2015-07-10 17:26:24','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2879,2,'2015-07-10 17:38:26','2015-07-10 17:38:26','','IMG_9637a','','inherit','open','open','','img_9637a','','','2015-07-10 17:45:37','2015-07-10 17:45:37','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/IMG_9637a.jpg',0,'attachment','image/jpeg',0),(2881,2,'2015-07-10 18:10:40','2015-07-10 18:10:40','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"flip-in\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#20cfef\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Punjab Youth Club\'s History through photos [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://punjabyouthclub.com/index.php/photo-gallery//\" text=\"Let\'s View Now\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"dark\" bottom_padding=\"90\" type=\"full_width_background\" text_align=\"left\" top_padding=\"120\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-star-empty\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"80\" parallax_bg=\"true\"][vc_column centered_text=\"true\" width=\"1/4\" animation=\"fade-in-from-bottom\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-tablet\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>100% Responsive Design</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"200\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"600\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-diamond\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Award Winning Quality</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"400\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"800\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-file\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Extensive Documentation</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"600\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"1000\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-gift\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Loaded With Goodies</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][carousel autorotate=\"true\" easing=\"easeInQuint\" carousel_title=\"Do Not Use Drugs\"][item id=\"1436551136-1-2\" title=\"Item\"][vc_column_text] Add Content Here [/vc_column_text][/item][item id=\"1436551136-2-89\" title=\"Item\"][vc_column_text] Add Content Here [/vc_column_text][/item][item id=\"1436551136-3-80\" title=\"Item\"][vc_column_text] Add Content Here [/vc_column_text][/item][/carousel][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nectar_slider location=\"About\" flexible_slider_height=\"true\" arrow_navigation=\"true\" loop=\"true\" slider_transition=\"fade\" slider_height=\"300\" min_slider_height=\"250\"][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 18:10:40','2015-07-10 18:10:40','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2882,2,'2015-07-10 18:13:38','2015-07-10 18:13:38','','Auto Draft','','publish','closed','closed','','auto-draft-4','','','2015-07-10 18:13:38','2015-07-10 18:13:38','',0,'http://punjabyouthclub.com/?post_type=nectar_slider&#038;p=2882',0,'nectar_slider','',0),(2883,2,'2015-07-10 18:14:29','2015-07-10 18:14:29','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"flip-in\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#20cfef\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Punjab Youth Club\'s History through photos [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://punjabyouthclub.com/index.php/photo-gallery//\" text=\"Let\'s View Now\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"dark\" bottom_padding=\"90\" type=\"full_width_background\" text_align=\"left\" top_padding=\"120\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-star-empty\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n	<li>Our Goal</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][vc_column width=\"1/3\" animation=\"none\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" centered_text=\"true\"][fancy-ul icon_type=\"standard_dash\" icon=\"icon-glass\" color=\"Accent-Color\" enable_animation=\"true\"]\r\n<ul>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n	<li>Our Goals</li>\r\n</ul>\r\n[/fancy-ul][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"80\" parallax_bg=\"true\"][vc_column centered_text=\"true\" width=\"1/4\" animation=\"fade-in-from-bottom\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-tablet\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>100% Responsive Design</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"200\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"600\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-diamond\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Award Winning Quality</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"400\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"800\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"steadysets-icon-file\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Extensive Documentation</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][vc_column width=\"1/4\" animation=\"fade-in-from-bottom\" centered_text=\"true\" enable_animation=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"600\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in\" delay=\"1000\" column_padding=\"no-extra-padding\"][vc_column_text][icon size=\"large\" image=\"icon-gift\" color=\"Extra-Color-3\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<h4>Loaded With Goodies</h4>\r\nAccusantium quam, ultri eget tempor id, aliquam eget nibh et. Maecen aliquam, risus at semper ullamcorper[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][carousel autorotate=\"true\" easing=\"easeInQuint\" carousel_title=\"Do Not Use Drugs\"][item id=\"1436551136-1-2\" title=\"Item\"][vc_column_text] Add Content Here [/vc_column_text][/item][item id=\"1436551136-2-89\" title=\"Item\"][vc_column_text] Add Content Here [/vc_column_text][/item][item id=\"1436551136-3-80\" title=\"Item\"][vc_column_text] Add Content Here [/vc_column_text][/item][/carousel][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nectar_slider location=\"No Drugs\" flexible_slider_height=\"true\" arrow_navigation=\"true\" loop=\"true\" slider_transition=\"fade\" slider_height=\"300\" min_slider_height=\"250\"][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 18:14:29','2015-07-10 18:14:29','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2885,2,'2015-07-10 18:22:25','2015-07-10 18:22:25','','Auto Draft','','publish','closed','closed','','auto-draft-6','','','2015-07-10 23:26:44','2015-07-10 23:26:44','',0,'http://punjabyouthclub.com/?post_type=nectar_slider&#038;p=2885',0,'nectar_slider','',0),(2886,2,'2015-07-10 20:02:09','2015-07-10 20:02:09','','kd','','inherit','open','open','','kd','','','2015-07-10 20:02:09','2015-07-10 20:02:09','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/kd.jpg',0,'attachment','image/jpeg',0),(2888,2,'2015-07-10 23:07:55','2015-07-10 23:07:55','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"flip-in\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#20cfef\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Punjab Youth Club\'s History through photos [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://punjabyouthclub.com/index.php/photo-gallery//\" text=\"Let\'s View Now\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row][vc_column width=\"1/1\"][carousel autorotate=\"true\" easing=\"easeInQuint\" carousel_title=\"Do Not Use Drugs\"][item id=\"1436551136-1-2\" title=\"Item\"][vc_column_text] Add Content Here [/vc_column_text][/item][item id=\"1436551136-2-89\" title=\"Item\"][vc_column_text] Add Content Here [/vc_column_text][/item][item id=\"1436551136-3-80\" title=\"Item\"][vc_column_text] Add Content Here [/vc_column_text][/item][/carousel][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nectar_slider location=\"No Drugs\" flexible_slider_height=\"true\" arrow_navigation=\"true\" loop=\"true\" slider_transition=\"fade\" slider_height=\"300\" min_slider_height=\"250\"][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 23:07:55','2015-07-10 23:07:55','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2889,2,'2015-07-10 23:16:31','2015-07-10 23:16:31','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"flip-in\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#20cfef\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Punjab Youth Club\'s History through photos [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://punjabyouthclub.com/index.php/photo-gallery//\" text=\"Let\'s View Now\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row][vc_column width=\"1/1\"][carousel autorotate=\"true\" easing=\"easeInQuint\" carousel_title=\"Do Not Use Drugs\"][item id=\"1436551136-1-2\" title=\"Item\"][vc_column_text]Drugs You Choose, You Loose[/vc_column_text][/item][item id=\"1436551136-2-89\" title=\"Item\"][vc_column_text]Lets Promote Hugs, Love Sports - No to DRUGS.[/vc_column_text][/item][item id=\"1436551136-3-80\" title=\"Item\"][vc_column_text]Be a Chooser not a Loser, Play Sports[/vc_column_text][/item][/carousel][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nectar_slider location=\"No Drugs\" flexible_slider_height=\"true\" arrow_navigation=\"true\" loop=\"true\" slider_transition=\"fade\" slider_height=\"300\" min_slider_height=\"250\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][recent_projects category=\"mahek-punjab-di-2007\" project_style=\"1\" lightbox_only=\"true\" number_to_display=\"8\"][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 23:16:31','2015-07-10 23:16:31','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2890,2,'2015-07-10 23:24:12','2015-07-10 23:24:12','','NO DRUGS-1','','inherit','open','open','','no-drugs-1','','','2015-07-10 23:24:12','2015-07-10 23:24:12','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/NO-DRUGS-1.jpg',0,'attachment','image/jpeg',0),(2892,2,'2015-07-10 23:24:25','2015-07-10 23:24:25','','NO DRUGS-2','','inherit','open','open','','no-drugs-2','','','2015-07-10 23:24:25','2015-07-10 23:24:25','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/NO-DRUGS-2.jpg',0,'attachment','image/jpeg',0),(2893,2,'2015-07-10 23:24:28','2015-07-10 23:24:28','','NO DRUGS-3','','inherit','open','open','','no-drugs-3','','','2015-07-10 23:24:28','2015-07-10 23:24:28','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/NO-DRUGS-3.jpg',0,'attachment','image/jpeg',0),(2894,2,'2015-07-10 23:42:56','2015-07-10 23:42:56','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"flip-in\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#20cfef\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Punjab Youth Club\'s History through photos [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://punjabyouthclub.com/index.php/photo-gallery//\" text=\"Let\'s View Now\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row][vc_column width=\"1/1\"][carousel autorotate=\"true\" easing=\"easeInQuint\" carousel_title=\"Do Not Use Drugs\"][item id=\"1436551136-1-2\" title=\"Item\"][vc_column_text]Drugs You Choose, You Loose[/vc_column_text][/item][item id=\"1436551136-2-89\" title=\"Item\"][vc_column_text]Lets Promote Hugs, Love Sports - No to DRUGS.[/vc_column_text][/item][item id=\"1436551136-3-80\" title=\"Item\"][vc_column_text]Be a Chooser not a Loser, Play Sports[/vc_column_text][/item][/carousel][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2893,2892,2891,2890\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 23:42:56','2015-07-10 23:42:56','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2895,2,'2015-07-10 23:45:43','2015-07-10 23:45:43','','2014- NO DRUGS','','inherit','open','open','','2014-no-drugs','','','2015-07-10 23:45:43','2015-07-10 23:45:43','',2744,'http://punjabyouthclub.com/wp-content/uploads/2013/06/2014-NO-DRUGS.jpg',0,'attachment','image/jpeg',0),(2896,2,'2015-07-10 23:46:47','2015-07-10 23:46:47','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"flip-in\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#20cfef\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Punjab Youth Club\'s History through photos [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://punjabyouthclub.com/index.php/photo-gallery//\" text=\"Let\'s View Now\"]</h2>\r\n[/vc_column_text][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row][vc_column width=\"1/1\"][carousel autorotate=\"true\" easing=\"easeInQuint\" carousel_title=\"Do Not Use Drugs\"][item id=\"1436551136-1-2\" title=\"Item\"][vc_column_text]Drugs You Choose, You Loose[/vc_column_text][/item][item id=\"1436551136-2-89\" title=\"Item\"][vc_column_text]Lets Promote Hugs, Love Sports - No to DRUGS.[/vc_column_text][/item][item id=\"1436551136-3-80\" title=\"Item\"][vc_column_text]Be a Chooser not a Loser, Play Sports[/vc_column_text][/item][/carousel][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 23:46:47','2015-07-10 23:46:47','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2897,2,'2015-07-10 23:49:37','2015-07-10 23:49:37','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"flip-in\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"8\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#20cfef\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_column_text]\r\n<h2 class=\"light\" style=\"text-align: center;\">Punjab Youth Club\'s History through photos [button color=\"See-Through\" image=\"default-arrow\" size=\"medium\" url=\"http://punjabyouthclub.com/index.php/photo-gallery//\" text=\"Let\'s View Now\"]</h2>\r\n[/vc_column_text][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row][vc_column width=\"1/1\"][carousel autorotate=\"true\" easing=\"easeInQuint\" carousel_title=\"Do Not Use Drugs\"][item id=\"1436551136-1-2\" title=\"Item\"][vc_column_text]Drugs You Choose, You Loose[/vc_column_text][/item][item id=\"1436551136-2-89\" title=\"Item\"][vc_column_text]Lets Promote Hugs, Love Sports - No to DRUGS.[/vc_column_text][/item][item id=\"1436551136-3-80\" title=\"Item\"][vc_column_text]Be a Chooser not a Loser, Play Sports[/vc_column_text][/item][/carousel][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 23:49:37','2015-07-10 23:49:37','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2898,2,'2015-07-10 23:52:02','2015-07-10 23:52:02','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"flip-in\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"60\" bottom_padding=\"40\" background_color=\"#20cfef\" type=\"full_width_background\" text_align=\"left\"][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/3\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][/vc_column][vc_column width=\"2/3\" animation=\"none\" column_padding=\"padding-4-percent\" background_color_opacity=\"0.7\" background_color=\"#1c202b\"][clients columns=\"5\" carousel=\"true\" disable_autorotate=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row][vc_column width=\"1/1\"][carousel autorotate=\"true\" easing=\"easeInQuint\" carousel_title=\"Do Not Use Drugs\"][item id=\"1436551136-1-2\" title=\"Item\"][vc_column_text]Drugs You Choose, You Loose[/vc_column_text][/item][item id=\"1436551136-2-89\" title=\"Item\"][vc_column_text]Lets Promote Hugs, Love Sports - No to DRUGS.[/vc_column_text][/item][item id=\"1436551136-3-80\" title=\"Item\"][vc_column_text]Be a Chooser not a Loser, Play Sports[/vc_column_text][/item][/carousel][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 23:52:02','2015-07-10 23:52:02','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2899,2,'2015-07-10 23:59:46','2015-07-10 23:59:46','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"flip-in\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\" apawlik, Theme User\" quote=\"It\'s easy to see why this is one of the most downloaded themes on themeforest. It\'s a real game-changer, and a breathe of fresh air if you work with Wordpress a lot. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Editor02, Theme User\" quote=\"I literally could not be happier that I chose to buy your theme! Your regular updates and superb attention to detail blows me away every time I visit my new site!\" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"mdriess, Theme User\" quote=\"Amazing work! You didn’t just make a great looking theme, but you made one that is a pleasure to customize and not the least bit difficult to keep looking classy.\" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"5\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row][vc_column width=\"1/1\"][carousel autorotate=\"true\" easing=\"easeInQuint\" carousel_title=\"Do Not Use Drugs\"][item id=\"1436551136-1-2\" title=\"Item\"][vc_column_text]Drugs You Choose, You Loose[/vc_column_text][/item][item id=\"1436551136-2-89\" title=\"Item\"][vc_column_text]Lets Promote Hugs, Love Sports - No to DRUGS.[/vc_column_text][/item][item id=\"1436551136-3-80\" title=\"Item\"][vc_column_text]Be a Chooser not a Loser, Play Sports[/vc_column_text][/item][/carousel][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-10 23:59:46','2015-07-10 23:59:46','',2744,'http://punjabyouthclub.com/index.php/2015/07/10/2744-revision-v1/',0,'revision','',0),(2900,2,'2015-07-11 00:05:47','2015-07-11 00:05:47','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"flip-in\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"5\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row][vc_column width=\"1/1\"][carousel autorotate=\"true\" easing=\"easeInQuint\" carousel_title=\"Do Not Use Drugs\"][item id=\"1436551136-1-2\" title=\"Item\"][vc_column_text]Drugs You Choose, You Loose[/vc_column_text][/item][item id=\"1436551136-2-89\" title=\"Item\"][vc_column_text]Lets Promote Hugs, Love Sports - No to DRUGS.[/vc_column_text][/item][item id=\"1436551136-3-80\" title=\"Item\"][vc_column_text]Be a Chooser not a Loser, Play Sports[/vc_column_text][/item][/carousel][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-11 00:05:47','2015-07-11 00:05:47','',2744,'http://punjabyouthclub.com/index.php/2015/07/11/2744-revision-v1/',0,'revision','',0),(2901,2,'2015-07-11 00:07:53','2015-07-11 00:07:53','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"flip-in\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row][vc_column width=\"1/1\"][carousel autorotate=\"true\" easing=\"easeInQuint\" carousel_title=\"Do Not Use Drugs\"][item id=\"1436551136-1-2\" title=\"Item\"][vc_column_text]Drugs You Choose, You Loose[/vc_column_text][/item][item id=\"1436551136-2-89\" title=\"Item\"][vc_column_text]Lets Promote Hugs, Love Sports - No to DRUGS.[/vc_column_text][/item][item id=\"1436551136-3-80\" title=\"Item\"][vc_column_text]Be a Chooser not a Loser, Play Sports[/vc_column_text][/item][/carousel][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-11 00:07:53','2015-07-11 00:07:53','',2744,'http://punjabyouthclub.com/index.php/2015/07/11/2744-revision-v1/',0,'revision','',0),(2902,2,'2015-07-11 00:36:05','2015-07-11 00:36:05','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nWell known for organizing  Sports Events like...Komagata Maru Memorial Youth Hockey Tournament\r\n\r\n( Upcoming Tournament on 1st October )[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \" Dastar Competition\" between Young kids.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"flip-in\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-11 00:36:05','2015-07-11 00:36:05','',2744,'http://punjabyouthclub.com/index.php/2015/07/11/2744-revision-v1/',0,'revision','',0),(2903,2,'2015-07-11 02:07:29','2015-07-11 02:07:29','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-11 02:07:29','2015-07-11 02:07:29','',2744,'http://punjabyouthclub.com/index.php/2015/07/11/2744-revision-v1/',0,'revision','',0),(2904,2,'2015-08-31 08:39:31','2015-08-31 08:39:31','<p>[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3308,3307,3306,3305,3304,3303,3302,3301,3300,3299,3298,3296,3295,3293,3292,3291,3290,3289,3288,3287,3286,3285,3284,3283,3277,3278,3279,3280,3281,3282,3276\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"4\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"800\"][/vc_column][/vc_row]</p>\n','Media News','','inherit','open','open','','2707-autosave-v1','','','2015-08-31 08:39:31','2015-08-31 08:39:31','',2707,'http://punjabyouthclub.com/index.php/2015/07/11/2707-autosave-v1/',0,'revision','',0),(2905,2,'2015-07-11 03:22:53','2015-07-11 03:22:53','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2861,2860,2859,2858,2857,2856,2855,2854,2853,2852,2851,2850,2849,2848,2847,2846,2845,2844,2843,2842,2841,2840,2839,2838,2837,2836,2835,2834,2833,2832,2831,2830,2829,2828,2827,2826,2825,2824,2823,2822,2821,2820,2819,2818\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\"][/vc_column][/vc_row]','Media News','','inherit','open','open','','2707-revision-v1','','','2015-07-11 03:22:53','2015-07-11 03:22:53','',2707,'http://punjabyouthclub.com/index.php/2015/07/11/2707-revision-v1/',0,'revision','',0),(2906,2,'2015-07-11 04:13:05','2015-07-11 04:13:05','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890,2877,2876,2875,2874,2873,2872,2871,2869\" layout=\"fullwidth\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" constrain_max_cols=\"true\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][social_buttons][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nectar_portfolio layout=\"3\" category=\"illustration\" starting_category=\"default\" project_style=\"1\" pagination_type=\"default\"][/vc_column][/vc_row]','Media News','','inherit','open','open','','2707-revision-v1','','','2015-07-11 04:13:05','2015-07-11 04:13:05','',2707,'http://punjabyouthclub.com/index.php/2015/07/11/2707-revision-v1/',0,'revision','',0),(2908,2,'2015-07-11 07:43:43','2015-07-11 07:43:43','','hist_pun_1','','inherit','open','open','','hist_pun_1','','','2015-07-11 07:43:43','2015-07-11 07:43:43','',2664,'http://punjabyouthclub.com/wp-content/uploads/2015/07/hist_pun_1.jpg',0,'attachment','image/jpeg',0),(2909,2,'2015-07-11 07:45:49','2015-07-11 07:45:49','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][image_with_animation image_url=\"2911\" alignment=\"center\" animation=\"Fade In\" img_link_target=\"_self\"][image_with_animation animation=\"Fade In\" img_link_target=\"_self\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','History Punjabi','','inherit','open','open','','2664-autosave-v1','','','2015-07-11 07:45:49','2015-07-11 07:45:49','',2664,'http://punjabyouthclub.com/index.php/2015/07/11/2664-autosave-v1/',0,'revision','',0),(2910,2,'2015-07-11 07:43:49','2015-07-11 07:43:49','','hist_pun_2','','inherit','open','open','','hist_pun_2','','','2015-07-11 07:43:49','2015-07-11 07:43:49','',2664,'http://punjabyouthclub.com/wp-content/uploads/2015/07/hist_pun_2.jpg',0,'attachment','image/jpeg',0),(2911,2,'2015-07-11 07:43:52','2015-07-11 07:43:52','','hist_pun_3','','inherit','open','open','','hist_pun_3','','','2015-07-11 07:43:52','2015-07-11 07:43:52','',2664,'http://punjabyouthclub.com/wp-content/uploads/2015/07/hist_pun_3.jpg',0,'attachment','image/jpeg',0),(2912,2,'2015-07-11 07:46:22','2015-07-11 07:46:22','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][image_with_animation image_url=\"2908\" alignment=\"center\" animation=\"Fade In\" img_link_target=\"_self\"][image_with_animation image_url=\"2910\" alignment=\"center\" animation=\"Fade In\" img_link_target=\"_self\"][image_with_animation image_url=\"2911\" alignment=\"center\" animation=\"Fade In\" img_link_target=\"_self\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','History Punjabi','','inherit','open','open','','2664-revision-v1','','','2015-07-11 07:46:22','2015-07-11 07:46:22','',2664,'http://punjabyouthclub.com/index.php/2015/07/11/2664-revision-v1/',0,'revision','',0),(2913,2,'2015-07-11 08:23:56','2015-07-11 08:23:56','','kd1','','inherit','open','open','','kd1','','','2015-07-11 08:23:56','2015-07-11 08:23:56','',2744,'http://punjabyouthclub.com/wp-content/uploads/2013/06/kd1.jpg',0,'attachment','image/jpeg',0),(2914,2,'2015-07-11 08:23:59','2015-07-11 08:23:59','','kd11','','inherit','open','open','','kd11','','','2015-07-11 08:23:59','2015-07-11 08:23:59','',2744,'http://punjabyouthclub.com/wp-content/uploads/2013/06/kd11.jpg',0,'attachment','image/jpeg',0),(2915,2,'2015-07-11 08:24:04','2015-07-11 08:24:04','','kd34','','inherit','open','open','','kd34','','','2015-07-11 08:24:04','2015-07-11 08:24:04','',2744,'http://punjabyouthclub.com/wp-content/uploads/2013/06/kd34.jpg',0,'attachment','image/jpeg',0),(2916,2,'2015-07-11 08:25:13','2015-07-11 08:25:13','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2913,2914,2915,2886\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-11 08:25:13','2015-07-11 08:25:13','',2744,'http://punjabyouthclub.com/index.php/2015/07/11/2744-revision-v1/',0,'revision','',0),(2917,2,'2015-07-11 08:34:34','2015-07-11 08:34:34','[vc_row][vc_column width=\"1/1\"][nectar_blog layout=\"std-blog-sidebar\" category=\"all\" enable_pagination=\"true\" pagination_type=\"default\"][/vc_column][/vc_row]','Videos','','inherit','open','open','','2705-revision-v1','','','2015-07-11 08:34:34','2015-07-11 08:34:34','',2705,'http://punjabyouthclub.com/index.php/2015/07/11/2705-revision-v1/',0,'revision','',0),(2920,2,'2015-07-11 15:27:05','2015-07-11 15:27:05','','PYC_Banner_Logo_long','','inherit','open','open','','pyc_banner_logo_long','','','2015-07-11 15:27:05','2015-07-11 15:27:05','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Banner_Logo_long.png',0,'attachment','image/png',0),(2921,2,'2015-07-11 15:29:01','2015-07-11 15:29:01','','PYC_Banner_Logo_long-1','','inherit','open','open','','pyc_banner_logo_long-1','','','2015-07-11 15:29:01','2015-07-11 15:29:01','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Banner_Logo_long-1.png',0,'attachment','image/png',0),(2922,2,'2015-07-11 15:36:44','2015-07-11 15:36:44','','PYC_Banner_Logo_long-2','','inherit','open','open','','pyc_banner_logo_long-2','','','2015-07-11 15:36:44','2015-07-11 15:36:44','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Banner_Logo_long-2.png',0,'attachment','image/png',0),(2923,2,'2015-07-11 15:43:19','2015-07-11 15:43:19','','PYC_Banner_Logo-2','','inherit','open','open','','pyc_banner_logo-2','','','2015-07-11 15:43:19','2015-07-11 15:43:19','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Banner_Logo-2.png',0,'attachment','image/png',0),(2924,2,'2015-07-11 16:31:31','2015-07-11 16:31:31','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"1\" category=\"kavidar-bar,mahek-punjab-di-2007\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-11 16:31:31','2015-07-11 16:31:31','',743,'http://punjabyouthclub.com/index.php/2015/07/11/743-revision-v1/',0,'revision','',0),(2925,2,'2015-07-11 16:32:57','2015-07-11 16:32:57','','kd12','','inherit','open','open','','kd12','','','2015-07-11 16:32:57','2015-07-11 16:32:57','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/kd12.jpg',0,'attachment','image/jpeg',0),(2926,2,'2015-07-11 16:33:00','2015-07-11 16:33:00','','kd15','','inherit','open','open','','kd15','','','2015-07-11 16:33:00','2015-07-11 16:33:00','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/kd15.jpg',0,'attachment','image/jpeg',0),(2927,2,'2015-07-11 16:33:04','2015-07-11 16:33:04','','kd18','','inherit','open','open','','kd18','','','2015-07-11 16:33:04','2015-07-11 16:33:04','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/kd18.jpg',0,'attachment','image/jpeg',0),(2928,2,'2015-07-11 16:33:08','2015-07-11 16:33:08','','kd23','','inherit','open','open','','kd23','','','2015-07-11 16:33:08','2015-07-11 16:33:08','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/kd23.jpg',0,'attachment','image/jpeg',0),(2929,2,'2015-07-11 16:33:11','2015-07-11 16:33:11','','kd24','','inherit','open','open','','kd24','','','2015-07-11 16:33:11','2015-07-11 16:33:11','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/kd24.jpg',0,'attachment','image/jpeg',0),(2930,2,'2015-07-11 16:33:15','2015-07-11 16:33:15','','kd34','','inherit','open','open','','kd34-2','','','2015-07-11 16:33:15','2015-07-11 16:33:15','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/kd34.jpg',0,'attachment','image/jpeg',0),(2931,2,'2015-07-11 16:33:19','2015-07-11 16:33:19','','PICT2608','','inherit','open','open','','pict2608','','','2015-07-11 16:33:19','2015-07-11 16:33:19','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2608.jpg',0,'attachment','image/jpeg',0),(2932,2,'2015-07-11 16:33:24','2015-07-11 16:33:24','','PICT2609','','inherit','open','open','','pict2609','','','2015-07-11 16:33:24','2015-07-11 16:33:24','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2609.jpg',0,'attachment','image/jpeg',0),(2933,2,'2015-07-11 16:33:29','2015-07-11 16:33:29','','PICT2610','','inherit','open','open','','pict2610','','','2015-07-11 16:33:29','2015-07-11 16:33:29','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2610.jpg',0,'attachment','image/jpeg',0),(2934,2,'2015-07-11 16:33:33','2015-07-11 16:33:33','','PICT2613','','inherit','open','open','','pict2613','','','2015-07-11 16:33:33','2015-07-11 16:33:33','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2613.jpg',0,'attachment','image/jpeg',0),(2935,2,'2015-07-11 16:33:36','2015-07-11 16:33:36','','PICT2614','','inherit','open','open','','pict2614','','','2015-07-11 16:33:36','2015-07-11 16:33:36','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2614.jpg',0,'attachment','image/jpeg',0),(2936,2,'2015-07-11 16:33:40','2015-07-11 16:33:40','','PICT2615','','inherit','open','open','','pict2615','','','2015-07-11 16:33:40','2015-07-11 16:33:40','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2615.jpg',0,'attachment','image/jpeg',0),(2937,2,'2015-07-11 16:33:45','2015-07-11 16:33:45','','PICT2616','','inherit','open','open','','pict2616','','','2015-07-11 16:33:45','2015-07-11 16:33:45','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2616.jpg',0,'attachment','image/jpeg',0),(2938,2,'2015-07-11 16:33:49','2015-07-11 16:33:49','','PICT2617','','inherit','open','open','','pict2617','','','2015-07-11 16:33:49','2015-07-11 16:33:49','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2617.jpg',0,'attachment','image/jpeg',0),(2939,2,'2015-07-11 16:33:51','2015-07-11 16:33:51','','PICT2618','','inherit','open','open','','pict2618','','','2015-07-11 16:33:51','2015-07-11 16:33:51','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2618.jpg',0,'attachment','image/jpeg',0),(2940,2,'2015-07-11 16:33:57','2015-07-11 16:33:57','','PICT2619','','inherit','open','open','','pict2619','','','2015-07-11 16:33:57','2015-07-11 16:33:57','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2619.jpg',0,'attachment','image/jpeg',0),(2941,2,'2015-07-11 16:34:02','2015-07-11 16:34:02','','PICT2620','','inherit','open','open','','pict2620','','','2015-07-11 16:34:02','2015-07-11 16:34:02','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2620.jpg',0,'attachment','image/jpeg',0),(2942,2,'2015-07-11 16:34:05','2015-07-11 16:34:05','','PICT2622','','inherit','open','open','','pict2622','','','2015-07-11 16:34:05','2015-07-11 16:34:05','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2622.jpg',0,'attachment','image/jpeg',0),(2943,2,'2015-07-11 16:34:16','2015-07-11 16:34:16','','PICT2624','','inherit','open','open','','pict2624','','','2015-07-11 16:34:16','2015-07-11 16:34:16','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2624.jpg',0,'attachment','image/jpeg',0),(2944,2,'2015-07-11 16:34:20','2015-07-11 16:34:20','','PICT2625','','inherit','open','open','','pict2625','','','2015-07-11 16:34:20','2015-07-11 16:34:20','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2625.jpg',0,'attachment','image/jpeg',0),(2945,2,'2015-07-11 16:34:25','2015-07-11 16:34:25','','PICT2627','','inherit','open','open','','pict2627','','','2015-07-11 16:34:25','2015-07-11 16:34:25','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2627.jpg',0,'attachment','image/jpeg',0),(2946,2,'2015-07-11 16:34:28','2015-07-11 16:34:28','','PICT2630','','inherit','open','open','','pict2630','','','2015-07-11 16:34:28','2015-07-11 16:34:28','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2630.jpg',0,'attachment','image/jpeg',0),(2947,2,'2015-07-11 16:34:31','2015-07-11 16:34:31','','PICT2631','','inherit','open','open','','pict2631','','','2015-07-11 16:34:31','2015-07-11 16:34:31','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2631.jpg',0,'attachment','image/jpeg',0),(2948,2,'2015-07-11 16:34:34','2015-07-11 16:34:34','','PICT2632','','inherit','open','open','','pict2632','','','2015-07-11 16:34:34','2015-07-11 16:34:34','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2632.jpg',0,'attachment','image/jpeg',0),(2949,2,'2015-07-11 16:34:38','2015-07-11 16:34:38','','PICT2633','','inherit','open','open','','pict2633','','','2015-07-11 16:34:38','2015-07-11 16:34:38','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2633.jpg',0,'attachment','image/jpeg',0),(2950,2,'2015-07-11 16:34:43','2015-07-11 16:34:43','','PICT2634','','inherit','open','open','','pict2634','','','2015-07-11 16:34:43','2015-07-11 16:34:43','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2634.jpg',0,'attachment','image/jpeg',0),(2951,2,'2015-07-11 16:34:47','2015-07-11 16:34:47','','PICT2635','','inherit','open','open','','pict2635','','','2015-07-11 16:34:47','2015-07-11 16:34:47','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2635.jpg',0,'attachment','image/jpeg',0),(2952,2,'2015-07-11 16:34:51','2015-07-11 16:34:51','','PICT2636','','inherit','open','open','','pict2636','','','2015-07-11 16:34:51','2015-07-11 16:34:51','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2636.jpg',0,'attachment','image/jpeg',0),(2953,2,'2015-07-11 16:34:56','2015-07-11 16:34:56','','PICT2637','','inherit','open','open','','pict2637','','','2015-07-11 16:34:56','2015-07-11 16:34:56','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2637.jpg',0,'attachment','image/jpeg',0),(2954,2,'2015-07-11 16:34:58','2015-07-11 16:34:58','','PICT2638','','inherit','open','open','','pict2638','','','2015-07-11 16:34:58','2015-07-11 16:34:58','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2638.jpg',0,'attachment','image/jpeg',0),(2955,2,'2015-07-11 16:35:01','2015-07-11 16:35:01','','PICT2639','','inherit','open','open','','pict2639','','','2015-07-11 16:35:01','2015-07-11 16:35:01','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2639.jpg',0,'attachment','image/jpeg',0),(2956,2,'2015-07-11 16:35:08','2015-07-11 16:35:08','','PICT2640','','inherit','open','open','','pict2640','','','2015-07-11 16:35:08','2015-07-11 16:35:08','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2640.jpg',0,'attachment','image/jpeg',0),(2957,2,'2015-07-11 16:35:14','2015-07-11 16:35:14','','PICT2641','','inherit','open','open','','pict2641','','','2015-07-11 16:35:14','2015-07-11 16:35:14','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2641.jpg',0,'attachment','image/jpeg',0),(2958,2,'2015-07-11 16:35:17','2015-07-11 16:35:17','','PICT2642','','inherit','open','open','','pict2642','','','2015-07-11 16:35:17','2015-07-11 16:35:17','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2642.jpg',0,'attachment','image/jpeg',0),(2959,2,'2015-07-11 16:35:20','2015-07-11 16:35:20','','PICT2643','','inherit','open','open','','pict2643','','','2015-07-11 16:35:20','2015-07-11 16:35:20','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2643.jpg',0,'attachment','image/jpeg',0),(2960,2,'2015-07-11 16:35:22','2015-07-11 16:35:22','','PICT2644','','inherit','open','open','','pict2644','','','2015-07-11 16:35:22','2015-07-11 16:35:22','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2644.jpg',0,'attachment','image/jpeg',0),(2961,2,'2015-07-11 16:35:26','2015-07-11 16:35:26','','PICT2645','','inherit','open','open','','pict2645','','','2015-07-11 16:35:26','2015-07-11 16:35:26','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2645.jpg',0,'attachment','image/jpeg',0),(2962,2,'2015-07-11 16:35:29','2015-07-11 16:35:29','','PICT2646','','inherit','open','open','','pict2646','','','2015-07-11 16:35:29','2015-07-11 16:35:29','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2646.jpg',0,'attachment','image/jpeg',0),(2963,2,'2015-07-11 16:35:32','2015-07-11 16:35:32','','PICT2647','','inherit','open','open','','pict2647','','','2015-07-11 16:35:32','2015-07-11 16:35:32','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2647.jpg',0,'attachment','image/jpeg',0),(2964,2,'2015-07-11 16:35:35','2015-07-11 16:35:35','','PICT2648','','inherit','open','open','','pict2648','','','2015-07-11 16:35:35','2015-07-11 16:35:35','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2648.jpg',0,'attachment','image/jpeg',0),(2965,2,'2015-07-11 16:35:38','2015-07-11 16:35:38','','PICT2649','','inherit','open','open','','pict2649','','','2015-07-11 16:35:38','2015-07-11 16:35:38','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2649.jpg',0,'attachment','image/jpeg',0),(2966,2,'2015-07-11 16:35:41','2015-07-11 16:35:41','','PICT2650','','inherit','open','open','','pict2650','','','2015-07-11 16:35:41','2015-07-11 16:35:41','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2650.jpg',0,'attachment','image/jpeg',0),(2967,2,'2015-07-11 16:35:43','2015-07-11 16:35:43','','PICT2652','','inherit','open','open','','pict2652','','','2015-07-11 16:35:43','2015-07-11 16:35:43','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2652.jpg',0,'attachment','image/jpeg',0),(2968,2,'2015-07-11 16:35:46','2015-07-11 16:35:46','','PICT2653','','inherit','open','open','','pict2653','','','2015-07-11 16:35:46','2015-07-11 16:35:46','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2653.jpg',0,'attachment','image/jpeg',0),(2969,2,'2015-07-11 16:35:49','2015-07-11 16:35:49','','PICT2654','','inherit','open','open','','pict2654','','','2015-07-11 16:35:49','2015-07-11 16:35:49','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2654.jpg',0,'attachment','image/jpeg',0),(2970,2,'2015-07-11 16:35:52','2015-07-11 16:35:52','','PICT2655','','inherit','open','open','','pict2655','','','2015-07-11 16:35:52','2015-07-11 16:35:52','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2655.jpg',0,'attachment','image/jpeg',0),(2971,2,'2015-07-11 16:35:56','2015-07-11 16:35:56','','PICT2656','','inherit','open','open','','pict2656','','','2015-07-11 16:35:56','2015-07-11 16:35:56','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2656.jpg',0,'attachment','image/jpeg',0),(2972,2,'2015-07-11 16:35:59','2015-07-11 16:35:59','','PICT2657','','inherit','open','open','','pict2657','','','2015-07-11 16:35:59','2015-07-11 16:35:59','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2657.jpg',0,'attachment','image/jpeg',0),(2973,2,'2015-07-11 16:36:02','2015-07-11 16:36:02','','PICT2658','','inherit','open','open','','pict2658','','','2015-07-11 16:36:02','2015-07-11 16:36:02','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2658.jpg',0,'attachment','image/jpeg',0),(2974,2,'2015-07-11 16:36:06','2015-07-11 16:36:06','','PICT2659','','inherit','open','open','','pict2659','','','2015-07-11 16:36:06','2015-07-11 16:36:06','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2659.jpg',0,'attachment','image/jpeg',0),(2975,2,'2015-07-11 16:36:08','2015-07-11 16:36:08','','PICT2660','','inherit','open','open','','pict2660','','','2015-07-11 16:36:08','2015-07-11 16:36:08','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2660.jpg',0,'attachment','image/jpeg',0),(2976,2,'2015-07-11 16:36:11','2015-07-11 16:36:11','','PICT2662','','inherit','open','open','','pict2662','','','2015-07-11 16:36:11','2015-07-11 16:36:11','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2662.jpg',0,'attachment','image/jpeg',0),(2977,2,'2015-07-11 16:36:14','2015-07-11 16:36:14','','PICT2663','','inherit','open','open','','pict2663','','','2015-07-11 16:36:14','2015-07-11 16:36:14','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2663.jpg',0,'attachment','image/jpeg',0),(2978,2,'2015-07-11 16:36:20','2015-07-11 16:36:20','','PICT2664','','inherit','open','open','','pict2664','','','2015-07-11 16:36:20','2015-07-11 16:36:20','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2664.jpg',0,'attachment','image/jpeg',0),(2979,2,'2015-07-11 16:36:24','2015-07-11 16:36:24','','PICT2665','','inherit','open','open','','pict2665','','','2015-07-11 16:36:24','2015-07-11 16:36:24','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2665.jpg',0,'attachment','image/jpeg',0),(2980,2,'2015-07-11 16:36:29','2015-07-11 16:36:29','','PICT2666','','inherit','open','open','','pict2666','','','2015-07-11 16:36:29','2015-07-11 16:36:29','',0,'http://punjabyouthclub.com/wp-content/uploads/2014/03/PICT2666.jpg',0,'attachment','image/jpeg',0),(2981,2,'2015-07-11 16:44:59','2015-07-11 16:44:59','','IMG_9637a','','inherit','open','open','','img_9637a-2','','','2015-07-11 16:44:59','2015-07-11 16:44:59','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/IMG_9637a1.jpg',0,'attachment','image/jpeg',0),(2983,2,'2015-07-11 16:50:53','2015-07-11 16:50:53','','IMG_9637b','','inherit','open','open','','img_9637b','','','2015-07-11 16:50:53','2015-07-11 16:50:53','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/IMG_9637b.jpg',0,'attachment','image/jpeg',0),(2984,2,'2015-07-11 16:54:34','2015-07-11 16:54:34','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"3000\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2913,2914,2915,2886\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"2811\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Gladiator\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"Location Point\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"hive\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"SL City\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-11 16:54:34','2015-07-11 16:54:34','',2744,'http://punjabyouthclub.com/index.php/2015/07/11/2744-revision-v1/',0,'revision','',0),(2985,2,'2015-07-15 03:30:09','2015-07-15 03:30:09','[vc_row][vc_column width=\"1/1\"][social_buttons full_width_icons=\"true\" facebook=\"true\" twitter=\"true\" google_plus=\"true\" linkedin=\"true\" pinterest=\"true\"][/vc_column][/vc_row][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"bhangra,dastar_mukabla,kavi-barbar,mahek-punjab-di,no_drugs\" layout=\"3\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-autosave-v1','','','2015-07-15 03:30:09','2015-07-15 03:30:09','',743,'http://punjabyouthclub.com/index.php/2015/07/11/743-autosave-v1/',0,'revision','',0),(2986,2,'2015-07-11 17:14:16','2015-07-11 17:14:16','','No Drugs','','publish','open','open','','no_drugs','','','2015-07-14 10:39:44','2015-07-14 10:39:44','',0,'http://punjabyouthclub.com/?post_type=portfolio&#038;p=2986',0,'portfolio','',0),(2988,2,'2015-07-11 17:14:16','2015-07-11 17:14:16','','TESTING','','inherit','open','open','','2986-revision-v1','','','2015-07-11 17:14:16','2015-07-11 17:14:16','',2986,'http://punjabyouthclub.com/index.php/2015/07/11/2986-revision-v1/',0,'revision','',0),(2990,2,'2015-07-11 17:16:16','2015-07-11 17:16:16','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"1\" category=\"kavidar-bar,mahek-punjab-di-2007,test\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-11 17:16:16','2015-07-11 17:16:16','',743,'http://punjabyouthclub.com/index.php/2015/07/11/743-revision-v1/',0,'revision','',0),(2991,2,'2015-07-11 17:49:18','2015-07-11 17:49:18','','05810076','','inherit','open','open','','05810076','','','2015-07-11 17:49:18','2015-07-11 17:49:18','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810076.jpg',0,'attachment','image/jpeg',0),(2992,2,'2015-07-11 17:49:23','2015-07-11 17:49:23','','05810080','','inherit','open','open','','05810080','','','2015-07-11 17:49:23','2015-07-11 17:49:23','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810080.jpg',0,'attachment','image/jpeg',0),(2993,2,'2015-07-11 17:49:26','2015-07-11 17:49:26','','05810081','','inherit','open','open','','05810081','','','2015-07-11 17:49:26','2015-07-11 17:49:26','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810081.jpg',0,'attachment','image/jpeg',0),(2994,2,'2015-07-11 17:49:28','2015-07-11 17:49:28','','05810082','','inherit','open','open','','05810082','','','2015-07-11 17:49:28','2015-07-11 17:49:28','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810082.jpg',0,'attachment','image/jpeg',0),(2996,2,'2015-07-11 18:04:18','2015-07-11 18:04:18','','Dastar Mukabla 2001','','publish','open','open','','dastar-mukabla-2001','','','2015-07-11 19:55:16','2015-07-11 19:55:16','',0,'http://punjabyouthclub.com/?post_type=portfolio&#038;p=2996',0,'portfolio','',0),(2997,2,'2015-07-11 17:53:47','2015-07-11 17:53:47','','05810076','','inherit','open','open','','05810076-2','','','2015-07-11 17:53:47','2015-07-11 17:53:47','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/058100761.jpg',0,'attachment','image/jpeg',0),(2998,2,'2015-07-11 17:53:52','2015-07-11 17:53:52','','05810080','','inherit','open','open','','05810080-2','','','2015-07-11 17:53:52','2015-07-11 17:53:52','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/058100801.jpg',0,'attachment','image/jpeg',0),(2999,2,'2015-07-11 17:53:55','2015-07-11 17:53:55','','05810081','','inherit','open','open','','05810081-2','','','2015-07-11 17:53:55','2015-07-11 17:53:55','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/058100811.jpg',0,'attachment','image/jpeg',0),(3000,2,'2015-07-11 17:53:58','2015-07-11 17:53:58','','05810082','','inherit','open','open','','05810082-2','','','2015-07-11 17:53:58','2015-07-11 17:53:58','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/058100821.jpg',0,'attachment','image/jpeg',0),(3001,2,'2015-07-11 17:54:01','2015-07-11 17:54:01','','05810083','','inherit','open','open','','05810083-2','','','2015-07-11 17:54:01','2015-07-11 17:54:01','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/058100831.jpg',0,'attachment','image/jpeg',0),(3002,2,'2015-07-11 17:54:04','2015-07-11 17:54:04','','05810084','','inherit','open','open','','05810084','','','2015-07-11 17:54:04','2015-07-11 17:54:04','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810084.jpg',0,'attachment','image/jpeg',0),(3003,2,'2015-07-11 17:54:07','2015-07-11 17:54:07','','05810086','','inherit','open','open','','05810086','','','2015-07-11 17:54:07','2015-07-11 17:54:07','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810086.jpg',0,'attachment','image/jpeg',0),(3004,2,'2015-07-11 17:54:13','2015-07-11 17:54:13','','05810088','','inherit','open','open','','05810088','','','2015-07-11 17:54:13','2015-07-11 17:54:13','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810088.jpg',0,'attachment','image/jpeg',0),(3005,2,'2015-07-11 17:54:16','2015-07-11 17:54:16','','05810106','','inherit','open','open','','05810106','','','2015-07-11 17:54:16','2015-07-11 17:54:16','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810106.jpg',0,'attachment','image/jpeg',0),(3006,2,'2015-07-11 17:54:19','2015-07-11 17:54:19','','05810119','','inherit','open','open','','05810119','','','2015-07-11 17:54:19','2015-07-11 17:54:19','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810119.jpg',0,'attachment','image/jpeg',0),(3007,2,'2015-07-11 17:54:25','2015-07-11 17:54:25','','05810071','','inherit','open','open','','05810071','','','2015-07-11 17:54:25','2015-07-11 17:54:25','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810071.jpg',0,'attachment','image/jpeg',0),(3008,2,'2015-07-11 18:04:18','2015-07-11 18:04:18','','Dastar Mukabla 2001','','inherit','open','open','','2996-revision-v1','','','2015-07-11 18:04:18','2015-07-11 18:04:18','',2996,'http://punjabyouthclub.com/index.php/2015/07/11/2996-revision-v1/',0,'revision','',0),(3009,2,'2015-07-11 18:07:25','2015-07-11 18:07:25','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"dastar_mulabla-2001\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-11 18:07:25','2015-07-11 18:07:25','',743,'http://punjabyouthclub.com/index.php/2015/07/11/743-revision-v1/',0,'revision','',0),(3012,2,'2015-07-11 18:45:17','2015-07-11 18:45:17','','No Drugs','','inherit','open','open','','2986-revision-v1','','','2015-07-11 18:45:17','2015-07-11 18:45:17','',2986,'http://punjabyouthclub.com/index.php/2015/07/11/2986-revision-v1/',0,'revision','',0),(3013,2,'2015-07-11 18:46:39','2015-07-11 18:46:39','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/4\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"dastar_mulabla-2001\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][vc_column width=\"1/4\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"no_drugs\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-11 18:46:39','2015-07-11 18:46:39','',743,'http://punjabyouthclub.com/index.php/2015/07/11/743-revision-v1/',0,'revision','',0),(3014,2,'2015-07-11 18:47:37','2015-07-11 18:47:37','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"dastar_mulabla-2001\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"no_drugs\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-11 18:47:37','2015-07-11 18:47:37','',743,'http://punjabyouthclub.com/index.php/2015/07/11/743-revision-v1/',0,'revision','',0),(3015,2,'2015-07-11 18:49:10','2015-07-11 18:49:10','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"dastar_mukabla\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"no_drugs\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-11 18:49:10','2015-07-11 18:49:10','',743,'http://punjabyouthclub.com/index.php/2015/07/11/743-revision-v1/',0,'revision','',0),(3016,2,'2015-07-11 18:50:45','2015-07-11 18:50:45','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"dastar_mukabla,no_drugs\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"no_drugs\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-11 18:50:45','2015-07-11 18:50:45','',743,'http://punjabyouthclub.com/index.php/2015/07/11/743-revision-v1/',0,'revision','',0),(3017,2,'2015-07-11 18:52:05','2015-07-11 18:52:05','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"dastar_mukabla,no_drugs\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"no_drugs\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-11 18:52:05','2015-07-11 18:52:05','',743,'http://punjabyouthclub.com/index.php/2015/07/11/743-revision-v1/',0,'revision','',0),(3018,2,'2015-07-11 18:54:14','2015-07-11 18:54:14','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"dastar_mukabla,no_drugs\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-11 18:54:14','2015-07-11 18:54:14','',743,'http://punjabyouthclub.com/index.php/2015/07/11/743-revision-v1/',0,'revision','',0),(3019,2,'2015-07-11 19:05:07','2015-07-11 19:05:07','','05810198','','inherit','open','open','','05810198','','','2015-07-11 19:05:07','2015-07-11 19:05:07','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810198.jpg',0,'attachment','image/jpeg',0),(3020,2,'2015-07-11 19:05:12','2015-07-11 19:05:12','','05810200','','inherit','open','open','','05810200','','','2015-07-11 19:05:12','2015-07-11 19:05:12','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810200.jpg',0,'attachment','image/jpeg',0),(3021,2,'2015-07-11 19:05:15','2015-07-11 19:05:15','','05810202','','inherit','open','open','','05810202','','','2015-07-11 19:05:15','2015-07-11 19:05:15','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810202.jpg',0,'attachment','image/jpeg',0),(3022,2,'2015-07-11 19:05:18','2015-07-11 19:05:18','','05810205','','inherit','open','open','','05810205','','','2015-07-11 19:05:18','2015-07-11 19:05:18','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810205.jpg',0,'attachment','image/jpeg',0),(3023,2,'2015-07-11 19:05:22','2015-07-11 19:05:22','','05810214','','inherit','open','open','','05810214','','','2015-07-11 19:05:22','2015-07-11 19:05:22','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810214.jpg',0,'attachment','image/jpeg',0),(3024,2,'2015-07-11 19:05:24','2015-07-11 19:05:24','','05810218','','inherit','open','open','','05810218','','','2015-07-11 19:05:24','2015-07-11 19:05:24','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810218.jpg',0,'attachment','image/jpeg',0),(3025,2,'2015-07-11 19:05:26','2015-07-11 19:05:26','','05810219','','inherit','open','open','','05810219','','','2015-07-11 19:05:26','2015-07-11 19:05:26','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810219.jpg',0,'attachment','image/jpeg',0),(3027,2,'2015-07-11 19:05:31','2015-07-11 19:05:31','','05810227','','inherit','open','open','','05810227','','','2015-07-11 19:05:31','2015-07-11 19:05:31','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810227.jpg',0,'attachment','image/jpeg',0),(3038,2,'2015-07-11 19:15:09','2015-07-11 19:15:09','','Dastar Mukabla 2002','','publish','open','open','','dastar-mukabla-2002','','','2015-07-11 19:54:21','2015-07-11 19:54:21','',0,'http://punjabyouthclub.com/?post_type=portfolio&#038;p=3038',0,'portfolio','',0),(3039,2,'2015-07-11 19:13:27','2015-07-11 19:13:27','','05810222','','inherit','open','open','','05810222','','','2015-07-11 19:13:27','2015-07-11 19:13:27','',3038,'http://punjabyouthclub.com/wp-content/uploads/2015/07/05810222.jpg',0,'attachment','image/jpeg',0),(3040,2,'2015-07-11 19:15:09','2015-07-11 19:15:09','','Dastar Mukabla 2002','','inherit','open','open','','3038-revision-v1','','','2015-07-11 19:15:09','2015-07-11 19:15:09','',3038,'http://punjabyouthclub.com/index.php/2015/07/11/3038-revision-v1/',0,'revision','',0),(3041,2,'2015-07-11 19:26:33','2015-07-11 19:26:33','','Dastar Mukabla August 2003 004','','inherit','open','open','','dastar-mukabla-august-2003-004','','','2015-07-11 19:26:33','2015-07-11 19:26:33','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-004.jpg',0,'attachment','image/jpeg',0),(3042,2,'2015-07-11 19:26:35','2015-07-11 19:26:35','','Dastar Mukabla August 2003 011','','inherit','open','open','','dastar-mukabla-august-2003-011','','','2015-07-11 19:26:35','2015-07-11 19:26:35','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-011.jpg',0,'attachment','image/jpeg',0),(3043,2,'2015-07-11 19:26:36','2015-07-11 19:26:36','','Dastar Mukabla August 2003 013','','inherit','open','open','','dastar-mukabla-august-2003-013','','','2015-07-11 19:26:36','2015-07-11 19:26:36','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-013.jpg',0,'attachment','image/jpeg',0),(3044,2,'2015-07-11 19:26:39','2015-07-11 19:26:39','','Dastar Mukabla August 2003 014','','inherit','open','open','','dastar-mukabla-august-2003-014','','','2015-07-11 19:26:39','2015-07-11 19:26:39','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-014.jpg',0,'attachment','image/jpeg',0),(3045,2,'2015-07-11 19:26:40','2015-07-11 19:26:40','','Dastar Mukabla August 2003 017','','inherit','open','open','','dastar-mukabla-august-2003-017','','','2015-07-11 19:26:40','2015-07-11 19:26:40','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-017.jpg',0,'attachment','image/jpeg',0),(3046,2,'2015-07-11 19:29:06','2015-07-11 19:29:06','','Dastar Mukabla 2003','','publish','open','open','','dastar-mukabla-2003','','','2015-07-11 19:53:12','2015-07-11 19:53:12','',0,'http://punjabyouthclub.com/?post_type=portfolio&#038;p=3046',0,'portfolio','',0),(3047,2,'2015-07-11 19:26:41','2015-07-11 19:26:41','','Dastar Mukabla August 2003 019','','inherit','open','open','','dastar-mukabla-august-2003-019','','','2015-07-11 19:26:41','2015-07-11 19:26:41','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-019.jpg',0,'attachment','image/jpeg',0),(3048,2,'2015-07-11 19:26:44','2015-07-11 19:26:44','','Dastar Mukabla August 2003 021','','inherit','open','open','','dastar-mukabla-august-2003-021','','','2015-07-11 19:26:44','2015-07-11 19:26:44','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-021.jpg',0,'attachment','image/jpeg',0),(3049,2,'2015-07-11 19:26:46','2015-07-11 19:26:46','','Dastar Mukabla August 2003 030','','inherit','open','open','','dastar-mukabla-august-2003-030','','','2015-07-11 19:26:46','2015-07-11 19:26:46','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-030.jpg',0,'attachment','image/jpeg',0),(3050,2,'2015-07-11 19:26:50','2015-07-11 19:26:50','','Dastar Mukabla August 2003 031','','inherit','open','open','','dastar-mukabla-august-2003-031','','','2015-07-11 19:26:50','2015-07-11 19:26:50','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-031.jpg',0,'attachment','image/jpeg',0),(3051,2,'2015-07-11 19:26:51','2015-07-11 19:26:51','','Dastar Mukabla August 2003 034','','inherit','open','open','','dastar-mukabla-august-2003-034','','','2015-07-11 19:26:51','2015-07-11 19:26:51','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-034.jpg',0,'attachment','image/jpeg',0),(3052,2,'2015-07-11 19:26:52','2015-07-11 19:26:52','','Dastar Mukabla August 2003 035','','inherit','open','open','','dastar-mukabla-august-2003-035','','','2015-07-11 19:26:52','2015-07-11 19:26:52','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-035.jpg',0,'attachment','image/jpeg',0),(3053,2,'2015-07-11 19:26:54','2015-07-11 19:26:54','','Dastar Mukabla August 2003 036','','inherit','open','open','','dastar-mukabla-august-2003-036','','','2015-07-11 19:26:54','2015-07-11 19:26:54','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-036.jpg',0,'attachment','image/jpeg',0),(3054,2,'2015-07-11 19:26:55','2015-07-11 19:26:55','','Dastar Mukabla August 2003 038','','inherit','open','open','','dastar-mukabla-august-2003-038','','','2015-07-11 19:26:55','2015-07-11 19:26:55','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-038.jpg',0,'attachment','image/jpeg',0),(3055,2,'2015-07-11 19:26:57','2015-07-11 19:26:57','','Dastar Mukabla August 2003 039','','inherit','open','open','','dastar-mukabla-august-2003-039','','','2015-07-11 19:26:57','2015-07-11 19:26:57','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-039.jpg',0,'attachment','image/jpeg',0),(3056,2,'2015-07-11 19:26:58','2015-07-11 19:26:58','','Dastar Mukabla August 2003 041','','inherit','open','open','','dastar-mukabla-august-2003-041','','','2015-07-11 19:26:58','2015-07-11 19:26:58','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-041.jpg',0,'attachment','image/jpeg',0),(3057,2,'2015-07-11 19:27:00','2015-07-11 19:27:00','','Dastar Mukabla August 2003 042','','inherit','open','open','','dastar-mukabla-august-2003-042','','','2015-07-11 19:27:00','2015-07-11 19:27:00','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-042.jpg',0,'attachment','image/jpeg',0),(3058,2,'2015-07-11 19:27:03','2015-07-11 19:27:03','','Dastar Mukabla August 2003 043','','inherit','open','open','','dastar-mukabla-august-2003-043','','','2015-07-11 19:27:03','2015-07-11 19:27:03','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-043.jpg',0,'attachment','image/jpeg',0),(3059,2,'2015-07-11 19:27:04','2015-07-11 19:27:04','','Dastar Mukabla 2003','','inherit','open','open','','dastar-mukabla-august-2003-044','','','2015-07-12 03:42:25','2015-07-12 03:42:25','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003-044.jpg',0,'attachment','image/jpeg',0),(3060,2,'2015-07-11 19:27:06','2015-07-11 19:27:06','','Dastar Mukabla 2003','','inherit','open','open','','dastar-mukabla-august-2003','','','2015-07-12 03:42:10','2015-07-12 03:42:10','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Dastar-Mukabla-August-2003.jpg',0,'attachment','image/jpeg',0),(3061,2,'2015-07-11 19:29:06','2015-07-11 19:29:06','','Dastar Mukabla 2003','','inherit','open','open','','3046-revision-v1','','','2015-07-11 19:29:06','2015-07-11 19:29:06','',3046,'http://punjabyouthclub.com/index.php/2015/07/11/3046-revision-v1/',0,'revision','',0),(3063,2,'2015-07-11 19:36:02','2015-07-11 19:36:02','','K.G.M Tournament 2010','','inherit','open','open','','komagata-hockey1','','','2015-07-12 03:42:00','2015-07-12 03:42:00','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/komagata-hockey1.jpg',0,'attachment','image/jpeg',0),(3064,2,'2015-07-11 19:36:51','2015-07-11 19:36:51','','K.G.M Tournament 2011','','inherit','open','open','','komagata-hockey_eng-2011-copy','','','2015-07-12 03:41:52','2015-07-12 03:41:52','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/komagata-hockey_ENG-2011-copy.jpg',0,'attachment','image/jpeg',0),(3065,2,'2015-07-11 19:37:23','2015-07-11 19:37:23','','K.G.M Tournament 2012','','inherit','open','open','','komagata-hockey_eng-2012-small','','','2015-07-12 03:41:43','2015-07-12 03:41:43','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/komagata-hockey_ENG-2012-small.jpg',0,'attachment','image/jpeg',0),(3066,2,'2015-07-11 19:37:53','2015-07-11 19:37:53','','K.G.M Tournament 2013','','inherit','open','open','','komagata-hockey_eng-2013-copy','','','2015-07-12 03:41:35','2015-07-12 03:41:35','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/komagata-hockey_ENG-2013-copy.jpg',0,'attachment','image/jpeg',0),(3067,2,'2015-07-11 19:38:17','2015-07-11 19:38:17','','K.G.M Tournament 2014','','inherit','open','open','','kgm-hockey_-eng-2014_webb','','','2015-07-12 03:41:21','2015-07-12 03:41:21','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/KGM-hockey_-ENG-2014_webb.jpg',0,'attachment','image/jpeg',0),(3069,2,'2015-07-11 19:51:16','2015-07-11 19:51:16','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3063,3064,3065,3066,3067\" display_title_caption=\"true\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"600x400\"][/vc_column][/vc_row]','Activities','','inherit','open','open','','2697-revision-v1','','','2015-07-11 19:51:16','2015-07-11 19:51:16','',2697,'http://punjabyouthclub.com/index.php/2015/07/11/2697-revision-v1/',0,'revision','',0),(3070,2,'2015-07-11 19:52:18','2015-07-11 19:52:18','','Dastar Mukabla 2003','','inherit','open','open','','3046-autosave-v1','','','2015-07-11 19:52:18','2015-07-11 19:52:18','',3046,'http://punjabyouthclub.com/index.php/2015/07/11/3046-autosave-v1/',0,'revision','',0),(3071,2,'2015-07-12 01:35:21','2015-07-12 01:35:21','','DimeAir','','inherit','open','open','','dimeair','','','2015-07-12 01:35:21','2015-07-12 01:35:21','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/DimeAir.png',0,'attachment','image/png',0),(3072,2,'2015-07-12 01:35:24','2015-07-12 01:35:24','','DR FIX IT ALL','','inherit','open','open','','dr-fix-it-all','','','2015-07-12 01:35:24','2015-07-12 01:35:24','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/DR-FIX-IT-ALL.png',0,'attachment','image/png',0),(3073,2,'2015-07-12 01:35:25','2015-07-12 01:35:25','','Grewal Travels','','inherit','open','open','','grewal-travels','','','2015-07-12 01:35:25','2015-07-12 01:35:25','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Grewal-Travels.png',0,'attachment','image/png',0),(3074,2,'2015-07-12 01:35:26','2015-07-12 01:35:26','','Multilines','','inherit','open','open','','multilines','','','2015-07-12 01:35:26','2015-07-12 01:35:26','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Multilines.png',0,'attachment','image/png',0),(3075,2,'2015-07-12 01:35:28','2015-07-12 01:35:28','','Punjabi CHetna','','inherit','open','open','','punjabi-chetna','','','2015-07-12 01:35:28','2015-07-12 01:35:28','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Punjabi-CHetna.png',0,'attachment','image/png',0),(3076,2,'2015-07-12 01:35:30','2015-07-12 01:35:30','','Satrang','','inherit','open','open','','satrang','','','2015-07-12 01:35:30','2015-07-12 01:35:30','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Satrang.png',0,'attachment','image/png',0),(3077,2,'2015-07-12 01:35:32','2015-07-12 01:35:32','','toronto','','inherit','open','open','','toronto','','','2015-07-12 01:35:32','2015-07-12 01:35:32','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/toronto.png',0,'attachment','image/png',0),(3078,2,'2015-07-12 01:35:35','2015-07-12 01:35:35','','TS Security','','inherit','open','open','','ts-security','','','2015-07-12 01:35:35','2015-07-12 01:35:35','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/TS-Security.png',0,'attachment','image/png',0),(3080,2,'2015-07-12 01:42:46','2015-07-12 01:42:46','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"3000\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2913,2914,2915,2886\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3079\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"http://themenectar.com/demo/salient-frostwave/wp-content/uploads/2013/03/sample-logo.png\" name=\"X\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665318808-0-4\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-12 01:42:46','2015-07-12 01:42:46','',2744,'http://punjabyouthclub.com/index.php/2015/07/12/2744-revision-v1/',0,'revision','',0),(3081,2,'2015-07-12 01:44:47','2015-07-12 01:44:47','','Buttar','','inherit','open','open','','buttar','','','2015-07-12 01:44:47','2015-07-12 01:44:47','',2744,'http://punjabyouthclub.com/wp-content/uploads/2013/06/Buttar.png',0,'attachment','image/png',0),(3082,2,'2015-07-12 01:44:49','2015-07-12 01:44:49','','Dhillon Hotels','','inherit','open','open','','dhillon-hotels','','','2015-07-12 01:44:49','2015-07-12 01:44:49','',2744,'http://punjabyouthclub.com/wp-content/uploads/2013/06/Dhillon-Hotels.png',0,'attachment','image/png',0),(3083,2,'2015-07-12 01:44:51','2015-07-12 01:44:51','','Brar 2','','inherit','open','open','','brar-2','','','2015-07-12 01:44:51','2015-07-12 01:44:51','',2744,'http://punjabyouthclub.com/wp-content/uploads/2013/06/Brar-2.png',0,'attachment','image/png',0),(3084,2,'2015-07-12 01:46:42','2015-07-12 01:46:42','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"3000\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2913,2914,2915,2886\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3079\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-12 01:46:42','2015-07-12 01:46:42','',2744,'http://punjabyouthclub.com/index.php/2015/07/12/2744-revision-v1/',0,'revision','',0),(3085,2,'2015-07-12 01:50:12','2015-07-12 01:50:12','','Brar Group','','inherit','open','open','','brar-group','','','2015-07-12 01:50:12','2015-07-12 01:50:12','',2744,'http://punjabyouthclub.com/wp-content/uploads/2013/06/Brar-Group.png',0,'attachment','image/png',0),(3086,2,'2015-07-12 01:52:04','2015-07-12 01:52:04','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"3000\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section][vc_row][vc_column width=\"1/1\"][vc_column_text]I am text block. Click edit button to change this text.[/vc_column_text][/vc_column][/vc_row]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-12 01:52:04','2015-07-12 01:52:04','',2744,'http://punjabyouthclub.com/index.php/2015/07/12/2744-revision-v1/',0,'revision','',0),(3087,2,'2015-07-12 01:56:10','2015-07-12 01:56:10','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"3000\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-12 01:56:10','2015-07-12 01:56:10','',2744,'http://punjabyouthclub.com/index.php/2015/07/12/2744-revision-v1/',0,'revision','',0),(3088,2,'2015-07-12 01:58:14','2015-07-12 01:58:14','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"3000\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1000X700\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-12 01:58:14','2015-07-12 01:58:14','',2744,'http://punjabyouthclub.com/index.php/2015/07/12/2744-revision-v1/',0,'revision','',0),(3089,2,'2015-07-12 02:01:37','2015-07-12 02:01:37','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"3000\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2871,2869\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-12 02:01:37','2015-07-12 02:01:37','',2744,'http://punjabyouthclub.com/index.php/2015/07/12/2744-revision-v1/',0,'revision','',0),(3090,2,'2015-07-12 02:04:10','2015-07-12 02:04:10','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"3000\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-12 02:04:10','2015-07-12 02:04:10','',2744,'http://punjabyouthclub.com/index.php/2015/07/12/2744-revision-v1/',0,'revision','',0),(3091,2,'2015-07-12 03:18:46','2015-07-12 03:18:46','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3063,3064,3065,3066,3067\" display_title_caption=\"true\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][divider line_type=\"Small Line\" custom_height=\"30\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nectar_portfolio layout=\"3\" category=\"all\" starting_category=\"default\" project_style=\"2\" horizontal_filters=\"true\" pagination_type=\"infinite_scroll\"][/vc_column][/vc_row]','Activities','','inherit','open','open','','2697-revision-v1','','','2015-07-12 03:18:46','2015-07-12 03:18:46','',2697,'http://punjabyouthclub.com/index.php/2015/07/12/2697-revision-v1/',0,'revision','',0),(3092,2,'2015-07-12 03:28:11','2015-07-12 03:28:11','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3063,3064,3065,3066,3067\" display_title_caption=\"true\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\"][/vc_column][/vc_row]','Activities','','inherit','open','open','','2697-revision-v1','','','2015-07-12 03:28:11','2015-07-12 03:28:11','',2697,'http://punjabyouthclub.com/index.php/2015/07/12/2697-revision-v1/',0,'revision','',0),(3093,2,'2015-07-12 03:44:31','2015-07-12 03:44:31','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3063,3064,3065,3066,3067\" display_title_caption=\"true\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"400x600\"][/vc_column][/vc_row]','Activities','','inherit','open','open','','2697-revision-v1','','','2015-07-12 03:44:31','2015-07-12 03:44:31','',2697,'http://punjabyouthclub.com/index.php/2015/07/12/2697-revision-v1/',0,'revision','',0),(3094,2,'2007-05-12 16:09:57','2007-05-12 16:09:57','','PYC Bhangra Team in Action','','publish','open','open','','pyc-bhangra-team-in-action','','','2015-07-12 16:21:50','2015-07-12 16:21:50','',0,'http://punjabyouthclub.com/?post_type=portfolio&#038;p=3094',0,'portfolio','',0),(3095,2,'2015-07-12 16:04:33','2015-07-12 16:04:33','','Picture 001','','inherit','open','open','','picture-001','','','2015-07-12 16:04:33','2015-07-12 16:04:33','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Picture-001.jpg',0,'attachment','image/jpeg',0),(3096,2,'2015-07-12 16:04:37','2015-07-12 16:04:37','','Picture 002','','inherit','open','open','','picture-002','','','2015-07-12 16:04:37','2015-07-12 16:04:37','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Picture-002.jpg',0,'attachment','image/jpeg',0),(3097,2,'2015-07-12 16:04:40','2015-07-12 16:04:40','','Picture 003','','inherit','open','open','','picture-003','','','2015-07-12 16:04:40','2015-07-12 16:04:40','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Picture-003.jpg',0,'attachment','image/jpeg',0),(3098,2,'2015-07-12 16:04:42','2015-07-12 16:04:42','','Picture 004','','inherit','open','open','','picture-004','','','2015-07-12 16:04:42','2015-07-12 16:04:42','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Picture-004.jpg',0,'attachment','image/jpeg',0),(3099,2,'2015-07-12 16:04:44','2015-07-12 16:04:44','','Picture 005','','inherit','open','open','','picture-005','','','2015-07-12 16:04:44','2015-07-12 16:04:44','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Picture-005.jpg',0,'attachment','image/jpeg',0),(3100,2,'2015-07-12 16:04:48','2015-07-12 16:04:48','','Picture 006','','inherit','open','open','','picture-006','','','2015-07-12 16:04:48','2015-07-12 16:04:48','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Picture-006.jpg',0,'attachment','image/jpeg',0),(3101,2,'2015-07-12 16:04:50','2015-07-12 16:04:50','','Picture 007','','inherit','open','open','','picture-007','','','2015-07-12 16:04:50','2015-07-12 16:04:50','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Picture-007.jpg',0,'attachment','image/jpeg',0),(3102,2,'2015-07-12 16:04:53','2015-07-12 16:04:53','','Picture 008','','inherit','open','open','','picture-008','','','2015-07-12 16:04:53','2015-07-12 16:04:53','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Picture-008.jpg',0,'attachment','image/jpeg',0),(3103,2,'2015-07-12 16:04:55','2015-07-12 16:04:55','','Picture 012','','inherit','open','open','','picture-012','','','2015-07-12 16:04:55','2015-07-12 16:04:55','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Picture-012.jpg',0,'attachment','image/jpeg',0),(3104,2,'2015-07-12 16:04:58','2015-07-12 16:04:58','','Picture 013','','inherit','open','open','','picture-013','','','2015-07-12 16:04:58','2015-07-12 16:04:58','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Picture-013.jpg',0,'attachment','image/jpeg',0),(3105,2,'2015-07-12 16:05:02','2015-07-12 16:05:02','','Picture 014','','inherit','open','open','','picture-014','','','2015-07-12 16:05:02','2015-07-12 16:05:02','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Picture-014.jpg',0,'attachment','image/jpeg',0),(3106,2,'2015-07-12 16:05:04','2015-07-12 16:05:04','','b1','','inherit','open','open','','b1','','','2015-07-12 16:05:04','2015-07-12 16:05:04','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b1.jpg',0,'attachment','image/jpeg',0),(3107,2,'2015-07-12 16:05:05','2015-07-12 16:05:05','','b2','','inherit','open','open','','b2','','','2015-07-12 16:05:05','2015-07-12 16:05:05','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b2.jpg',0,'attachment','image/jpeg',0),(3108,2,'2015-07-12 16:05:08','2015-07-12 16:05:08','','b3','','inherit','open','open','','b3','','','2015-07-12 16:05:08','2015-07-12 16:05:08','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b3.jpg',0,'attachment','image/jpeg',0),(3109,2,'2015-07-12 16:05:10','2015-07-12 16:05:10','','b4','','inherit','open','open','','b4','','','2015-07-12 16:05:10','2015-07-12 16:05:10','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b4.jpg',0,'attachment','image/jpeg',0),(3110,2,'2015-07-12 16:05:12','2015-07-12 16:05:12','','b5','','inherit','open','open','','b5','','','2015-07-12 16:05:12','2015-07-12 16:05:12','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b5.jpg',0,'attachment','image/jpeg',0),(3111,2,'2015-07-12 16:05:14','2015-07-12 16:05:14','','b6','','inherit','open','open','','b6','','','2015-07-12 16:05:14','2015-07-12 16:05:14','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b6.jpg',0,'attachment','image/jpeg',0),(3112,2,'2015-07-12 16:05:15','2015-07-12 16:05:15','','b7','','inherit','open','open','','b7','','','2015-07-12 16:05:15','2015-07-12 16:05:15','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b7.jpg',0,'attachment','image/jpeg',0),(3113,2,'2015-07-12 16:05:18','2015-07-12 16:05:18','','b8','','inherit','open','open','','b8','','','2015-07-12 16:05:18','2015-07-12 16:05:18','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b8.jpg',0,'attachment','image/jpeg',0),(3114,2,'2015-07-12 16:05:20','2015-07-12 16:05:20','','b9','','inherit','open','open','','b9','','','2015-07-12 16:05:20','2015-07-12 16:05:20','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b9.jpg',0,'attachment','image/jpeg',0),(3115,2,'2015-07-12 16:05:22','2015-07-12 16:05:22','','b10','','inherit','open','open','','b10','','','2015-07-12 16:05:22','2015-07-12 16:05:22','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b10.jpg',0,'attachment','image/jpeg',0),(3116,2,'2015-07-12 16:05:24','2015-07-12 16:05:24','','b11','','inherit','open','open','','b11','','','2015-07-12 16:05:24','2015-07-12 16:05:24','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b11.jpg',0,'attachment','image/jpeg',0),(3117,2,'2015-07-12 16:05:28','2015-07-12 16:05:28','','b12','','inherit','open','open','','b12','','','2015-07-12 16:05:28','2015-07-12 16:05:28','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b12.jpg',0,'attachment','image/jpeg',0),(3118,2,'2015-07-12 16:05:30','2015-07-12 16:05:30','','b13','','inherit','open','open','','b13','','','2015-07-12 16:05:30','2015-07-12 16:05:30','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b13.jpg',0,'attachment','image/jpeg',0),(3119,2,'2015-07-12 16:05:32','2015-07-12 16:05:32','','b14','','inherit','open','open','','b14','','','2015-07-12 16:05:32','2015-07-12 16:05:32','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b14.jpg',0,'attachment','image/jpeg',0),(3120,2,'2015-07-12 16:05:34','2015-07-12 16:05:34','','b15','','inherit','open','open','','b15','','','2015-07-12 16:05:34','2015-07-12 16:05:34','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b15.jpg',0,'attachment','image/jpeg',0),(3121,2,'2015-07-12 16:05:37','2015-07-12 16:05:37','','b16','','inherit','open','open','','b16','','','2015-07-12 16:05:37','2015-07-12 16:05:37','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b16.jpg',0,'attachment','image/jpeg',0),(3122,2,'2015-07-12 16:05:39','2015-07-12 16:05:39','','b17','','inherit','open','open','','b17','','','2015-07-12 16:05:39','2015-07-12 16:05:39','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b17.jpg',0,'attachment','image/jpeg',0),(3123,2,'2015-07-12 16:05:42','2015-07-12 16:05:42','','b18','','inherit','open','open','','b18','','','2015-07-12 16:05:42','2015-07-12 16:05:42','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b18.jpg',0,'attachment','image/jpeg',0),(3124,2,'2015-07-12 16:05:44','2015-07-12 16:05:44','','b19','','inherit','open','open','','b19','','','2015-07-12 16:05:44','2015-07-12 16:05:44','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b19.jpg',0,'attachment','image/jpeg',0),(3125,2,'2015-07-12 16:05:45','2015-07-12 16:05:45','','b20','','inherit','open','open','','b20','','','2015-07-12 16:05:45','2015-07-12 16:05:45','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b20.jpg',0,'attachment','image/jpeg',0),(3126,2,'2015-07-12 16:05:46','2015-07-12 16:05:46','','b21','','inherit','open','open','','b21','','','2015-07-12 16:05:46','2015-07-12 16:05:46','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b21.jpg',0,'attachment','image/jpeg',0),(3127,2,'2015-07-12 16:05:48','2015-07-12 16:05:48','','b22','','inherit','open','open','','b22','','','2015-07-12 16:05:48','2015-07-12 16:05:48','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b22.jpg',0,'attachment','image/jpeg',0),(3128,2,'2015-07-12 16:05:50','2015-07-12 16:05:50','','b23','','inherit','open','open','','b23','','','2015-07-12 16:05:50','2015-07-12 16:05:50','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b23.jpg',0,'attachment','image/jpeg',0),(3129,2,'2015-07-12 16:05:51','2015-07-12 16:05:51','','b24','','inherit','open','open','','b24','','','2015-07-12 16:05:51','2015-07-12 16:05:51','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b24.jpg',0,'attachment','image/jpeg',0),(3130,2,'2015-07-12 16:05:53','2015-07-12 16:05:53','','b25','','inherit','open','open','','b25','','','2015-07-12 16:05:53','2015-07-12 16:05:53','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b25.jpg',0,'attachment','image/jpeg',0),(3131,2,'2015-07-12 16:05:55','2015-07-12 16:05:55','','b26','','inherit','open','open','','b26','','','2015-07-12 16:05:55','2015-07-12 16:05:55','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b26.jpg',0,'attachment','image/jpeg',0),(3132,2,'2015-07-12 16:05:58','2015-07-12 16:05:58','','b27','','inherit','open','open','','b27','','','2015-07-12 16:05:58','2015-07-12 16:05:58','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b27.jpg',0,'attachment','image/jpeg',0),(3133,2,'2015-07-12 16:06:00','2015-07-12 16:06:00','','b28','','inherit','open','open','','b28','','','2015-07-12 16:06:00','2015-07-12 16:06:00','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b28.jpg',0,'attachment','image/jpeg',0),(3134,2,'2015-07-12 16:06:02','2015-07-12 16:06:02','','b29','','inherit','open','open','','b29','','','2015-07-12 16:06:02','2015-07-12 16:06:02','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b29.jpg',0,'attachment','image/jpeg',0),(3135,2,'2015-07-12 16:06:04','2015-07-12 16:06:04','','b30','','inherit','open','open','','b30','','','2015-07-12 16:06:04','2015-07-12 16:06:04','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b30.jpg',0,'attachment','image/jpeg',0),(3136,2,'2015-07-12 16:06:06','2015-07-12 16:06:06','','b31','','inherit','open','open','','b31','','','2015-07-12 16:06:06','2015-07-12 16:06:06','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b31.jpg',0,'attachment','image/jpeg',0),(3137,2,'2015-07-12 16:06:08','2015-07-12 16:06:08','','b32','','inherit','open','open','','b32','','','2015-07-12 16:06:08','2015-07-12 16:06:08','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b32.jpg',0,'attachment','image/jpeg',0),(3138,2,'2015-07-12 16:06:12','2015-07-12 16:06:12','','b33','','inherit','open','open','','b33','','','2015-07-12 16:06:12','2015-07-12 16:06:12','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b33.jpg',0,'attachment','image/jpeg',0),(3139,2,'2015-07-12 16:06:15','2015-07-12 16:06:15','','b34','','inherit','open','open','','b34','','','2015-07-12 16:06:15','2015-07-12 16:06:15','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b34.jpg',0,'attachment','image/jpeg',0),(3140,2,'2015-07-12 16:06:18','2015-07-12 16:06:18','','b36','','inherit','open','open','','b36','','','2015-07-12 16:06:18','2015-07-12 16:06:18','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b36.jpg',0,'attachment','image/jpeg',0),(3141,2,'2015-07-12 16:06:20','2015-07-12 16:06:20','','b37','','inherit','open','open','','b37','','','2015-07-12 16:06:20','2015-07-12 16:06:20','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b37.jpg',0,'attachment','image/jpeg',0),(3142,2,'2015-07-12 16:06:22','2015-07-12 16:06:22','','b38','','inherit','open','open','','b38','','','2015-07-12 16:06:22','2015-07-12 16:06:22','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b38.jpg',0,'attachment','image/jpeg',0),(3143,2,'2015-07-12 16:06:27','2015-07-12 16:06:27','','b39','','inherit','open','open','','b39','','','2015-07-12 16:06:27','2015-07-12 16:06:27','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b39.jpg',0,'attachment','image/jpeg',0),(3144,2,'2015-07-12 16:06:34','2015-07-12 16:06:34','','b40','','inherit','open','open','','b40','','','2015-07-12 16:06:34','2015-07-12 16:06:34','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b40.jpg',0,'attachment','image/jpeg',0),(3145,2,'2015-07-12 16:06:36','2015-07-12 16:06:36','','b41','','inherit','open','open','','b41','','','2015-07-12 16:06:36','2015-07-12 16:06:36','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b41.jpg',0,'attachment','image/jpeg',0),(3146,2,'2015-07-12 16:06:40','2015-07-12 16:06:40','','b42','','inherit','open','open','','b42','','','2015-07-12 16:06:40','2015-07-12 16:06:40','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b42.jpg',0,'attachment','image/jpeg',0),(3147,2,'2015-07-12 16:06:42','2015-07-12 16:06:42','','b43','','inherit','open','open','','b43','','','2015-07-12 16:06:42','2015-07-12 16:06:42','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b43.jpg',0,'attachment','image/jpeg',0),(3148,2,'2015-07-12 16:06:44','2015-07-12 16:06:44','','b44','','inherit','open','open','','b44','','','2015-07-12 16:06:44','2015-07-12 16:06:44','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b44.jpg',0,'attachment','image/jpeg',0),(3149,2,'2015-07-12 16:06:47','2015-07-12 16:06:47','','b45','','inherit','open','open','','b45','','','2015-07-12 16:06:47','2015-07-12 16:06:47','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b45.jpg',0,'attachment','image/jpeg',0),(3150,2,'2015-07-12 16:06:48','2015-07-12 16:06:48','','b46','','inherit','open','open','','b46','','','2015-07-12 16:06:48','2015-07-12 16:06:48','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b46.jpg',0,'attachment','image/jpeg',0),(3151,2,'2015-07-12 16:06:50','2015-07-12 16:06:50','','b47','','inherit','open','open','','b47','','','2015-07-12 16:06:50','2015-07-12 16:06:50','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b47.jpg',0,'attachment','image/jpeg',0),(3152,2,'2015-07-12 16:06:52','2015-07-12 16:06:52','','b48','','inherit','open','open','','b48','','','2015-07-12 16:06:52','2015-07-12 16:06:52','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/b48.jpg',0,'attachment','image/jpeg',0),(3153,2,'2015-07-12 16:09:57','2015-07-12 16:09:57','','PYC Bhangra Team in Action','','inherit','open','open','','3094-revision-v1','','','2015-07-12 16:09:57','2015-07-12 16:09:57','',3094,'http://punjabyouthclub.com/index.php/2015/07/12/3094-revision-v1/',0,'revision','',0),(3154,2,'2015-07-12 16:10:51','2015-07-12 16:10:51','','PYC Bhangra Team in Action','','inherit','open','open','','3094-autosave-v1','','','2015-07-12 16:10:51','2015-07-12 16:10:51','',3094,'http://punjabyouthclub.com/index.php/2015/07/12/3094-autosave-v1/',0,'revision','',0),(3155,2,'2015-07-12 16:22:18','2015-07-12 16:22:18','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"bhangra,dastar_mukabla,no_drugs\" layout=\"fullwidth\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-12 16:22:18','2015-07-12 16:22:18','',743,'http://punjabyouthclub.com/index.php/2015/07/12/743-revision-v1/',0,'revision','',0),(3156,2,'2005-07-12 16:31:03','2005-07-12 16:31:03','','Bhangra Performance','','publish','open','open','','bhangra-performance','','','2015-07-12 16:43:46','2015-07-12 16:43:46','',0,'http://punjabyouthclub.com/?post_type=portfolio&#038;p=3156',0,'portfolio','',0),(3157,2,'2015-07-12 16:24:40','2015-07-12 16:24:40','','asia08','','inherit','open','open','','asia08','','','2015-07-12 16:24:40','2015-07-12 16:24:40','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/asia08.jpg',0,'attachment','image/jpeg',0),(3158,2,'2015-07-12 16:24:44','2015-07-12 16:24:44','','asia09','','inherit','open','open','','asia09','','','2015-07-12 16:24:44','2015-07-12 16:24:44','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/asia09.jpg',0,'attachment','image/jpeg',0),(3159,2,'2015-07-12 16:24:47','2015-07-12 16:24:47','','asia10','','inherit','open','open','','asia10','','','2015-07-12 16:24:47','2015-07-12 16:24:47','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/asia10.jpg',0,'attachment','image/jpeg',0),(3160,2,'2015-07-12 16:24:50','2015-07-12 16:24:50','','bhg','','inherit','open','open','','bhg','','','2015-07-12 16:24:50','2015-07-12 16:24:50','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/bhg.jpg',0,'attachment','image/jpeg',0),(3161,2,'2015-07-12 16:24:57','2015-07-12 16:24:57','','bhg_1','','inherit','open','open','','bhg_1','','','2015-07-12 16:24:57','2015-07-12 16:24:57','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/bhg_1.jpg',0,'attachment','image/jpeg',0),(3162,2,'2015-07-12 16:25:02','2015-07-12 16:25:02','','bhg1','','inherit','open','open','','bhg1','','','2015-07-12 16:25:02','2015-07-12 16:25:02','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/bhg1.jpg',0,'attachment','image/jpeg',0),(3163,2,'2015-07-12 16:25:12','2015-07-12 16:25:12','','bhg2','','inherit','open','open','','bhg2','','','2015-07-12 16:25:12','2015-07-12 16:25:12','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/bhg2.jpg',0,'attachment','image/jpeg',0),(3164,2,'2015-07-12 16:25:18','2015-07-12 16:25:18','','bhg3','','inherit','open','open','','bhg3','','','2015-07-12 16:25:18','2015-07-12 16:25:18','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/bhg3.jpg',0,'attachment','image/jpeg',0),(3165,2,'2015-07-12 16:25:21','2015-07-12 16:25:21','','bhg4','','inherit','open','open','','bhg4','','','2015-07-12 16:25:21','2015-07-12 16:25:21','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/bhg4.jpg',0,'attachment','image/jpeg',0),(3166,2,'2015-07-12 16:25:26','2015-07-12 16:25:26','','bhg5','','inherit','open','open','','bhg5','','','2015-07-12 16:25:26','2015-07-12 16:25:26','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/bhg5.jpg',0,'attachment','image/jpeg',0),(3167,2,'2015-07-12 16:25:27','2015-07-12 16:25:27','','bhg6','','inherit','open','open','','bhg6','','','2015-07-12 16:25:27','2015-07-12 16:25:27','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/bhg6.jpg',0,'attachment','image/jpeg',0),(3168,2,'2015-07-12 16:25:40','2015-07-12 16:25:40','','bhg7','','inherit','open','open','','bhg7','','','2015-07-12 16:25:40','2015-07-12 16:25:40','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/bhg7.jpg',0,'attachment','image/jpeg',0),(3169,2,'2015-07-12 16:25:43','2015-07-12 16:25:43','','asia01','','inherit','open','open','','asia01','','','2015-07-12 16:25:43','2015-07-12 16:25:43','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/asia01.jpg',0,'attachment','image/jpeg',0),(3170,2,'2015-07-12 16:25:55','2015-07-12 16:25:55','','asia02','','inherit','open','open','','asia02','','','2015-07-12 16:25:55','2015-07-12 16:25:55','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/asia02.jpg',0,'attachment','image/jpeg',0),(3171,2,'2015-07-12 16:26:03','2015-07-12 16:26:03','','asia03','','inherit','open','open','','asia03','','','2015-07-12 16:26:03','2015-07-12 16:26:03','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/asia03.jpg',0,'attachment','image/jpeg',0),(3172,2,'2015-07-12 16:26:09','2015-07-12 16:26:09','','asia04','','inherit','open','open','','asia04','','','2015-07-12 16:26:09','2015-07-12 16:26:09','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/asia04.jpg',0,'attachment','image/jpeg',0),(3173,2,'2015-07-12 16:26:19','2015-07-12 16:26:19','','asia05','','inherit','open','open','','asia05','','','2015-07-12 16:26:19','2015-07-12 16:26:19','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/asia05.jpg',0,'attachment','image/jpeg',0),(3174,2,'2015-07-12 16:26:23','2015-07-12 16:26:23','','asia06','','inherit','open','open','','asia06','','','2015-07-12 16:26:23','2015-07-12 16:26:23','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/asia06.jpg',0,'attachment','image/jpeg',0),(3175,2,'2015-07-12 16:26:26','2015-07-12 16:26:26','','asia06a','','inherit','open','open','','asia06a','','','2015-07-12 16:26:26','2015-07-12 16:26:26','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/asia06a.jpg',0,'attachment','image/jpeg',0),(3176,2,'2015-07-12 16:26:35','2015-07-12 16:26:35','','asia07','','inherit','open','open','','asia07','','','2015-07-12 16:26:35','2015-07-12 16:26:35','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/asia07.jpg',0,'attachment','image/jpeg',0),(3177,2,'2015-07-12 16:26:40','2015-07-12 16:26:40','','asia07a','','inherit','open','open','','asia07a','','','2015-07-12 16:26:40','2015-07-12 16:26:40','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/asia07a.jpg',0,'attachment','image/jpeg',0),(3178,2,'2015-07-12 16:31:03','2015-07-12 16:31:03','','Bhangra Performance','','inherit','open','open','','3156-revision-v1','','','2015-07-12 16:31:03','2015-07-12 16:31:03','',3156,'http://punjabyouthclub.com/index.php/2015/07/12/3156-revision-v1/',0,'revision','',0),(3179,2,'2015-07-12 16:32:56','2015-07-12 16:32:56','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"bhangra,dastar_mukabla,no_drugs\" layout=\"3\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-12 16:32:56','2015-07-12 16:32:56','',743,'http://punjabyouthclub.com/index.php/2015/07/12/743-revision-v1/',0,'revision','',0),(3180,2,'2015-07-12 16:37:22','2015-07-12 16:37:22','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"2\" category=\"bhangra,dastar_mukabla,no_drugs\" layout=\"3\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-12 16:37:22','2015-07-12 16:37:22','',743,'http://punjabyouthclub.com/index.php/2015/07/12/743-revision-v1/',0,'revision','',0),(3181,2,'2006-07-12 16:52:04','2006-07-12 16:52:04','','Kavi Darbar 2006','','publish','open','open','','kavi-darbar-2006','','','2015-07-12 17:11:27','2015-07-12 17:11:27','',0,'http://punjabyouthclub.com/?post_type=portfolio&#038;p=3181',0,'portfolio','',0),(3182,2,'2015-07-12 16:45:43','2015-07-12 16:45:43','','banner copy','','inherit','open','open','','banner-copy','','','2015-07-12 16:45:43','2015-07-12 16:45:43','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/banner-copy.jpg',0,'attachment','image/jpeg',0),(3183,2,'2015-07-12 16:45:56','2015-07-12 16:45:56','','kavi cd copy','','inherit','open','open','','kavi-cd-copy','','','2015-07-12 16:45:56','2015-07-12 16:45:56','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kavi-cd-copy.jpg',0,'attachment','image/jpeg',0),(3184,2,'2015-07-12 16:46:03','2015-07-12 16:46:03','','kavi darbar cd copy','','inherit','open','open','','kavi-darbar-cd-copy','','','2015-07-12 16:46:03','2015-07-12 16:46:03','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kavi-darbar-cd-copy.jpg',0,'attachment','image/jpeg',0),(3185,2,'2015-07-12 16:46:10','2015-07-12 16:46:10','','kd','','inherit','open','open','','kd-2','','','2015-07-12 16:46:10','2015-07-12 16:46:10','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd.jpg',0,'attachment','image/jpeg',0),(3186,2,'2015-07-12 16:46:16','2015-07-12 16:46:16','','kd1','','inherit','open','open','','kd1-2','','','2015-07-12 16:46:16','2015-07-12 16:46:16','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd1.jpg',0,'attachment','image/jpeg',0),(3187,2,'2015-07-12 16:46:23','2015-07-12 16:46:23','','kd2','','inherit','open','open','','kd2','','','2015-07-12 16:46:23','2015-07-12 16:46:23','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd2.jpg',0,'attachment','image/jpeg',0),(3188,2,'2015-07-12 16:46:31','2015-07-12 16:46:31','','kd3','','inherit','open','open','','kd3','','','2015-07-12 16:46:31','2015-07-12 16:46:31','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd3.jpg',0,'attachment','image/jpeg',0),(3189,2,'2015-07-12 16:46:36','2015-07-12 16:46:36','','kd5','','inherit','open','open','','kd5','','','2015-07-12 16:46:36','2015-07-12 16:46:36','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd5.jpg',0,'attachment','image/jpeg',0),(3190,2,'2015-07-12 16:47:01','2015-07-12 16:47:01','','kd6','','inherit','open','open','','kd6','','','2015-07-12 16:47:01','2015-07-12 16:47:01','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd6.jpg',0,'attachment','image/jpeg',0),(3191,2,'2015-07-12 16:47:12','2015-07-12 16:47:12','','kd7','','inherit','open','open','','kd7','','','2015-07-12 16:47:12','2015-07-12 16:47:12','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd7.jpg',0,'attachment','image/jpeg',0),(3192,2,'2015-07-12 16:47:18','2015-07-12 16:47:18','','kd8','','inherit','open','open','','kd8','','','2015-07-12 16:47:18','2015-07-12 16:47:18','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd8.jpg',0,'attachment','image/jpeg',0),(3193,2,'2015-07-12 16:47:25','2015-07-12 16:47:25','','kd9','','inherit','open','open','','kd9','','','2015-07-12 16:47:25','2015-07-12 16:47:25','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd9.jpg',0,'attachment','image/jpeg',0),(3194,2,'2015-07-12 16:47:46','2015-07-12 16:47:46','','kd10','','inherit','open','open','','kd10','','','2015-07-12 16:47:46','2015-07-12 16:47:46','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd10.jpg',0,'attachment','image/jpeg',0),(3195,2,'2015-07-12 16:47:53','2015-07-12 16:47:53','','kd11','','inherit','open','open','','kd11-2','','','2015-07-12 16:47:53','2015-07-12 16:47:53','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd11.jpg',0,'attachment','image/jpeg',0),(3196,2,'2015-07-12 16:48:21','2015-07-12 16:48:21','','kd12','','inherit','open','open','','kd12-2','','','2015-07-12 16:48:21','2015-07-12 16:48:21','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd12.jpg',0,'attachment','image/jpeg',0),(3197,2,'2015-07-12 16:48:28','2015-07-12 16:48:28','','kd13','','inherit','open','open','','kd13','','','2015-07-12 16:48:28','2015-07-12 16:48:28','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd13.jpg',0,'attachment','image/jpeg',0),(3198,2,'2015-07-12 16:48:38','2015-07-12 16:48:38','','kd14','','inherit','open','open','','kd14','','','2015-07-12 16:48:38','2015-07-12 16:48:38','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd14.jpg',0,'attachment','image/jpeg',0),(3199,2,'2015-07-12 16:48:42','2015-07-12 16:48:42','','kd15','','inherit','open','open','','kd15-2','','','2015-07-12 16:48:42','2015-07-12 16:48:42','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd15.jpg',0,'attachment','image/jpeg',0),(3200,2,'2015-07-12 16:48:45','2015-07-12 16:48:45','','kd16','','inherit','open','open','','kd16','','','2015-07-12 16:48:45','2015-07-12 16:48:45','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd16.jpg',0,'attachment','image/jpeg',0),(3201,2,'2015-07-12 16:48:49','2015-07-12 16:48:49','','kd18','','inherit','open','open','','kd18-2','','','2015-07-12 16:48:49','2015-07-12 16:48:49','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd18.jpg',0,'attachment','image/jpeg',0),(3202,2,'2015-07-12 16:48:52','2015-07-12 16:48:52','','kd19','','inherit','open','open','','kd19','','','2015-07-12 16:48:52','2015-07-12 16:48:52','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd19.jpg',0,'attachment','image/jpeg',0),(3203,2,'2015-07-12 16:48:56','2015-07-12 16:48:56','','kd20','','inherit','open','open','','kd20','','','2015-07-12 16:48:56','2015-07-12 16:48:56','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd20.jpg',0,'attachment','image/jpeg',0),(3204,2,'2015-07-12 16:49:00','2015-07-12 16:49:00','','kd21','','inherit','open','open','','kd21','','','2015-07-12 16:49:00','2015-07-12 16:49:00','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd21.jpg',0,'attachment','image/jpeg',0),(3205,2,'2015-07-12 16:49:05','2015-07-12 16:49:05','','kd22','','inherit','open','open','','kd22','','','2015-07-12 16:49:05','2015-07-12 16:49:05','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd22.jpg',0,'attachment','image/jpeg',0),(3206,2,'2015-07-12 16:49:08','2015-07-12 16:49:08','','kd23','','inherit','open','open','','kd23-2','','','2015-07-12 16:49:08','2015-07-12 16:49:08','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd23.jpg',0,'attachment','image/jpeg',0),(3207,2,'2015-07-12 16:49:14','2015-07-12 16:49:14','','kd24','','inherit','open','open','','kd24-2','','','2015-07-12 16:49:14','2015-07-12 16:49:14','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd24.jpg',0,'attachment','image/jpeg',0),(3208,2,'2015-07-12 16:49:21','2015-07-12 16:49:21','','kd25','','inherit','open','open','','kd25','','','2015-07-12 16:49:21','2015-07-12 16:49:21','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd25.jpg',0,'attachment','image/jpeg',0),(3209,2,'2015-07-12 16:49:28','2015-07-12 16:49:28','','kd26','','inherit','open','open','','kd26','','','2015-07-12 16:49:28','2015-07-12 16:49:28','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd26.jpg',0,'attachment','image/jpeg',0),(3210,2,'2015-07-12 16:49:33','2015-07-12 16:49:33','','kd27','','inherit','open','open','','kd27','','','2015-07-12 16:49:33','2015-07-12 16:49:33','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd27.jpg',0,'attachment','image/jpeg',0),(3211,2,'2015-07-12 16:49:41','2015-07-12 16:49:41','','kd28','','inherit','open','open','','kd28','','','2015-07-12 16:49:41','2015-07-12 16:49:41','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd28.jpg',0,'attachment','image/jpeg',0),(3212,2,'2015-07-12 16:49:46','2015-07-12 16:49:46','','kd31','','inherit','open','open','','kd31','','','2015-07-12 16:49:46','2015-07-12 16:49:46','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd31.jpg',0,'attachment','image/jpeg',0),(3213,2,'2015-07-12 16:49:58','2015-07-12 16:49:58','','kd32','','inherit','open','open','','kd32','','','2015-07-12 16:49:58','2015-07-12 16:49:58','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd32.jpg',0,'attachment','image/jpeg',0),(3214,2,'2015-07-12 16:50:05','2015-07-12 16:50:05','','kd33','','inherit','open','open','','kd33','','','2015-07-12 16:50:05','2015-07-12 16:50:05','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd33.jpg',0,'attachment','image/jpeg',0),(3215,2,'2015-07-12 16:50:10','2015-07-12 16:50:10','','kd34','','inherit','open','open','','kd34-3','','','2015-07-12 16:50:10','2015-07-12 16:50:10','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd34.jpg',0,'attachment','image/jpeg',0),(3216,2,'2015-07-12 16:50:15','2015-07-12 16:50:15','','kd35','','inherit','open','open','','kd35','','','2015-07-12 16:50:15','2015-07-12 16:50:15','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd35.jpg',0,'attachment','image/jpeg',0),(3217,2,'2015-07-12 16:50:21','2015-07-12 16:50:21','','kd36','','inherit','open','open','','kd36','','','2015-07-12 16:50:21','2015-07-12 16:50:21','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd36.jpg',0,'attachment','image/jpeg',0),(3218,2,'2015-07-12 16:50:27','2015-07-12 16:50:27','','kd37','','inherit','open','open','','kd37','','','2015-07-12 16:50:27','2015-07-12 16:50:27','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd37.jpg',0,'attachment','image/jpeg',0),(3219,2,'2015-07-12 16:50:31','2015-07-12 16:50:31','','kd38','','inherit','open','open','','kd38','','','2015-07-12 16:50:31','2015-07-12 16:50:31','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd38.jpg',0,'attachment','image/jpeg',0),(3220,2,'2015-07-12 16:50:36','2015-07-12 16:50:36','','kd39','','inherit','open','open','','kd39','','','2015-07-12 16:50:36','2015-07-12 16:50:36','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd39.jpg',0,'attachment','image/jpeg',0),(3221,2,'2015-07-12 16:50:41','2015-07-12 16:50:41','','kd40','','inherit','open','open','','kd40','','','2015-07-12 16:50:41','2015-07-12 16:50:41','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd40.jpg',0,'attachment','image/jpeg',0),(3222,2,'2015-07-12 16:50:51','2015-07-12 16:50:51','','kd41','','inherit','open','open','','kd41','','','2015-07-12 16:50:51','2015-07-12 16:50:51','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd41.jpg',0,'attachment','image/jpeg',0),(3223,2,'2015-07-12 16:50:57','2015-07-12 16:50:57','','kd49','','inherit','open','open','','kd49','','','2015-07-12 16:50:57','2015-07-12 16:50:57','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd49.jpg',0,'attachment','image/jpeg',0),(3224,2,'2015-07-12 16:51:05','2015-07-12 16:51:05','','kd50','','inherit','open','open','','kd50','','','2015-07-12 16:51:05','2015-07-12 16:51:05','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd50.jpg',0,'attachment','image/jpeg',0),(3225,2,'2015-07-12 16:51:10','2015-07-12 16:51:10','','kd51','','inherit','open','open','','kd51','','','2015-07-12 16:51:10','2015-07-12 16:51:10','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd51.jpg',0,'attachment','image/jpeg',0),(3226,2,'2015-07-12 16:51:17','2015-07-12 16:51:17','','kd52','','inherit','open','open','','kd52','','','2015-07-12 16:51:17','2015-07-12 16:51:17','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd52.jpg',0,'attachment','image/jpeg',0),(3227,2,'2015-07-12 16:51:24','2015-07-12 16:51:24','','kd53','','inherit','open','open','','kd53','','','2015-07-12 16:51:24','2015-07-12 16:51:24','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd53.jpg',0,'attachment','image/jpeg',0),(3228,2,'2015-07-12 16:51:30','2015-07-12 16:51:30','','kd54','','inherit','open','open','','kd54','','','2015-07-12 16:51:30','2015-07-12 16:51:30','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd54.jpg',0,'attachment','image/jpeg',0),(3229,2,'2015-07-12 16:51:36','2015-07-12 16:51:36','','kd55','','inherit','open','open','','kd55','','','2015-07-12 16:51:36','2015-07-12 16:51:36','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd55.jpg',0,'attachment','image/jpeg',0),(3230,2,'2015-07-12 16:51:45','2015-07-12 16:51:45','','kd56','','inherit','open','open','','kd56','','','2015-07-12 16:51:45','2015-07-12 16:51:45','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd56.jpg',0,'attachment','image/jpeg',0),(3231,2,'2015-07-12 16:51:52','2015-07-12 16:51:52','','kd57','','inherit','open','open','','kd57','','','2015-07-12 16:51:52','2015-07-12 16:51:52','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd57.jpg',0,'attachment','image/jpeg',0),(3232,2,'2015-07-12 16:52:04','2015-07-12 16:52:04','','Kavi Darbar 2006','','inherit','open','open','','3181-revision-v1','','','2015-07-12 16:52:04','2015-07-12 16:52:04','',3181,'http://punjabyouthclub.com/index.php/2015/07/12/3181-revision-v1/',0,'revision','',0),(3233,2,'2015-07-12 16:52:08','2015-07-12 16:52:08','','kd58','','inherit','open','open','','kd58','','','2015-07-12 16:52:08','2015-07-12 16:52:08','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd58.jpg',0,'attachment','image/jpeg',0),(3234,2,'2015-07-12 16:52:28','2015-07-12 16:52:28','','kd59','','inherit','open','open','','kd59','','','2015-07-12 16:52:28','2015-07-12 16:52:28','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd59.jpg',0,'attachment','image/jpeg',0),(3235,2,'2015-07-12 16:52:39','2015-07-12 16:52:39','','kd60','','inherit','open','open','','kd60','','','2015-07-12 16:52:39','2015-07-12 16:52:39','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd60.jpg',0,'attachment','image/jpeg',0),(3236,2,'2015-07-12 16:52:48','2015-07-12 16:52:48','','kd61','','inherit','open','open','','kd61','','','2015-07-12 16:52:48','2015-07-12 16:52:48','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd61.jpg',0,'attachment','image/jpeg',0),(3237,2,'2015-07-12 16:52:58','2015-07-12 16:52:58','','kd62','','inherit','open','open','','kd62','','','2015-07-12 16:52:58','2015-07-12 16:52:58','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd62.jpg',0,'attachment','image/jpeg',0),(3238,2,'2015-07-12 16:53:03','2015-07-12 16:53:03','','kd63','','inherit','open','open','','kd63','','','2015-07-12 16:53:03','2015-07-12 16:53:03','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd63.jpg',0,'attachment','image/jpeg',0),(3239,2,'2015-07-12 16:53:07','2015-07-12 16:53:07','','kd64','','inherit','open','open','','kd64','','','2015-07-12 16:53:07','2015-07-12 16:53:07','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd64.jpg',0,'attachment','image/jpeg',0),(3240,2,'2015-07-12 16:53:14','2015-07-12 16:53:14','','kd65','','inherit','open','open','','kd65','','','2015-07-12 16:53:14','2015-07-12 16:53:14','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd65.jpg',0,'attachment','image/jpeg',0),(3241,2,'2015-07-12 16:53:17','2015-07-12 16:53:17','','kd66','','inherit','open','open','','kd66','','','2015-07-12 16:53:17','2015-07-12 16:53:17','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd66.jpg',0,'attachment','image/jpeg',0),(3242,2,'2015-07-12 16:53:21','2015-07-12 16:53:21','','kd67','','inherit','open','open','','kd67','','','2015-07-12 16:53:21','2015-07-12 16:53:21','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd67.jpg',0,'attachment','image/jpeg',0),(3243,2,'2015-07-12 16:53:27','2015-07-12 16:53:27','','kd68','','inherit','open','open','','kd68','','','2015-07-12 16:53:27','2015-07-12 16:53:27','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd68.jpg',0,'attachment','image/jpeg',0),(3244,2,'2015-07-12 16:53:32','2015-07-12 16:53:32','','kd69','','inherit','open','open','','kd69','','','2015-07-12 16:53:32','2015-07-12 16:53:32','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd69.jpg',0,'attachment','image/jpeg',0),(3245,2,'2015-07-12 16:53:36','2015-07-12 16:53:36','','kd70','','inherit','open','open','','kd70','','','2015-07-12 16:53:36','2015-07-12 16:53:36','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd70.jpg',0,'attachment','image/jpeg',0),(3246,2,'2015-07-12 16:53:41','2015-07-12 16:53:41','','kd71','','inherit','open','open','','kd71','','','2015-07-12 16:53:41','2015-07-12 16:53:41','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd71.jpg',0,'attachment','image/jpeg',0),(3247,2,'2015-07-12 16:53:46','2015-07-12 16:53:46','','kd72','','inherit','open','open','','kd72','','','2015-07-12 16:53:46','2015-07-12 16:53:46','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd72.jpg',0,'attachment','image/jpeg',0),(3248,2,'2015-07-12 16:53:51','2015-07-12 16:53:51','','kd73','','inherit','open','open','','kd73','','','2015-07-12 16:53:51','2015-07-12 16:53:51','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd73.jpg',0,'attachment','image/jpeg',0),(3249,2,'2015-07-12 16:53:55','2015-07-12 16:53:55','','kd74','','inherit','open','open','','kd74','','','2015-07-12 16:53:55','2015-07-12 16:53:55','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd74.jpg',0,'attachment','image/jpeg',0),(3250,2,'2015-07-12 16:53:59','2015-07-12 16:53:59','','kd75','','inherit','open','open','','kd75','','','2015-07-12 16:53:59','2015-07-12 16:53:59','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd75.jpg',0,'attachment','image/jpeg',0),(3251,2,'2015-07-12 16:54:05','2015-07-12 16:54:05','','kd76','','inherit','open','open','','kd76','','','2015-07-12 16:54:05','2015-07-12 16:54:05','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd76.jpg',0,'attachment','image/jpeg',0),(3252,2,'2015-07-12 16:54:11','2015-07-12 16:54:11','','kd77','','inherit','open','open','','kd77','','','2015-07-12 16:54:11','2015-07-12 16:54:11','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd77.jpg',0,'attachment','image/jpeg',0),(3253,2,'2015-07-12 16:54:17','2015-07-12 16:54:17','','kd78','','inherit','open','open','','kd78','','','2015-07-12 16:54:17','2015-07-12 16:54:17','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd78.jpg',0,'attachment','image/jpeg',0),(3254,2,'2015-07-12 16:54:25','2015-07-12 16:54:25','','kd79','','inherit','open','open','','kd79','','','2015-07-12 16:54:25','2015-07-12 16:54:25','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd79.jpg',0,'attachment','image/jpeg',0),(3255,2,'2015-07-12 16:54:30','2015-07-12 16:54:30','','kd80','','inherit','open','open','','kd80','','','2015-07-12 16:54:30','2015-07-12 16:54:30','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd80.jpg',0,'attachment','image/jpeg',0),(3256,2,'2015-07-12 16:54:39','2015-07-12 16:54:39','','kd81','','inherit','open','open','','kd81','','','2015-07-12 16:54:39','2015-07-12 16:54:39','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd81.jpg',0,'attachment','image/jpeg',0),(3257,2,'2015-07-12 16:54:45','2015-07-12 16:54:45','','kd82','','inherit','open','open','','kd82','','','2015-07-12 16:54:45','2015-07-12 16:54:45','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd82.jpg',0,'attachment','image/jpeg',0),(3258,2,'2015-07-12 16:54:53','2015-07-12 16:54:53','','kd83','','inherit','open','open','','kd83','','','2015-07-12 16:54:53','2015-07-12 16:54:53','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd83.jpg',0,'attachment','image/jpeg',0),(3259,2,'2015-07-12 16:54:59','2015-07-12 16:54:59','','kd84','','inherit','open','open','','kd84','','','2015-07-12 16:54:59','2015-07-12 16:54:59','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd84.jpg',0,'attachment','image/jpeg',0),(3260,2,'2015-07-12 16:55:04','2015-07-12 16:55:04','','kd85','','inherit','open','open','','kd85','','','2015-07-12 16:55:04','2015-07-12 16:55:04','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd85.jpg',0,'attachment','image/jpeg',0),(3261,2,'2015-07-12 16:55:14','2015-07-12 16:55:14','','kd86','','inherit','open','open','','kd86','','','2015-07-12 16:55:14','2015-07-12 16:55:14','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd86.jpg',0,'attachment','image/jpeg',0),(3262,2,'2015-07-12 16:55:25','2015-07-12 16:55:25','','kd87','','inherit','open','open','','kd87','','','2015-07-12 16:55:25','2015-07-12 16:55:25','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd87.jpg',0,'attachment','image/jpeg',0),(3263,2,'2015-07-12 16:55:36','2015-07-12 16:55:36','','kd88','','inherit','open','open','','kd88','','','2015-07-12 16:55:36','2015-07-12 16:55:36','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd88.jpg',0,'attachment','image/jpeg',0),(3264,2,'2015-07-12 16:55:41','2015-07-12 16:55:41','','kd89','','inherit','open','open','','kd89','','','2015-07-12 16:55:41','2015-07-12 16:55:41','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd89.jpg',0,'attachment','image/jpeg',0),(3265,2,'2015-07-12 16:55:48','2015-07-12 16:55:48','','kd90','','inherit','open','open','','kd90','','','2015-07-12 16:55:48','2015-07-12 16:55:48','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kd90.jpg',0,'attachment','image/jpeg',0),(3266,2,'2015-07-12 16:55:52','2015-07-12 16:55:52','','PICT2622','','inherit','open','open','','pict2622-2','','','2015-07-12 16:55:52','2015-07-12 16:55:52','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PICT2622.jpg',0,'attachment','image/jpeg',0),(3267,2,'2015-07-12 16:55:56','2015-07-12 16:55:56','','PICT2626','','inherit','open','open','','pict2626','','','2015-07-12 16:55:56','2015-07-12 16:55:56','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PICT2626.jpg',0,'attachment','image/jpeg',0),(3268,2,'2015-07-12 16:56:02','2015-07-12 16:56:02','','PICT2628','','inherit','open','open','','pict2628','','','2015-07-12 16:56:02','2015-07-12 16:56:02','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PICT2628.jpg',0,'attachment','image/jpeg',0),(3269,2,'2015-07-12 16:56:08','2015-07-12 16:56:08','','PICT2629','','inherit','open','open','','pict2629','','','2015-07-12 16:56:08','2015-07-12 16:56:08','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PICT2629.jpg',0,'attachment','image/jpeg',0),(3270,2,'2015-07-12 16:56:14','2015-07-12 16:56:14','','PICT2667','','inherit','open','open','','pict2667','','','2015-07-12 16:56:14','2015-07-12 16:56:14','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PICT2667.jpg',0,'attachment','image/jpeg',0),(3271,2,'2015-07-12 16:56:26','2015-07-12 16:56:26','','PICT2668','','inherit','open','open','','pict2668','','','2015-07-12 16:56:26','2015-07-12 16:56:26','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PICT2668.jpg',0,'attachment','image/jpeg',0),(3272,2,'2015-07-12 16:56:31','2015-07-12 16:56:31','','rana','','inherit','open','open','','rana','','','2015-07-12 16:56:31','2015-07-12 16:56:31','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/rana.jpg',0,'attachment','image/jpeg',0),(3273,2,'2015-07-12 16:56:39','2015-07-12 16:56:39','','shivevening','','inherit','open','open','','shivevening','','','2015-07-12 16:56:39','2015-07-12 16:56:39','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/shivevening.jpg',0,'attachment','image/jpeg',0),(3275,2,'2015-07-12 17:09:33','2015-07-12 17:09:33','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"2\" category=\"bhangra,dastar_mukabla,kavi-barbar,no_drugs\" layout=\"3\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-12 17:09:33','2015-07-12 17:09:33','',743,'http://punjabyouthclub.com/index.php/2015/07/12/743-revision-v1/',0,'revision','',0),(3276,2,'2015-07-12 23:31:38','2015-07-12 23:31:38','','Ajit 31 Dec 2004','','inherit','open','open','','ajit_31_dec_2004','','','2015-07-12 23:44:20','2015-07-12 23:44:20','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/ajit_31_Dec_2004.jpg',0,'attachment','image/jpeg',0),(3277,2,'2015-07-12 23:31:45','2015-07-12 23:31:45','','Film & Music  Aug_2005','','inherit','open','open','','filmmusicaug_2005','','','2015-07-12 23:44:05','2015-07-12 23:44:05','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/filmmusicaug_2005.jpg',0,'attachment','image/jpeg',0),(3278,2,'2015-07-12 23:31:54','2015-07-12 23:31:54','','HK samachar-26 aug 2002','','inherit','open','open','','hk-samachar-26-aug-2002','','','2015-07-12 23:31:54','2015-07-12 23:31:54','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/HK-samachar-26-aug-2002.jpg',0,'attachment','image/jpeg',0),(3279,2,'2015-07-12 23:32:02','2015-07-12 23:32:02','','Ajit-29-06-2006','','inherit','open','open','','ajit-29-06-2006','','','2015-07-12 23:32:02','2015-07-12 23:32:02','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Ajit-29-06-2006.jpg',0,'attachment','image/jpeg',0),(3280,2,'2015-07-12 23:32:08','2015-07-12 23:32:08','','PYC- Punjabi Chetna','','inherit','open','open','','atwal','','','2015-07-12 23:43:46','2015-07-12 23:43:46','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/atwal.jpg',0,'attachment','image/jpeg',0),(3281,2,'2015-07-12 23:32:12','2015-07-12 23:32:12','','Ajit-3-jun-2000','','inherit','open','open','','ajit-3-jun-2000','','','2015-07-12 23:43:04','2015-07-12 23:43:04','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/ajit-3-jun-2000.jpg',0,'attachment','image/jpeg',0),(3282,2,'2015-07-12 23:32:26','2015-07-12 23:32:26','','Film & Music Magazine Aug_2005','','inherit','open','open','','filmmusic_magazine_aug_2005','','','2015-07-12 23:43:26','2015-07-12 23:43:26','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/filmMusic_magazine_aug_2005.jpg',0,'attachment','image/jpeg',0),(3283,2,'2015-07-12 23:32:28','2015-07-12 23:32:28','','Ajit-14-sep-2001','','inherit','open','open','','ajit-14-sep-2001','','','2015-07-12 23:42:52','2015-07-12 23:42:52','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/ajit-14-sep-2001.jpg',0,'attachment','image/jpeg',0),(3284,2,'2015-07-12 23:32:47','2015-07-12 23:32:47','','Ajit 22-02-2006','','inherit','open','open','','ajit-22-02-2006','','','2015-07-12 23:32:47','2015-07-12 23:32:47','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Ajit-22-02-2006.jpg',0,'attachment','image/jpeg',0),(3285,2,'2015-07-12 23:32:57','2015-07-12 23:32:57','','Ajit - 18th August','','inherit','open','open','','bindra-gold-medal-18th-august-ajit','','','2015-07-12 23:42:42','2015-07-12 23:42:42','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/bindra-gold-medal-18th-august-ajit.jpg',0,'attachment','image/jpeg',0),(3286,2,'2015-07-12 23:33:09','2015-07-12 23:33:09','','Ajit-4 oct-2000','','inherit','open','open','','ajit-4-oct-2000','','','2015-07-12 23:42:26','2015-07-12 23:42:26','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/ajit-4-oct-2000.jpg',0,'attachment','image/jpeg',0),(3287,2,'2015-07-12 23:33:18','2015-07-12 23:33:18','','Ajit-29 sept 08','','inherit','open','open','','kamagata-ajit-29-sept-08','','','2015-07-12 23:42:23','2015-07-12 23:42:23','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kamagata-ajit-29-sept-08.jpg',0,'attachment','image/jpeg',0),(3288,2,'2015-07-12 23:33:28','2015-07-12 23:33:28','','Ajit 16-05-2010','','inherit','open','open','','ajit-16-05-2010','','','2015-07-12 23:42:16','2015-07-12 23:42:16','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/ajit-16-05-2010.jpg',0,'attachment','image/jpeg',0),(3289,2,'2015-07-12 23:33:36','2015-07-12 23:33:36','','Ajit -Ishmeet-18th August','','inherit','open','open','','ishmeet-18th-august-ajit','','','2015-07-12 23:42:09','2015-07-12 23:42:09','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Ishmeet-18th-august-AJIT.jpg',0,'attachment','image/jpeg',0),(3290,2,'2015-07-12 23:33:57','2015-07-12 23:33:57','','Ajit  4 Sept','','inherit','open','open','','new-commitee-4-sept-ajit','','','2015-07-12 23:41:50','2015-07-12 23:41:50','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/New-commitee-4-sept-ajit.jpg',0,'attachment','image/jpeg',0),(3291,2,'2015-07-12 23:34:28','2015-07-12 23:34:28','','European news 3-10-08','','inherit','open','open','','european-news-3-10-08','','','2015-07-12 23:41:31','2015-07-12 23:41:31','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/european-news-3-10-08.jpg',0,'attachment','image/jpeg',0),(3292,2,'2015-07-12 23:34:37','2015-07-12 23:34:37','','RTHK-news 3-10-08','','inherit','open','open','','rthk-news-3-10-08','','','2015-07-12 23:41:27','2015-07-12 23:41:27','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/rthk-news-3-10-08.jpg',0,'attachment','image/jpeg',0),(3293,2,'2015-07-12 23:34:42','2015-07-12 23:34:42','','2008','','inherit','open','open','','scan1','','','2015-07-12 23:41:19','2015-07-12 23:41:19','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/scan1.jpg',0,'attachment','image/jpeg',0),(3295,2,'2015-07-12 23:35:12','2015-07-12 23:35:12','','Ajit--Nov-2014','','inherit','open','open','','ajit-nov-2014','','','2015-07-12 23:40:45','2015-07-12 23:40:45','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/ajit-nov-2014.jpg',0,'attachment','image/jpeg',0),(3296,2,'2015-07-12 23:35:36','2015-07-12 23:35:36','','Ajit 12-sep-2001','','inherit','open','open','','12-sep-2001','','','2015-07-12 23:40:37','2015-07-12 23:40:37','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/12-sep-2001.jpg',0,'attachment','image/jpeg',0),(3297,2,'2015-07-12 23:47:28','2015-07-12 23:47:28','','Media News','','publish','open','open','','media-news','','','2015-07-13 07:23:10','2015-07-13 07:23:10','',0,'http://punjabyouthclub.com/?post_type=portfolio&#038;p=3297',0,'portfolio','',0),(3298,2,'2015-07-12 23:35:43','2015-07-12 23:35:43','','Ajit-9-jun-2000','','inherit','open','open','','ajit-9-jun-2000','','','2015-07-12 23:40:31','2015-07-12 23:40:31','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/ajit-9-jun-2000.jpg',0,'attachment','image/jpeg',0),(3299,2,'2015-07-12 23:35:47','2015-07-12 23:35:47','','Ajit 31 December 2004','','inherit','open','open','','ajit-31-december-2004','','','2015-07-12 23:40:25','2015-07-12 23:40:25','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/ajit-31-December-2004.jpg',0,'attachment','image/jpeg',0),(3300,2,'2015-07-12 23:35:59','2015-07-12 23:35:59','','Ajit 17_06_2006','','inherit','open','open','','3','','','2015-07-12 23:40:20','2015-07-12 23:40:20','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/3.gif',0,'attachment','image/gif',0),(3301,2,'2015-07-12 23:36:04','2015-07-12 23:36:04','','Ajit 17_06_2006','','inherit','open','open','','4','','','2015-07-12 23:40:12','2015-07-12 23:40:12','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/4.gif',0,'attachment','image/gif',0),(3302,2,'2015-07-12 23:36:08','2015-07-12 23:36:08','','Ajit 17_06_2006','','inherit','open','open','','ajit17_06_2006','','','2015-07-12 23:39:33','2015-07-12 23:39:33','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/ajit17_06_2006.jpg',0,'attachment','image/jpeg',0),(3303,2,'2015-07-12 23:36:19','2015-07-12 23:36:19','','5','','inherit','open','open','','5','','','2015-07-12 23:36:19','2015-07-12 23:36:19','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/5.gif',0,'attachment','image/gif',0),(3304,2,'2015-07-12 23:36:27','2015-07-12 23:36:27','','HK Samachar 24-06-06','','inherit','open','open','','hksamachar240606','','','2015-07-12 23:39:20','2015-07-12 23:39:20','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/hksamachar240606.jpg',0,'attachment','image/jpeg',0),(3305,2,'2015-07-12 23:36:34','2015-07-12 23:36:34','','HK Samachar 24-06-06','','inherit','open','open','','hksamachar240606-1','','','2015-07-12 23:39:03','2015-07-12 23:39:03','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/hksamachar240606-1.jpg',0,'attachment','image/jpeg',0),(3306,2,'2015-07-12 23:36:40','2015-07-12 23:36:40','','Ajit 17-06-06','','inherit','open','open','','ajit170606','','','2015-07-12 23:38:37','2015-07-12 23:38:37','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/ajit170606.jpg',0,'attachment','image/jpeg',0),(3307,2,'2015-07-12 23:36:45','2015-07-12 23:36:45','','Ajit-27 nov-02','','inherit','open','open','','ajit-27nov-02','','','2015-07-12 23:38:19','2015-07-12 23:38:19','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/ajit-27nov-02.jpg',0,'attachment','image/jpeg',0),(3308,2,'2015-07-12 23:36:51','2015-07-12 23:36:51','','Ajit 17_06_2006','','inherit','open','open','','2','','','2015-07-12 23:40:16','2015-07-12 23:40:16','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/2.gif',0,'attachment','image/gif',0),(3309,2,'2015-07-12 23:47:28','2015-07-12 23:47:28','','Media News','','inherit','open','open','','3297-revision-v1','','','2015-07-12 23:47:28','2015-07-12 23:47:28','',3297,'http://punjabyouthclub.com/index.php/2015/07/12/3297-revision-v1/',0,'revision','',0),(3310,2,'2015-07-12 23:49:23','2015-07-12 23:49:23','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890,2877,2876,2875,2874,2873,2872,2871,2869\" layout=\"fullwidth\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" constrain_max_cols=\"true\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][social_buttons][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nectar_portfolio layout=\"3\" category=\"illustration,media-news\" starting_category=\"default\" project_style=\"1\" pagination_type=\"default\"][/vc_column][/vc_row]','Media News','','inherit','open','open','','2707-revision-v1','','','2015-07-12 23:49:23','2015-07-12 23:49:23','',2707,'http://punjabyouthclub.com/index.php/2015/07/12/2707-revision-v1/',0,'revision','',0),(3311,2,'2015-07-12 23:55:00','2015-07-12 23:55:00','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2892,2890,2877,2876,2875,2874,2873,2872,2871,2869\" layout=\"fullwidth\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" constrain_max_cols=\"true\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][social_buttons full_width_icons=\"true\" nectar_love=\"true\" facebook=\"true\" twitter=\"true\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nectar_portfolio layout=\"3\" category=\"illustration,media-news\" starting_category=\"default\" project_style=\"1\" pagination_type=\"default\"][/vc_column][/vc_row]','Media News','','inherit','open','open','','2707-revision-v1','','','2015-07-12 23:55:00','2015-07-12 23:55:00','',2707,'http://punjabyouthclub.com/index.php/2015/07/12/2707-revision-v1/',0,'revision','',0),(3312,2,'2015-07-12 23:58:42','2015-07-12 23:58:42','[vc_row][vc_column width=\"1/1\"][nectar_portfolio layout=\"3\" category=\"illustration,media-news\" starting_category=\"default\" project_style=\"1\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3308,3307,3306,3305,3304,3303,3302,3301,3300,3299,3298,3296,3295,3293,3292,3291,3290,3289,3288,3287,3286,3285,3284,3283,3277,3278,3279,3280,3281,3282,3276\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"600x0\"][/vc_column][/vc_row]','Media News','','inherit','open','open','','2707-revision-v1','','','2015-07-12 23:58:42','2015-07-12 23:58:42','',2707,'http://punjabyouthclub.com/index.php/2015/07/12/2707-revision-v1/',0,'revision','',0),(3313,2,'2015-07-13 00:02:57','2015-07-13 00:02:57','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3308,3307,3306,3305,3304,3303,3302,3301,3300,3299,3298,3296,3295,3293,3292,3291,3290,3289,3288,3287,3286,3285,3284,3283,3277,3278,3279,3280,3281,3282,3276\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"0x600\"][/vc_column][/vc_row]','Media News','','inherit','open','open','','2707-revision-v1','','','2015-07-13 00:02:57','2015-07-13 00:02:57','',2707,'http://punjabyouthclub.com/index.php/2015/07/13/2707-revision-v1/',0,'revision','',0),(3314,2,'2015-07-13 00:03:57','2015-07-13 00:03:57','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3308,3307,3306,3305,3304,3303,3302,3301,3300,3299,3298,3296,3295,3293,3292,3291,3290,3289,3288,3287,3286,3285,3284,3283,3277,3278,3279,3280,3281,3282,3276\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"400x600\"][/vc_column][/vc_row]','Media News','','inherit','open','open','','2707-revision-v1','','','2015-07-13 00:03:57','2015-07-13 00:03:57','',2707,'http://punjabyouthclub.com/index.php/2015/07/13/2707-revision-v1/',0,'revision','',0),(3315,2,'2015-07-13 00:10:50','2015-07-13 00:10:50','[vc_row][vc_column width=\"1/1\"][social_buttons full_width_icons=\"true\" facebook=\"true\" twitter=\"true\" google_plus=\"true\" linkedin=\"true\" pinterest=\"true\"][/vc_column][/vc_row][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"2\" category=\"bhangra,dastar_mukabla,kavi-barbar,no_drugs\" layout=\"3\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-13 00:10:50','2015-07-13 00:10:50','',743,'http://punjabyouthclub.com/index.php/2015/07/13/743-revision-v1/',0,'revision','',0),(3316,2,'2015-07-13 04:49:01','2015-07-13 04:49:01','[vc_row][vc_column width=\"1/1\"][social_buttons full_width_icons=\"true\" facebook=\"true\" twitter=\"true\" google_plus=\"true\" linkedin=\"true\" pinterest=\"true\"][/vc_column][/vc_row][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"bhangra,dastar_mukabla,kavi-barbar,no_drugs\" layout=\"3\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-13 04:49:01','2015-07-13 04:49:01','',743,'http://punjabyouthclub.com/index.php/2015/07/13/743-revision-v1/',0,'revision','',0),(3319,2,'2015-07-14 08:07:19','2015-07-14 08:07:19','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"5\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Balwinder Singh Brar\" job_position=\"President\" description=\"Year 2012-Present\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Navtej Singh Atwal\" job_position=\"President\" description=\"Year 2005-2009\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Parvinder Singh Mann\" job_position=\"President\" description=\"Year 2009-2012\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Kashmir Singh Sohal\" job_position=\"President\" description=\"Year 2003-2005\nFounder Member of the Club\"][/vc_column][/vc_row][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"5\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jagtar Singh Gill ( Dhudike)\" job_position=\"President\" description=\"Year 2001-2003\nFounder Member of Punjab Youth Club (HK)\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','Roll of Honor','','inherit','open','open','','2692-autosave-v1','','','2015-07-14 08:07:19','2015-07-14 08:07:19','',2692,'http://punjabyouthclub.com/index.php/2015/07/13/2692-autosave-v1/',0,'revision','',0),(3322,2,'2015-07-13 06:12:56','2015-07-13 06:12:56','','Auto Draft','','publish','closed','closed','','auto-draft-9','','','2015-07-13 06:12:56','2015-07-13 06:12:56','',0,'http://punjabyouthclub.com/?post_type=nectar_slider&#038;p=3322',0,'nectar_slider','',0),(3324,2,'2015-07-13 06:23:08','2015-07-13 06:23:08','[vc_row][vc_column width=\"1/1\"][nectar_slider location=\"Roll\" flexible_slider_height=\"true\" arrow_navigation=\"true\" desktop_swipe=\"true\" loop=\"true\" slider_transition=\"fade\" slider_height=\"400\" min_slider_height=\"300\" autorotate=\"5000\"][/vc_column][/vc_row]','Roll of Honor','','inherit','open','open','','2692-revision-v1','','','2015-07-13 06:23:08','2015-07-13 06:23:08','',2692,'http://punjabyouthclub.com/index.php/2015/07/13/2692-revision-v1/',0,'revision','',0),(3325,2,'2015-07-13 06:30:05','2015-07-13 06:30:05','','Jasmel Singh Dhaliwal   Year 2000-2001','','inherit','open','open','','pyc-logo-new-3b-300x300','','','2015-07-13 06:48:36','2015-07-13 06:48:36','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC-logo-new-3B-300x3001.png',0,'attachment','image/png',0),(3326,2,'2015-07-13 06:38:52','2015-07-13 06:38:52','[vc_row][vc_column width=\"1/1\"][nectar_portfolio layout=\"3\" category=\"print\" starting_category=\"default\" project_style=\"1\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3325,3183,3075,3082\" display_title_caption=\"true\" layout=\"4\" gallery_style=\"4\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"300x300\"][/vc_column][/vc_row]','Roll of Honor','','inherit','open','open','','2692-revision-v1','','','2015-07-13 06:38:52','2015-07-13 06:38:52','',2692,'http://punjabyouthclub.com/index.php/2015/07/13/2692-revision-v1/',0,'revision','',0),(3327,2,'2015-07-13 06:41:02','2015-07-13 06:41:02','[vc_row][vc_column width=\"1/1\"][nectar_portfolio layout=\"3\" category=\"roll\" starting_category=\"default\" project_style=\"1\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3325,3183,3075,3082\" display_title_caption=\"true\" layout=\"4\" gallery_style=\"4\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"300x300\"][/vc_column][/vc_row]','Roll of Honor','','inherit','open','open','','2692-revision-v1','','','2015-07-13 06:41:02','2015-07-13 06:41:02','',2692,'http://punjabyouthclub.com/index.php/2015/07/13/2692-revision-v1/',0,'revision','',0),(3330,2,'2015-07-13 06:53:11','2015-07-13 06:53:11','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3325,3183,3075,3082\" display_title_caption=\"true\" layout=\"4\" gallery_style=\"4\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"300x600\"][/vc_column][/vc_row]','Roll of Honor','','inherit','open','open','','2692-revision-v1','','','2015-07-13 06:53:11','2015-07-13 06:53:11','',2692,'http://punjabyouthclub.com/index.php/2015/07/13/2692-revision-v1/',0,'revision','',0),(3331,2,'2015-07-13 06:54:50','2015-07-13 06:54:50','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3325,3183,3075,3082,3076,3077\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"4\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"300x400\"][/vc_column][/vc_row]','Roll of Honor','','inherit','open','open','','2692-revision-v1','','','2015-07-13 06:54:50','2015-07-13 06:54:50','',2692,'http://punjabyouthclub.com/index.php/2015/07/13/2692-revision-v1/',0,'revision','',0),(3332,2,'2015-07-13 06:55:57','2015-07-13 06:55:57','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3325,3183,3075,3082,3076,3077\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"4\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"300x300\"][/vc_column][/vc_row]','Roll of Honor','','inherit','open','open','','2692-revision-v1','','','2015-07-13 06:55:57','2015-07-13 06:55:57','',2692,'http://punjabyouthclub.com/index.php/2015/07/13/2692-revision-v1/',0,'revision','',0),(3333,2,'2015-07-13 07:00:45','2015-07-13 07:00:45','[vc_row][vc_column width=\"1/4\" enable_animation=\"true\" animation=\"flip-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3325,3183,3075,3082,3076,3077\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"4\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"300x300\"][/vc_column][/vc_row]','Roll of Honor','','inherit','open','open','','2692-revision-v1','','','2015-07-13 07:00:45','2015-07-13 07:00:45','',2692,'http://punjabyouthclub.com/index.php/2015/07/13/2692-revision-v1/',0,'revision','',0),(3334,2,'2015-07-13 07:04:03','2015-07-13 07:04:03','[vc_row][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"flip-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3325,3183,3075,3082,3076,3077\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"4\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"300x300\"][/vc_column][/vc_row]','Roll of Honor','','inherit','open','open','','2692-revision-v1','','','2015-07-13 07:04:03','2015-07-13 07:04:03','',2692,'http://punjabyouthclub.com/index.php/2015/07/13/2692-revision-v1/',0,'revision','',0),(3335,2,'2015-07-13 07:09:28','2015-07-13 07:09:28','[vc_row][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"5\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3325,3183,3075,3082,3076,3077\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"4\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"300x300\"][/vc_column][/vc_row]','Roll of Honor','','inherit','open','open','','2692-revision-v1','','','2015-07-13 07:09:28','2015-07-13 07:09:28','',2692,'http://punjabyouthclub.com/index.php/2015/07/13/2692-revision-v1/',0,'revision','',0),(3336,2,'2015-07-13 07:10:35','2015-07-13 07:10:35','[vc_row][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"5\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"5\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][/vc_row]','Roll of Honor','','inherit','open','open','','2692-revision-v1','','','2015-07-13 07:10:35','2015-07-13 07:10:35','',2692,'http://punjabyouthclub.com/index.php/2015/07/13/2692-revision-v1/',0,'revision','',0),(3337,2,'2015-07-13 07:16:41','2015-07-13 07:16:41','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"5\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Balwinder Singh Brar\" job_position=\"President\" description=\"Year 2012-Present\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Parvinder Singh Mann\" job_position=\"President\" description=\"Year 2009-2012\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Navtej Singh Atwal\" job_position=\"President\" description=\"Year 2005-2009\r\nFounder Member of the Club\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"5\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Kashmir Singh Sohal\" job_position=\"President\" description=\"Year 2003-2005\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jagtar Singh Gill ( Dhudike)\" job_position=\"President\" description=\"Year 2001-2003\r\nFounder Member of Punjab Youth Club (HK)\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][/vc_row]','Roll of Honor','','inherit','open','open','','2692-revision-v1','','','2015-07-13 07:16:41','2015-07-13 07:16:41','',2692,'http://punjabyouthclub.com/index.php/2015/07/13/2692-revision-v1/',0,'revision','',0),(3338,2,'2015-07-13 07:35:44','2015-07-13 07:35:44','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Present management Committee\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row]','Management','','inherit','open','open','','2688-autosave-v1','','','2015-07-13 07:35:44','2015-07-13 07:35:44','',2688,'http://punjabyouthclub.com/index.php/2015/07/13/2688-autosave-v1/',0,'revision','',0),(3339,2,'2015-07-13 07:36:28','2015-07-13 07:36:28','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Present management Committee\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row]','Management','','inherit','open','open','','2688-revision-v1','','','2015-07-13 07:36:28','2015-07-13 07:36:28','',2688,'http://punjabyouthclub.com/index.php/2015/07/13/2688-revision-v1/',0,'revision','',0),(3340,2,'2015-07-13 07:40:00','2015-07-13 07:40:00','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Present Management Committee\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][vc_column width=\"1/4\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Mr. Singh\" job_position=\"President\"][/vc_column][/vc_row]','Management','','inherit','open','open','','2688-revision-v1','','','2015-07-13 07:40:00','2015-07-13 07:40:00','',2688,'http://punjabyouthclub.com/index.php/2015/07/13/2688-revision-v1/',0,'revision','',0),(3341,2,'2015-07-13 07:42:05','2015-07-13 07:42:05','[vc_row][vc_column width=\"1/1\"][nectar_blog layout=\"std-blog-sidebar\" category=\"fashion\" enable_pagination=\"true\" pagination_type=\"default\"][/vc_column][/vc_row]','Videos','','inherit','open','open','','2705-revision-v1','','','2015-07-13 07:42:05','2015-07-13 07:42:05','',2705,'http://punjabyouthclub.com/index.php/2015/07/13/2705-revision-v1/',0,'revision','',0),(3346,2,'2015-07-13 07:54:17','2015-07-13 07:54:17','[vc_row][vc_column width=\"1/1\"][nectar_blog layout=\"std-blog-sidebar\" category=\"video\" enable_pagination=\"true\" pagination_type=\"default\"][/vc_column][/vc_row]','Videos','','inherit','open','open','','2705-revision-v1','','','2015-07-13 07:54:17','2015-07-13 07:54:17','',2705,'http://punjabyouthclub.com/index.php/2015/07/13/2705-revision-v1/',0,'revision','',0),(3347,2,'2015-07-13 07:57:34','2015-07-13 07:57:34','[vc_row][vc_column width=\"1/1\"][nectar_blog layout=\"std-blog-sidebar\" category=\"video\" pagination_type=\"default\" posts_per_page=\"10\"][/vc_column][/vc_row]','Videos','','inherit','open','open','','2705-revision-v1','','','2015-07-13 07:57:34','2015-07-13 07:57:34','',2705,'http://punjabyouthclub.com/index.php/2015/07/13/2705-revision-v1/',0,'revision','',0),(3348,2,'2015-07-13 07:59:36','2015-07-13 07:59:36','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi vitae dui et nunc ornare vulputate non fringilla massa. Praesent sit amet erat sapien, auctor consectetur ligula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non ligula augue. Praesent imperdiet magna at risus lobortis ac accumsan lorem ornare. In aliquam, sapien ac vehicula vestibulum, arcu magna aliquet velit,','Auctor consectetur ligula gravida','','inherit','open','open','','84-revision-v1','','','2015-07-13 07:59:36','2015-07-13 07:59:36','',84,'http://punjabyouthclub.com/index.php/2015/07/13/84-revision-v1/',0,'revision','',0),(3349,2,'2015-07-13 08:00:33','2015-07-13 08:00:33','','Ambrose Redmoon','','inherit','open','open','','2327-revision-v1','','','2015-07-13 08:00:33','2015-07-13 08:00:33','',2327,'http://punjabyouthclub.com/index.php/2015/07/13/2327-revision-v1/',0,'revision','',0),(3350,2,'2015-07-13 08:00:43','2015-07-13 08:00:43','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi vitae dui et nunc ornare vulputate non fringilla massa. Praesent sit amet erat sapien, auctor consectetur ligula. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non ligula augue. Integer justo arcu, tempor eu venenatis non, sagittis nec lacus.  Morbi vitae dui et nunc ornare vulputate non fringilla massa. Praesent sit amet erat sapien, auctor consectetur ligula.','Nulla fringilla magna','','inherit','open','open','','82-revision-v1','','','2015-07-13 08:00:43','2015-07-13 08:00:43','',82,'http://punjabyouthclub.com/index.php/2015/07/13/82-revision-v1/',0,'revision','',0),(3351,2,'2015-07-13 08:00:52','2015-07-13 08:00:52','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent ullamcorper suscipit mi, id convallis risus ullamcorper eget. Curabitur ultricies elit lacinia arcu ullamcorper adipiscing. Integer velit dui, gravida semper commodo vel <!--more-->\n\n<h4>Illustration by <a href=\"http://www.julianburford.nl/\" target=\"_blank\">Julian Burford</a></h4>\n\nNunc interdum porta ligula, eu malesuada nunc tristique eu. Integer sed mi ac velit congue vulputate sed quis lacus. Fusce tellus sem, ultricies consequat porta at, ultrices in odio. Nullam a sapien vitae erat porta faucibus rhoncus eleifend dolor. Mauris semper rutrum ante a auctor. Nullam non arcu erat, vel sollicitudin felis. Nam erat nisl, mattis euismod lacinia at, tempus quis nunc.\n\nQuisque at dolor venenatis justo fringilla dignissim ut id eros. Quisque non elit id purus feugiat vestibulum. Phasellus eget sodales neque. Morbi eget odio nec justo consequat gravida. Phasellus dolor nisl, venenatis eget euismod et, dapibus et purus. Maecenas interdum nisi a dolor facilisis eu laoreet mi facilisis. Mauris pharetra interdum lorem eu venenatis. Praesent est diam, fringilla in hendrerit vel, ullamcorper et mauris. Vivamus risus mi, lobortis ut congue vitae, vestibulum vitae augue. Maecenas nunc odio, pulvinar id vulputate nec, porttitor at quam. Suspendisse vulputate diam eu leo bibendum feugiat. Integer luctus orci a nunc consequat eleifend. Nam tempus quam sed felis tristique faucibus. Aliquam facilisis vehicula malesuada.','Magna fringilla quis','','inherit','open','open','','2328-revision-v1','','','2015-07-13 08:00:52','2015-07-13 08:00:52','',2328,'http://punjabyouthclub.com/index.php/2015/07/13/2328-revision-v1/',0,'revision','',0),(3352,2,'2015-07-13 08:01:00','2015-07-13 08:01:00','Quisque porta ipsum quis neque elementum lacinia. Pellentesque ut risus rutrum, tristique lacus nec, mollis risus. Vestibulum mollis erat arcu, eu vehicula purus consequat nec. ','Velit feugiat porttito','','inherit','open','open','','1239-revision-v1','','','2015-07-13 08:01:00','2015-07-13 08:01:00','',1239,'http://punjabyouthclub.com/index.php/2015/07/13/1239-revision-v1/',0,'revision','',0),(3353,2,'2015-07-13 08:01:08','2015-07-13 08:01:08','','Quisque sit amet sapien et lacus','','inherit','open','open','','108-revision-v1','','','2015-07-13 08:01:08','2015-07-13 08:01:08','',108,'http://punjabyouthclub.com/index.php/2015/07/13/108-revision-v1/',0,'revision','',0),(3354,2,'2015-07-13 08:01:32','2015-07-13 08:01:32','Quisque at dolor venenatis justo fringilla dignissim ut id eros. Quisque non elit id purus feugiat vestibulum. Phasellus eget sodales neque. Morbi eget odio nec justo consequat gravida. Phasellus dolor nisl, venenatis eget euismod et, dapibus et purus. Maecenas interdum nisi a dolor facilisis eu laoreet mi facilisis. Mauris pharetra interdum lorem eu venenatis. Praesent est diam, fringilla in hendrerit vel, ullamcorper et mauris.\n<!--more-->\nInteger convallis, odio ut rutrum euismod, mi purus pulvinar justo, quis mollis metus metus vitae nibh. Proin eget tincidunt arcu. Donec ante mi, elementum non adipiscing vitae, pharetra quis mauris. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Curabitur eget nibh non odio iaculis posuere. Sed ante tortor, pharetra vitae iaculis id, sodales ac tellus. Ut viverra, nulla et adipiscing condimentum, libero nisi condimentum tellus, vel pharetra neque ligula sit amet mi. Sed rutrum consectetur purus ac tincidunt.','Pharetra interdum','','inherit','open','open','','2329-revision-v1','','','2015-07-13 08:01:32','2015-07-13 08:01:32','',2329,'http://punjabyouthclub.com/index.php/2015/07/13/2329-revision-v1/',0,'revision','',0),(3355,2,'2015-07-13 08:01:40','2015-07-13 08:01:40','Cras sed lobortis libero. Pellentesque arcu lacus, dignissim ut porta in, interdum vel risus. Curabitur non est purus. Ut adipiscing purus augue, quis elementum dolor convallis id. Duis vitae sodales massa, et pharetra massa. Phasellus consectetur neque non ante ultricies rhoncus. <!--more-->Nunc eu auctor enim. Cras in risus eu velit feugiat porttitor ut non risus. Nulla vel est diam. Proin commodo ligula eu elit porta, non viverra justo ullamcorper. Curabitur at tellus erat. Vivamus tincidunt congue felis, aliquam fringilla nunc bibendum laoreet. Fusce fermentum posuere tincidunt.\n\nQuisque porta ipsum quis neque elementum lacinia. Pellentesque ut risus rutrum, tristique lacus nec, mollis risus. Vestibulum mollis erat arcu, eu vehicula purus consequat nec. Nulla turpis leo, aliquet id risus ut, volutpat tincidunt justo. Maecenas faucibus, est id gravida bibendum, nisl leo pulvinar eros, vel luctus nisi justo at dui. Nulla ultrices nulla id ultricies dignissim. Fusce id viverra massa, vitae congue eros. Fusce mi neque, sagittis eu dapibus ac, sodales nec est. Fusce a tempor justo. Donec pellentesque consectetur nunc consequat commodo. Nulla facilisi. Quisque id tellus urna. Aliquam lacinia velit ut convallis posuere.','Nullam blandit venenatis lectus','','inherit','open','open','','1247-revision-v1','','','2015-07-13 08:01:40','2015-07-13 08:01:40','',1247,'http://punjabyouthclub.com/index.php/2015/07/13/1247-revision-v1/',0,'revision','',0),(3356,2,'2015-07-13 08:01:52','2015-07-13 08:01:52','<!--more-->\n\nPhasellus venenatis venenatis velit ut ultricies. Cras porta dignissim malesuada. Etiam auctor, justo et facilisis ultrices, justo mauris imperdiet ligula, vitae tincidunt justo quam fermentum nulla. Nunc interdum porta ligula, eu malesuada nunc tristique eu. Integer sed mi ac velit congue vulputate sed quis lacus. Fusce tellus sem, ultricies consequat porta at, ultrices in odio. Nullam a sapien vitae erat porta faucibus rhoncus eleifend dolor. Mauris semper rutrum ante a auctor. Nullam non arcu erat, vel sollicitudin felis. Nam erat nisl, mattis euismod lacinia at, tempus quis nunc.\n\nDonec luctus odio eget ipsum lacinia lacinia. Suspendisse porttitor laoreet sagittis. Nulla mi justo, auctor sed posuere sit amet, pretium ac metus. Nulla porta justo ac velit accumsan faucibus. In dignissim, orci nec ultricies elementum, erat mi tristique dui, a tristique ligula quam non est. Suspendisse mattis aliquet est, at tempor ipsum lacinia a. Cras enim sapien, dapibus sit amet iaculis sit amet, pharetra non diam. Curabitur sed nisi in metus eleifend fringilla. Aenean viverra sem in quam luctus eget gravida diam scelerisque.','Suspendisse vulputate diam','','inherit','open','open','','152-revision-v1','','','2015-07-13 08:01:52','2015-07-13 08:01:52','',152,'http://punjabyouthclub.com/index.php/2015/07/13/152-revision-v1/',0,'revision','',0),(3357,2,'2015-07-13 08:02:10','2015-07-13 08:02:10','Quisque luctus nec sem quis vestibulum. Sed neque est, ornare eu laoreet in, molestie vitae augue.  <!--more--> Donec porta eros sit amet consequat bibendum. Duis sit amet augue urna. Aliquam a vulputate neque, sit amet pretium sapien. Suspendisse sagittis odio id lacus dignissim, in auctor felis rutrum.\n\nCras sed lobortis libero. Pellentesque arcu lacus, dignissim ut porta in, interdum vel risus. Curabitur non est purus. Ut adipiscing purus augue, quis elementum dolor convallis id. Duis vitae sodales massa, et pharetra massa. Phasellus consectetur neque non ante ultricies rhoncus. Fusce ac rhoncus lorem. Vivamus molestie erat metus, at aliquam ipsum ornare sed. Nunc eu auctor enim. Cras in risus eu velit feugiat porttitor ut non risus. Nulla vel est diam. Proin commodo ligula eu elit porta, non viverra justo ullamcorper. Curabitur at tellus erat. Vivamus tincidunt congue felis, aliquam fringilla nunc bibendum laoreet. Fusce fermentum posuere tincidunt.','Facilisis Elementum','','inherit','open','open','','1251-revision-v1','','','2015-07-13 08:02:10','2015-07-13 08:02:10','',1251,'http://punjabyouthclub.com/index.php/2015/07/13/1251-revision-v1/',0,'revision','',0),(3358,2,'2015-07-13 08:02:22','2015-07-13 08:02:22','','Carl Sagan','','inherit','open','open','','1242-revision-v1','','','2015-07-13 08:02:22','2015-07-13 08:02:22','',1242,'http://punjabyouthclub.com/index.php/2015/07/13/1242-revision-v1/',0,'revision','',0),(3359,2,'2006-11-26 08:04:03','2006-11-26 08:04:03','','Kavi Darbar  2011','','publish','open','open','','kavi-darbar-2011','','','2015-07-13 08:12:51','2015-07-13 08:12:51','',0,'http://punjabyouthclub.com/?p=3359',0,'post','',0),(3360,2,'2015-07-13 08:04:03','2015-07-13 08:04:03','','Kavi Darbar  2011','','inherit','open','open','','3359-revision-v1','','','2015-07-13 08:04:03','2015-07-13 08:04:03','',3359,'http://punjabyouthclub.com/index.php/2015/07/13/3359-revision-v1/',0,'revision','',0),(3361,2,'2015-07-13 08:04:18','2015-07-13 08:04:18','','Kavi Darbar  2011','','inherit','open','open','','3359-autosave-v1','','','2015-07-13 08:04:18','2015-07-13 08:04:18','',3359,'http://punjabyouthclub.com/index.php/2015/07/13/3359-autosave-v1/',0,'revision','',0),(3362,2,'2015-07-13 08:09:30','2015-07-13 08:09:30','','The Sweetest WordPress Themes Around.','','inherit','open','open','','137-revision-v1','','','2015-07-13 08:09:30','2015-07-13 08:09:30','',137,'http://punjabyouthclub.com/index.php/2015/07/13/137-revision-v1/',0,'revision','',0),(3363,2,'2015-07-13 08:09:42','2015-07-13 08:09:42','Vivamus risus mi, lobortis ut congue vitae, vestibulum vitae augue. Maecenas nunc odio, pulvinar id vulputate nec, porttitor at quam. Suspendisse vulputate diam eu leo bibendum feugiat.  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non ligula augue. Praesent imperdiet magna at risus lobortis ac accumsan lorem ornare Cras sed lobortis libero. Pellentesque arcu lacus, dignissim ut porta in, interdum vel risus. Curabitur non est purus. Ut adipiscing purus augue, quis elementum dolor convallis id.','Aenean laoreet tortor','','inherit','open','open','','559-revision-v1','','','2015-07-13 08:09:42','2015-07-13 08:09:42','',559,'http://punjabyouthclub.com/index.php/2015/07/13/559-revision-v1/',0,'revision','',0),(3364,2,'2015-07-13 08:18:03','2015-07-13 08:18:03','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3308,3307,3306,3305,3304,3303,3302,3301,3300,3299,3298,3296,3295,3293,3292,3291,3290,3289,3288,3287,3286,3285,3284,3283,3277,3278,3279,3280,3281,3282,3276\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"4\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"400x600\"][/vc_column][/vc_row]','Media News','','inherit','open','open','','2707-revision-v1','','','2015-07-13 08:18:03','2015-07-13 08:18:03','',2707,'http://punjabyouthclub.com/index.php/2015/07/13/2707-revision-v1/',0,'revision','',0),(3365,2,'2015-07-13 08:21:03','2015-07-13 08:21:03','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3308,3307,3306,3305,3304,3303,3302,3301,3300,3299,3298,3296,3295,3293,3292,3291,3290,3289,3288,3287,3286,3285,3284,3283,3277,3278,3279,3280,3281,3282,3276\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"4\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"600\"][/vc_column][/vc_row]','Media News','','inherit','open','open','','2707-revision-v1','','','2015-07-13 08:21:03','2015-07-13 08:21:03','',2707,'http://punjabyouthclub.com/index.php/2015/07/13/2707-revision-v1/',0,'revision','',0),(3366,2,'2015-07-13 23:38:24','2015-07-13 23:38:24','','Auto Draft','','publish','closed','closed','','auto-draft-4','','','2015-07-13 23:38:24','2015-07-13 23:38:24','',0,'http://punjabyouthclub.com/?post_type=home_slider&#038;p=3366',0,'home_slider','',0),(3367,2,'2015-07-13 23:40:12','2015-07-13 23:40:12','','Auto Draft','','publish','closed','closed','','auto-draft-6','','','2015-07-13 23:40:54','2015-07-13 23:40:54','',0,'http://punjabyouthclub.com/?post_type=home_slider&#038;p=3367',0,'home_slider','',0),(3368,2,'2015-07-13 23:45:16','2015-07-13 23:45:16','','Auto Draft','','publish','closed','closed','','auto-draft-7','','','2015-07-13 23:45:16','2015-07-13 23:45:16','',0,'http://punjabyouthclub.com/?post_type=home_slider&#038;p=3368',0,'home_slider','',0),(3369,2,'2015-07-13 23:52:48','2015-07-13 23:52:48','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"750\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"fade\" autorotate=\"4000\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-13 23:52:48','2015-07-13 23:52:48','',2744,'http://punjabyouthclub.com/index.php/2015/07/13/2744-revision-v1/',0,'revision','',0),(3370,2,'2015-07-13 23:54:38','2015-07-13 23:54:38','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"fade\" autorotate=\"5000\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-13 23:54:38','2015-07-13 23:54:38','',2744,'http://punjabyouthclub.com/index.php/2015/07/13/2744-revision-v1/',0,'revision','',0),(3371,2,'2015-07-13 23:56:51','2015-07-13 23:56:51','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5000\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" lightbox_only=\"true\" projects_per_page=\"4\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-13 23:56:51','2015-07-13 23:56:51','',2744,'http://punjabyouthclub.com/index.php/2015/07/13/2744-revision-v1/',0,'revision','',0),(3372,2,'2015-07-14 07:24:20','2015-07-14 07:24:20','','PYC_JASSI_CHACHA','','inherit','open','open','','pyc_jassi_chacha','','','2015-07-14 07:24:20','2015-07-14 07:24:20','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_JASSI_CHACHA.jpg',0,'attachment','image/jpeg',0),(3374,2,'2015-07-14 07:24:23','2015-07-14 07:24:23','','PYC_Team','','inherit','open','open','','pyc_team','','','2015-07-14 07:24:23','2015-07-14 07:24:23','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Team.jpg',0,'attachment','image/jpeg',0),(3375,2,'2015-07-14 07:26:31','2015-07-14 07:26:31','','Auto Draft','','publish','closed','closed','','auto-draft-13','','','2015-07-14 23:54:37','2015-07-14 23:54:37','',0,'http://punjabyouthclub.com/?post_type=nectar_slider&#038;p=3375',4,'nectar_slider','',0),(3377,2,'2015-07-14 07:29:07','2015-07-14 07:29:07','','Auto Draft','','publish','closed','closed','','auto-draft-17','','','2016-09-25 14:53:25','2016-09-25 14:53:25','',0,'http://punjabyouthclub.com/?post_type=nectar_slider&#038;p=3377',1,'nectar_slider','',0),(3378,2,'2015-07-14 07:28:02','2015-07-14 07:28:02','','PYC_Bhagwant_Mann','','inherit','open','open','','pyc_bhagwant_mann','','','2015-07-14 07:28:02','2015-07-14 07:28:02','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Bhagwant_Mann.jpg',0,'attachment','image/jpeg',0),(3379,2,'2015-07-14 07:40:20','2015-07-14 07:40:20','','Auto Draft','','publish','closed','closed','','auto-draft-18','','','2015-07-14 23:54:37','2015-07-14 23:54:37','',0,'http://punjabyouthclub.com/?post_type=nectar_slider&#038;p=3379',5,'nectar_slider','',0),(3380,2,'2015-07-14 07:37:51','2015-07-14 07:37:51','','PYC_Bhangra','','inherit','open','open','','pyc_bhangra','','','2015-07-14 07:37:51','2015-07-14 07:37:51','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Bhangra.jpg',0,'attachment','image/jpeg',0),(3381,2,'2015-07-14 07:47:33','2015-07-14 07:47:33','','Auto Draft','','publish','closed','closed','','auto-draft-19','','','2015-07-14 23:54:37','2015-07-14 23:54:37','',0,'http://punjabyouthclub.com/?post_type=nectar_slider&#038;p=3381',3,'nectar_slider','',0),(3382,2,'2015-07-14 07:46:44','2015-07-14 07:46:44','','PYC_Gurdas_Maan','','inherit','open','open','','pyc_gurdas_maan','','','2015-07-14 07:46:44','2015-07-14 07:46:44','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC_Gurdas_Maan.jpg',0,'attachment','image/jpeg',0),(3383,2,'2015-07-14 07:55:25','2015-07-14 07:55:25','','PYC-TEAM','','inherit','open','open','','pyc-team','','','2015-07-14 07:55:25','2015-07-14 07:55:25','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC-TEAM.jpg',0,'attachment','image/jpeg',0),(3384,2,'2015-07-14 07:57:05','2015-07-14 07:57:05','','Auto Draft','','publish','closed','closed','','auto-draft-20','','','2015-07-14 23:54:36','2015-07-14 23:54:36','',0,'http://punjabyouthclub.com/?post_type=nectar_slider&#038;p=3384',2,'nectar_slider','',0),(3385,2,'2015-07-14 08:02:50','2015-07-14 08:02:50','','PYC-logo-member','','inherit','open','open','','pyc-logo-member','','','2015-07-14 08:02:50','2015-07-14 08:02:50','',2692,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC-logo-member.png',0,'attachment','image/png',0),(3386,2,'2015-07-14 08:03:02','2015-07-14 08:03:02','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"5\"][team_member image_url=\"3385\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Balwinder Singh Brar\" job_position=\"President\" description=\"Year 2012-Present\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Parvinder Singh Mann\" job_position=\"President\" description=\"Year 2009-2012\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Navtej Singh Atwal\" job_position=\"President\" description=\"Year 2005-2009\r\nFounder Member of the Club\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"5\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Kashmir Singh Sohal\" job_position=\"President\" description=\"Year 2003-2005\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jagtar Singh Gill ( Dhudike)\" job_position=\"President\" description=\"Year 2001-2003\r\nFounder Member of Punjab Youth Club (HK)\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][/vc_row]','Roll of Honor','','inherit','open','open','','2692-revision-v1','','','2015-07-14 08:03:02','2015-07-14 08:03:02','',2692,'http://punjabyouthclub.com/index.php/2015/07/14/2692-revision-v1/',0,'revision','',0),(3387,2,'2015-07-14 08:09:09','2015-07-14 08:09:09','[vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"5\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Balwinder Singh Brar\" job_position=\"President\" description=\"Year 2012-Present\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Parvinder Singh Mann\" job_position=\"President\" description=\"Year 2009-2012\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Navtej Singh Atwal\" job_position=\"President\" description=\"Year 2005-2009\r\nFounder Member of the Club\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"5\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Kashmir Singh Sohal\" job_position=\"President\" description=\"Year 2003-2005\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jagtar Singh Gill ( Dhudike)\" job_position=\"President\" description=\"Year 2001-2003\r\nFounder Member of Punjab Youth Club (HK)\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][/vc_row]','Roll of Honor','','inherit','open','open','','2692-revision-v1','','','2015-07-14 08:09:09','2015-07-14 08:09:09','',2692,'http://punjabyouthclub.com/index.php/2015/07/14/2692-revision-v1/',0,'revision','',0),(3388,2,'2015-07-14 08:16:51','2015-07-14 08:16:51','','Chetna March 2006','','inherit','open','open','','chetna-march-2006','','','2015-07-14 08:16:51','2015-07-14 08:16:51','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Chetna-March-2006.jpg',0,'attachment','image/jpeg',0),(3389,2,'2015-07-14 08:16:57','2015-07-14 08:16:57','','Culture In Motion','','inherit','open','open','','culture-in-motion','','','2015-07-14 08:16:57','2015-07-14 08:16:57','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Culture-In-Motion.jpg',0,'attachment','image/jpeg',0),(3390,2,'2015-07-14 08:17:02','2015-07-14 08:17:02','','Mahek Punjab Di - 2002','','inherit','open','open','','mahek-punjab-di-2002','','','2015-07-14 08:17:02','2015-07-14 08:17:02','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Mahek-Punjab-Di-2002.jpg',0,'attachment','image/jpeg',0),(3391,2,'2015-07-14 08:17:08','2015-07-14 08:17:08','','Mahek Punjab Di 2001','','inherit','open','open','','mahek-punjab-di-2001','','','2015-07-14 08:17:08','2015-07-14 08:17:08','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Mahek-Punjab-Di-2001.jpg',0,'attachment','image/jpeg',0),(3392,2,'2015-07-14 08:17:12','2015-07-14 08:17:12','','Mahek Punjab Di 2002','','inherit','open','open','','mahek-punjab-di-2002-2','','','2015-07-14 08:17:12','2015-07-14 08:17:12','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Mahek-Punjab-Di-20021.jpg',0,'attachment','image/jpeg',0),(3393,2,'2015-07-14 08:17:20','2015-07-14 08:17:20','','Mahek Punjab Di 2003','','inherit','open','open','','mahek-punjab-di-2003','','','2015-07-14 08:17:20','2015-07-14 08:17:20','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Mahek-Punjab-Di-2003.jpg',0,'attachment','image/jpeg',0),(3394,2,'2015-07-14 08:17:26','2015-07-14 08:17:26','','Mahek Punjab Di 2007','','inherit','open','open','','mahek-punjab-di-2007','','','2015-07-14 08:17:26','2015-07-14 08:17:26','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Mahek-Punjab-Di-2007.jpg',0,'attachment','image/jpeg',0),(3395,2,'2015-07-14 08:17:28','2015-07-14 08:17:28','','Mahek Punjabi Di 2001','','inherit','open','open','','mahek-punjabi-di-2001','','','2015-07-14 08:17:28','2015-07-14 08:17:28','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Mahek-Punjabi-Di-2001.jpg',0,'attachment','image/jpeg',0),(3396,2,'2015-07-14 08:17:30','2015-07-14 08:17:30','','Mehak Punjab Di 2005','','inherit','open','open','','mehak-punjab-di-2005','','','2015-07-14 08:17:30','2015-07-14 08:17:30','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Mehak-Punjab-Di-2005.jpg',0,'attachment','image/jpeg',0),(3397,2,'2015-07-14 08:17:33','2015-07-14 08:17:33','','Video Tape Cover Mehak Punjab Di 2001','','inherit','open','open','','video-tape-cover-mehak-punjab-di-2001','','','2015-07-14 08:17:33','2015-07-14 08:17:33','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Video-Tape-Cover-Mehak-Punjab-Di-2001.jpg',0,'attachment','image/jpeg',0),(3398,2,'2015-07-14 08:24:30','2015-07-14 08:24:30','','kavi darbar cd copy','','inherit','open','open','','kavi-darbar-cd-copy-2','','','2015-07-14 08:24:30','2015-07-14 08:24:30','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/kavi-darbar-cd-copy1.jpg',0,'attachment','image/jpeg',0),(3399,2,'2015-07-14 08:29:17','2015-07-14 08:29:17','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3067,3066,3065,3064,3063\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"400x600\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3394,3389,3396,3393,3390,3392,3391,3395\" display_title_caption=\"true\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"400x600\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3388,3397,3398\" display_title_caption=\"true\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"600x500\"][/vc_column][/vc_row]','Activities','','inherit','open','open','','2697-revision-v1','','','2015-07-14 08:29:17','2015-07-14 08:29:17','',2697,'http://punjabyouthclub.com/index.php/2015/07/14/2697-revision-v1/',0,'revision','',0),(3400,2,'2015-07-14 08:38:52','2015-07-14 08:38:52','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3308,3307,3306,3305,3304,3303,3302,3301,3300,3299,3298,3296,3295,3293,3292,3291,3290,3289,3288,3287,3286,3285,3284,3283,3277,3278,3279,3280,3281,3282,3276\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"4\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"800\"][/vc_column][/vc_row]','Media News','','inherit','open','open','','2707-revision-v1','','','2015-07-14 08:38:52','2015-07-14 08:38:52','',2707,'http://punjabyouthclub.com/index.php/2015/07/14/2707-revision-v1/',0,'revision','',0),(3401,2,'2015-07-14 08:44:34','2015-07-14 08:44:34','','bhangra1','','inherit','open','open','','bhangra1','','','2015-07-14 09:33:56','2015-07-14 09:33:56','',3406,'http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra1.mpg',0,'attachment','video/mpeg',0),(3402,2,'2015-07-14 08:45:08','2015-07-14 08:45:08','','bhangra2','','inherit','open','open','','bhangra2','','','2015-07-14 09:33:56','2015-07-14 09:33:56','',3406,'http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra2.mpg',0,'attachment','video/mpeg',0),(3403,2,'2015-07-14 09:32:00','2015-07-14 09:32:00','','bhangra1','','inherit','open','open','','bhangra1-2','','','2015-07-14 09:33:56','2015-07-14 09:33:56','',3406,'http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra1.mp4',0,'attachment','video/mp4',0),(3404,2,'2015-07-14 09:32:05','2015-07-14 09:32:05','','bhangra2','','inherit','open','open','','bhangra2-2','','','2015-07-14 09:33:56','2015-07-14 09:33:56','',3406,'http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra2.mp4',0,'attachment','video/mp4',0),(3405,2,'2015-07-14 09:32:23','2015-07-14 09:32:23','','colour_in_harmony','','inherit','open','open','','colour_in_harmony','','','2015-07-14 09:33:56','2015-07-14 09:33:56','',3406,'http://punjabyouthclub.com/wp-content/uploads/2015/07/colour_in_harmony.mp4',0,'attachment','video/mp4',0),(3406,2,'2007-07-14 09:36:48','2007-07-14 09:36:48','Bhangra .........\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/colour_in_harmony.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\nBhangra .........\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra2.mp4\"][/video]\r\n\r\nBhangra .........\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra1.mp4\"][/video]','Bhangra Clips','','publish','open','open','','bhangra','','','2015-07-14 09:38:51','2015-07-14 09:38:51','',0,'http://punjabyouthclub.com/?p=3406',0,'post','',0),(3407,2,'2015-07-14 09:35:20','2015-07-14 09:35:20','[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/colour_in_harmony.mp4\"][/video]\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra2.mp4\"][/video]\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra1.mp4\"][/video]\r\n\r\n<a href=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra2.mpg\">bhangra2</a> <a href=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra1.mpg\">bhangra1</a>','Bhangra','','inherit','open','open','','3406-revision-v1','','','2015-07-14 09:35:20','2015-07-14 09:35:20','',3406,'http://punjabyouthclub.com/index.php/2015/07/14/3406-revision-v1/',0,'revision','',0),(3408,2,'2015-07-14 09:36:48','2015-07-14 09:36:48','[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/colour_in_harmony.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra2.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra1.mp4\"][/video]','Bhangra','','inherit','open','open','','3406-revision-v1','','','2015-07-14 09:36:48','2015-07-14 09:36:48','',3406,'http://punjabyouthclub.com/index.php/2015/07/14/3406-revision-v1/',0,'revision','',0),(3409,2,'2015-07-14 09:37:54','2015-07-14 09:37:54','[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/colour_in_harmony.mp4\"][/video]\n\n&nbsp;\n\n[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra2.mp4\"][/video]\n\n&nbsp;\n\n[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra1.mp4\"][/video]','Bhangra Clips','','inherit','open','open','','3406-autosave-v1','','','2015-07-14 09:37:54','2015-07-14 09:37:54','',3406,'http://punjabyouthclub.com/index.php/2015/07/14/3406-autosave-v1/',0,'revision','',0),(3410,2,'2015-07-14 09:38:05','2015-07-14 09:38:05','[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/colour_in_harmony.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra2.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra1.mp4\"][/video]','Bhangra Clips','','inherit','open','open','','3406-revision-v1','','','2015-07-14 09:38:05','2015-07-14 09:38:05','',3406,'http://punjabyouthclub.com/index.php/2015/07/14/3406-revision-v1/',0,'revision','',0),(3411,2,'2015-07-14 09:38:51','2015-07-14 09:38:51','Bhangra .........\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/colour_in_harmony.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\nBhangra .........\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra2.mp4\"][/video]\r\n\r\nBhangra .........\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/bhangra1.mp4\"][/video]','Bhangra Clips','','inherit','open','open','','3406-revision-v1','','','2015-07-14 09:38:51','2015-07-14 09:38:51','',3406,'http://punjabyouthclub.com/index.php/2015/07/14/3406-revision-v1/',0,'revision','',0),(3414,2,'2015-07-14 09:47:48','2015-07-14 09:47:48','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Roll of Honor \" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"5\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Balwinder Singh Brar\" job_position=\"President\" description=\"Year 2012-Present\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Parvinder Singh Mann\" job_position=\"President\" description=\"Year 2009-2012\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Navtej Singh Atwal\" job_position=\"President\" description=\"Year 2005-2009\r\nFounder Member of the Club\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\" delay=\"5\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Kashmir Singh Sohal\" job_position=\"President\" description=\"Year 2003-2005\r\nFounder Member of the Club\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jagtar Singh Gill ( Dhudike)\" job_position=\"President\" description=\"Year 2001-2003\r\nFounder Member of Punjab Youth Club (HK)\"][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"grow-in\" boxed=\"true\" centered_text=\"true\" column_padding=\"no-extra-padding\" background_color_opacity=\"1\"][team_member image_url=\"3325\" team_memeber_style=\"meta_below\" link_element=\"none\" color=\"Accent-Color\" name=\"Jasmel Singh Dhaliwal\" job_position=\"President\" description=\"Year 2000-2001\r\nFounder Member of the Club\"][/vc_column][/vc_row]','Roll of Honor','','inherit','open','open','','2692-revision-v1','','','2015-07-14 09:47:48','2015-07-14 09:47:48','',2692,'http://punjabyouthclub.com/index.php/2015/07/14/2692-revision-v1/',0,'revision','',0),(3415,2,'2015-07-14 09:52:52','2015-07-14 09:52:52','','MEMBERSHIP_Form','','inherit','open','open','','membership_form','','','2015-07-14 09:52:52','2015-07-14 09:52:52','',2690,'http://punjabyouthclub.com/wp-content/uploads/2015/07/MEMBERSHIP_Form.pdf',0,'attachment','application/pdf',0),(3417,2,'2015-08-26 09:26:31','2015-08-26 09:26:31','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Punjab Youth Club Membership Form\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\n<p align=\"center\">To DOWNLOAD membership form please click below.</p>\n\n<blockquote>\n<h1 align=\"center\"><a href=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC-MEMBERSHIP_Form.pdf\"><img class=\"alignnone size-medium wp-image-3566\" src=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/download-form1-300x103.jpg\" alt=\"download-form1\" width=\"300\" height=\"103\" /></a></h1>\n<p align=\"center\">Please note that you  will need<a href=\"http://www.adobe.com/products/acrobat/readstep2.html\" target=\"_blank\"> Adobe Acrobat Reader 6.0 or higher</a> to read and fill up the membership form.</p>\n</blockquote>\n<p align=\"center\"><a href=\"http://www.adobe.com/products/acrobat/readstep2.html\"><img src=\"http://punjabyouthclub.com/old_site/images/adobe.gif\" alt=\"\" width=\"150\" height=\"65\" border=\"0\" /></a></p>\n<p align=\"center\">.</p>\n<p align=\"center\">.</p>\n<p align=\"center\">.</p>\n<p align=\"center\">.</p>\n<p align=\"center\">.</p>\n[/vc_column_text][/vc_column][/vc_row]','Membership','','inherit','open','open','','2690-autosave-v1','','','2015-08-26 09:26:31','2015-08-26 09:26:31','',2690,'http://punjabyouthclub.com/index.php/2015/07/14/2690-autosave-v1/',0,'revision','',0),(3418,2,'2015-07-14 10:04:27','2015-07-14 10:04:27','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Punjab Youth Club Membership Form\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<p align=\"center\"></p>\r\n<p align=\"center\">To DOWNLOAD membership form please click below.</p>\r\n<p align=\"center\"><b><a href=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/MEMBERSHIP_Form.pdf\"><span style=\"font-size: large;\">Membership Form</span></a></b></p>\r\n<p align=\"center\">Please note that you  will need<a href=\"http://www.adobe.com/products/acrobat/readstep2.html\" target=\"_blank\"> Adobe Acrobat Reader 6.0 or higher</a> to read and fill up the membership form.</p>\r\n<p align=\"center\"><a href=\"http://www.adobe.com/products/acrobat/readstep2.html\"><img src=\"http://punjabyouthclub.com/old_site/images/adobe.gif\" alt=\"\" width=\"150\" height=\"65\" border=\"0\" /></a></p>\r\n[/vc_column_text][/vc_column][/vc_row]','Membership','','inherit','open','open','','2690-revision-v1','','','2015-07-14 10:04:27','2015-07-14 10:04:27','',2690,'http://punjabyouthclub.com/index.php/2015/07/14/2690-revision-v1/',0,'revision','',0),(3419,2,'2015-07-14 10:06:04','2015-07-14 10:06:04','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Punjab Youth Club Membership Form\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<p align=\"center\">To DOWNLOAD membership form please click below.</p>\r\n<p align=\"center\"><b><a href=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/MEMBERSHIP_Form.pdf\"><span style=\"font-size: large;\">Membership Form</span></a></b></p>\r\n<p align=\"center\">Please note that you  will need<a href=\"http://www.adobe.com/products/acrobat/readstep2.html\" target=\"_blank\"> Adobe Acrobat Reader 6.0 or higher</a> to read and fill up the membership form.</p>\r\n<p align=\"center\"><a href=\"http://www.adobe.com/products/acrobat/readstep2.html\"><img src=\"http://punjabyouthclub.com/old_site/images/adobe.gif\" alt=\"\" width=\"150\" height=\"65\" border=\"0\" /></a></p>\r\n[/vc_column_text][/vc_column][/vc_row]','Membership','','inherit','open','open','','2690-revision-v1','','','2015-07-14 10:06:04','2015-07-14 10:06:04','',2690,'http://punjabyouthclub.com/index.php/2015/07/14/2690-revision-v1/',0,'revision','',0),(3420,2,'2015-07-14 10:07:00','2015-07-14 10:07:00','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Punjab Youth Club Membership Form\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<p align=\"center\">To DOWNLOAD membership form please click below.</p>\r\n<p align=\"center\"><b><a href=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/MEMBERSHIP_Form.pdf\"><span style=\"font-size: large;\">Membership Form</span></a></b></p>\r\n<p align=\"center\">Please note that you  will need<a href=\"http://www.adobe.com/products/acrobat/readstep2.html\" target=\"_blank\"> Adobe Acrobat Reader 6.0 or higher</a> to read and fill up the membership form.</p>\r\n<p align=\"center\"><a href=\"http://www.adobe.com/products/acrobat/readstep2.html\"><img src=\"http://punjabyouthclub.com/old_site/images/adobe.gif\" alt=\"\" width=\"150\" height=\"65\" border=\"0\" /></a></p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Membership','','inherit','open','open','','2690-revision-v1','','','2015-07-14 10:07:00','2015-07-14 10:07:00','',2690,'http://punjabyouthclub.com/index.php/2015/07/14/2690-revision-v1/',0,'revision','',0),(3421,2,'2015-07-14 10:24:07','2015-07-14 10:24:07','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Contact Us\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][bar color=\"Accent-Color\" title=\"Almost reached\" percent=\"100\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\n\nI am text block. Click edit button to change this text.\n\n[/vc_column_text][/vc_column][/vc_row]','Contact Us','','inherit','open','open','','2709-autosave-v1','','','2015-07-14 10:24:07','2015-07-14 10:24:07','',2709,'http://punjabyouthclub.com/index.php/2015/07/14/2709-autosave-v1/',0,'revision','',0),(3422,2,'2015-07-14 10:24:44','2015-07-14 10:24:44','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Contact Us\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][bar color=\"Accent-Color\" title=\"Almost reached\" percent=\"100\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n<p style=\"text-align: center;\">Will update soon...</p>\r\n<p style=\"text-align: center;\">Please visit our Facebook Page</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"https://www.facebook.com/punjabyouthclub\">PunjabYouthClub</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]','Contact Us','','inherit','open','open','','2709-revision-v1','','','2015-07-14 10:24:44','2015-07-14 10:24:44','',2709,'http://punjabyouthclub.com/index.php/2015/07/14/2709-revision-v1/',0,'revision','',0),(3423,2,'2015-07-14 10:28:42','2015-07-14 10:28:42','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5000\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"3\" projects_per_page=\"4\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-14 10:28:42','2015-07-14 10:28:42','',2744,'http://punjabyouthclub.com/index.php/2015/07/14/2744-revision-v1/',0,'revision','',0),(3425,2,'2015-07-14 10:38:13','2015-07-14 10:38:13','','No Drugs','','inherit','open','open','','2986-autosave-v1','','','2015-07-14 10:38:13','2015-07-14 10:38:13','',2986,'http://punjabyouthclub.com/index.php/2015/07/14/2986-autosave-v1/',0,'revision','',0),(3426,2,'2015-07-14 10:40:53','2015-07-14 10:40:53','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5000\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"4\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-14 10:40:53','2015-07-14 10:40:53','',2744,'http://punjabyouthclub.com/index.php/2015/07/14/2744-revision-v1/',0,'revision','',0),(3427,2,'2015-07-14 13:55:58','2015-07-14 13:55:58','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"725\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5000\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-14 13:55:58','2015-07-14 13:55:58','',2744,'http://punjabyouthclub.com/index.php/2015/07/14/2744-revision-v1/',0,'revision','',0),(3429,2,'2015-07-14 14:48:24','2015-07-14 14:48:24','','favicon (6)','','inherit','open','open','','favicon-6','','','2015-07-14 14:48:24','2015-07-14 14:48:24','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/favicon-6.ico',0,'attachment','image/x-icon',0),(3430,2,'2015-07-14 16:27:02','2015-07-14 16:27:02','','Auto Draft','','publish','closed','closed','','auto-draft-21','','','2015-07-14 23:54:36','2015-07-14 23:54:36','',0,'http://punjabyouthclub.com/?post_type=nectar_slider&#038;p=3430',0,'nectar_slider','',0),(3431,2,'2015-07-14 16:25:20','2015-07-14 16:25:20','','PYV Banner_ LOGO','','inherit','open','open','','300-yrs-martyrdom','','','2015-07-14 16:25:34','2015-07-14 16:25:34','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/300-yrs-martyrdom.jpg',0,'attachment','image/jpeg',0),(3432,2,'2015-07-14 23:38:07','2015-07-14 23:38:07','','PYC Banner_Logo','','inherit','open','open','','banner_logo','','','2015-07-14 23:40:49','2015-07-14 23:40:49','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Banner_Logo.jpg',0,'attachment','image/jpeg',0),(3433,2,'2015-07-14 23:51:09','2015-07-14 23:51:09','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"700\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 1</h3>\r\nTo be Updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-14 23:51:09','2015-07-14 23:51:09','',2744,'http://punjabyouthclub.com/index.php/2015/07/14/2744-revision-v1/',0,'revision','',0),(3434,2,'2015-07-15 03:10:22','2015-07-15 03:10:22','','IMG_3117','','inherit','open','open','','img_3117-2','','','2015-07-15 03:10:22','2015-07-15 03:10:22','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_31171.jpg',0,'attachment','image/jpeg',0),(3435,2,'2015-07-15 03:10:39','2015-07-15 03:10:39','','IMG_3123','','inherit','open','open','','img_3123-2','','','2015-07-15 03:10:39','2015-07-15 03:10:39','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_31231.jpg',0,'attachment','image/jpeg',0),(3436,2,'2015-07-15 03:10:50','2015-07-15 03:10:50','','IMG_3124','','inherit','open','open','','img_3124','','','2015-07-15 03:10:50','2015-07-15 03:10:50','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3124.jpg',0,'attachment','image/jpeg',0),(3437,2,'2015-07-15 03:11:01','2015-07-15 03:11:01','','IMG_3125','','inherit','open','open','','img_3125-2','','','2015-07-15 03:11:01','2015-07-15 03:11:01','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_31251.jpg',0,'attachment','image/jpeg',0),(3438,2,'2015-07-15 03:11:12','2015-07-15 03:11:12','','IMG_3128','','inherit','open','open','','img_3128-2','','','2015-07-15 03:11:12','2015-07-15 03:11:12','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_31281.jpg',0,'attachment','image/jpeg',0),(3439,2,'2015-07-15 03:11:23','2015-07-15 03:11:23','','IMG_3130','','inherit','open','open','','img_3130','','','2015-07-15 03:11:23','2015-07-15 03:11:23','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3130.jpg',0,'attachment','image/jpeg',0),(3440,2,'2015-07-15 03:11:36','2015-07-15 03:11:36','','IMG_3133','','inherit','open','open','','img_3133-2','','','2015-07-15 03:11:36','2015-07-15 03:11:36','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_31331.jpg',0,'attachment','image/jpeg',0),(3441,2,'2015-07-15 03:11:46','2015-07-15 03:11:46','','IMG_3134','','inherit','open','open','','img_3134','','','2015-07-15 03:11:46','2015-07-15 03:11:46','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3134.jpg',0,'attachment','image/jpeg',0),(3442,2,'2015-07-15 03:11:58','2015-07-15 03:11:58','','IMG_3137','','inherit','open','open','','img_3137-2','','','2015-07-15 03:11:58','2015-07-15 03:11:58','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_31371.jpg',0,'attachment','image/jpeg',0),(3443,2,'2015-07-15 03:12:08','2015-07-15 03:12:08','','IMG_3142','','inherit','open','open','','img_3142','','','2015-07-15 03:12:08','2015-07-15 03:12:08','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3142.jpg',0,'attachment','image/jpeg',0),(3444,2,'2015-07-15 03:12:20','2015-07-15 03:12:20','','IMG_3144','','inherit','open','open','','img_3144-2','','','2015-07-15 03:12:20','2015-07-15 03:12:20','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_31441.jpg',0,'attachment','image/jpeg',0),(3445,2,'2015-07-15 03:12:33','2015-07-15 03:12:33','','IMG_3145','','inherit','open','open','','img_3145-2','','','2015-07-15 03:12:33','2015-07-15 03:12:33','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_31451.jpg',0,'attachment','image/jpeg',0),(3446,2,'2015-07-15 03:12:55','2015-07-15 03:12:55','','IMG_3146','','inherit','open','open','','img_3146','','','2015-07-15 03:12:55','2015-07-15 03:12:55','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3146.jpg',0,'attachment','image/jpeg',0),(3447,2,'2015-07-15 03:13:07','2015-07-15 03:13:07','','IMG_3147','','inherit','open','open','','img_3147-2','','','2015-07-15 03:13:07','2015-07-15 03:13:07','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_31471.jpg',0,'attachment','image/jpeg',0),(3448,2,'2015-07-15 03:13:18','2015-07-15 03:13:18','','IMG_3148','','inherit','open','open','','img_3148','','','2015-07-15 03:13:18','2015-07-15 03:13:18','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3148.jpg',0,'attachment','image/jpeg',0),(3449,2,'2015-07-15 03:13:28','2015-07-15 03:13:28','','IMG_3151','','inherit','open','open','','img_3151','','','2015-07-15 03:13:28','2015-07-15 03:13:28','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3151.jpg',0,'attachment','image/jpeg',0),(3450,2,'2015-07-15 03:13:40','2015-07-15 03:13:40','','IMG_3153','','inherit','open','open','','img_3153','','','2015-07-15 03:13:40','2015-07-15 03:13:40','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3153.jpg',0,'attachment','image/jpeg',0),(3451,2,'2015-07-15 03:13:56','2015-07-15 03:13:56','','IMG_3157','','inherit','open','open','','img_3157-2','','','2015-07-15 03:13:56','2015-07-15 03:13:56','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_31571.jpg',0,'attachment','image/jpeg',0),(3452,2,'2015-07-15 03:14:05','2015-07-15 03:14:05','','IMG_3161','','inherit','open','open','','img_3161-2','','','2015-07-15 03:14:05','2015-07-15 03:14:05','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_31611.jpg',0,'attachment','image/jpeg',0),(3453,2,'2015-07-15 03:14:17','2015-07-15 03:14:17','','IMG_3162','','inherit','open','open','','img_3162-2','','','2015-07-15 03:14:17','2015-07-15 03:14:17','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_31621.jpg',0,'attachment','image/jpeg',0),(3454,2,'2015-07-15 03:14:29','2015-07-15 03:14:29','','IMG_3164','','inherit','open','open','','img_3164','','','2015-07-15 03:14:29','2015-07-15 03:14:29','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3164.jpg',0,'attachment','image/jpeg',0),(3455,2,'2015-07-15 03:14:40','2015-07-15 03:14:40','','IMG_3166','','inherit','open','open','','img_3166-2','','','2015-07-15 03:14:40','2015-07-15 03:14:40','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_31661.jpg',0,'attachment','image/jpeg',0),(3456,2,'2015-07-15 03:14:50','2015-07-15 03:14:50','','IMG_3169','','inherit','open','open','','img_3169','','','2015-07-15 03:14:50','2015-07-15 03:14:50','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3169.jpg',0,'attachment','image/jpeg',0),(3457,2,'2015-07-15 03:15:02','2015-07-15 03:15:02','','IMG_3172','','inherit','open','open','','img_3172','','','2015-07-15 03:15:02','2015-07-15 03:15:02','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3172.jpg',0,'attachment','image/jpeg',0),(3458,2,'2015-07-15 03:15:14','2015-07-15 03:15:14','','IMG_3174','','inherit','open','open','','img_3174','','','2015-07-15 03:15:14','2015-07-15 03:15:14','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_3174.jpg',0,'attachment','image/jpeg',0),(3459,2,'2015-07-15 03:15:21','2015-07-15 03:15:21','','IMG_3183','','inherit','open','open','','img_3183-2','','','2015-07-15 03:15:21','2015-07-15 03:15:21','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/IMG_31831.jpg',0,'attachment','image/jpeg',0),(3460,2,'2015-07-15 03:15:32','2015-07-15 03:15:32','','mann004','','inherit','open','open','','mann004-2','','','2015-07-15 03:15:32','2015-07-15 03:15:32','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann0041.jpg',0,'attachment','image/jpeg',0),(3461,2,'2015-07-15 03:15:40','2015-07-15 03:15:40','','mann005','','inherit','open','open','','mann005','','','2015-07-15 03:15:40','2015-07-15 03:15:40','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann005.jpg',0,'attachment','image/jpeg',0),(3462,2,'2015-07-15 03:15:47','2015-07-15 03:15:47','','mann006','','inherit','open','open','','mann006-2','','','2015-07-15 03:15:47','2015-07-15 03:15:47','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann0061.jpg',0,'attachment','image/jpeg',0),(3463,2,'2015-07-15 03:15:55','2015-07-15 03:15:55','','mann009','','inherit','open','open','','mann009-2','','','2015-07-15 03:15:55','2015-07-15 03:15:55','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann0091.jpg',0,'attachment','image/jpeg',0),(3464,2,'2015-07-15 03:16:04','2015-07-15 03:16:04','','mann011','','inherit','open','open','','mann011-2','','','2015-07-15 03:16:04','2015-07-15 03:16:04','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann0111.jpg',0,'attachment','image/jpeg',0),(3465,2,'2015-07-15 03:16:14','2015-07-15 03:16:14','','mann013','','inherit','open','open','','mann013-2','','','2015-07-15 03:16:14','2015-07-15 03:16:14','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann0131.jpg',0,'attachment','image/jpeg',0),(3466,2,'2015-07-15 03:16:25','2015-07-15 03:16:25','','mann017','','inherit','open','open','','mann017','','','2015-07-15 03:16:25','2015-07-15 03:16:25','',1851,'http://punjabyouthclub.com/wp-content/uploads/2014/03/mann017.jpg',0,'attachment','image/jpeg',0),(3467,2,'2015-07-15 03:30:39','2015-07-15 03:30:39','[vc_row][vc_column width=\"1/1\"][social_buttons full_width_icons=\"true\" facebook=\"true\" twitter=\"true\" google_plus=\"true\" linkedin=\"true\" pinterest=\"true\"][/vc_column][/vc_row][vc_row type=\"in_container\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_portfolio enable_sortable=\"true\" horizontal_filters=\"true\" project_style=\"4\" category=\"bhangra,dastar_mukabla,kavi-barbar,mahek-punjab-di,no_drugs\" layout=\"3\" starting_category=\"default\" pagination_type=\"default\"][/vc_column][/vc_row]','Photo Gallery','','inherit','open','open','','743-revision-v1','','','2015-07-15 03:30:39','2015-07-15 03:30:39','',743,'http://punjabyouthclub.com/index.php/2015/07/15/743-revision-v1/',0,'revision','',0),(3468,2,'2015-07-15 03:44:13','2015-07-15 03:44:13','','Jassi\'s show 137','','inherit','open','open','','jassis-show-137','','','2015-07-15 03:44:13','2015-07-15 03:44:13','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Jassis-show-137.jpg',0,'attachment','image/jpeg',0),(3469,2,'2015-07-15 03:44:14','2015-07-15 03:44:14','','Jassi\'s show 138','','inherit','open','open','','jassis-show-138','','','2015-07-15 03:44:14','2015-07-15 03:44:14','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Jassis-show-138.jpg',0,'attachment','image/jpeg',0),(3470,2,'2015-07-15 03:44:16','2015-07-15 03:44:16','','Jassi\'s show 144','','inherit','open','open','','jassis-show-144','','','2015-07-15 03:44:16','2015-07-15 03:44:16','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Jassis-show-144.jpg',0,'attachment','image/jpeg',0),(3471,2,'2015-07-11 03:46:43','2015-07-11 03:46:43','','Mahek Punjab Di 2005','','publish','open','open','','mahek-punjab-di-2005','','','2015-07-22 00:09:55','2015-07-22 00:09:55','',0,'http://punjabyouthclub.com/?post_type=portfolio&#038;p=3471',0,'portfolio','',0),(3472,2,'2015-07-15 03:46:43','2015-07-15 03:46:43','','Mahek Punjab Di 2005','','inherit','open','open','','3471-revision-v1','','','2015-07-15 03:46:43','2015-07-15 03:46:43','',3471,'http://punjabyouthclub.com/index.php/2015/07/15/3471-revision-v1/',0,'revision','',0),(3473,2,'2015-07-10 04:16:34','2015-07-10 04:16:34','','Mahek Punjab Di 2003','','publish','open','open','','mahek-punjab-di-2003','','','2015-07-22 00:09:13','2015-07-22 00:09:13','',0,'http://punjabyouthclub.com/?post_type=portfolio&#038;p=3473',0,'portfolio','',0),(3474,2,'2015-07-15 04:16:34','2015-07-15 04:16:34','','Mahek Punjab Di 2003','','inherit','open','open','','3473-revision-v1','','','2015-07-15 04:16:34','2015-07-15 04:16:34','',3473,'http://punjabyouthclub.com/index.php/2015/07/15/3473-revision-v1/',0,'revision','',0),(3477,2,'2015-07-15 04:17:42','2015-07-15 04:17:42','','Mahek Punjab Di 2002','','publish','open','open','','mahek-punjab-di-2002','','','2015-07-15 04:20:28','2015-07-15 04:20:28','',0,'http://punjabyouthclub.com/?post_type=portfolio&#038;p=3477',0,'portfolio','',0),(3478,2,'2015-07-15 04:17:42','2015-07-15 04:17:42','','Mahek Punjab Di 2002','','inherit','open','open','','3477-revision-v1','','','2015-07-15 04:17:42','2015-07-15 04:17:42','',3477,'http://punjabyouthclub.com/index.php/2015/07/15/3477-revision-v1/',0,'revision','',0),(3479,2,'2015-07-14 04:18:05','2015-07-14 04:18:05','','Mahek Punjab Di 2001','','publish','open','open','','mahek-punjab-di-2001','','','2015-07-22 00:07:33','2015-07-22 00:07:33','',0,'http://punjabyouthclub.com/?post_type=portfolio&#038;p=3479',0,'portfolio','',0),(3480,2,'2015-07-15 04:18:05','2015-07-15 04:18:05','','Mahek Punjab Di 2001','','inherit','open','open','','3479-revision-v1','','','2015-07-15 04:18:05','2015-07-15 04:18:05','',3479,'http://punjabyouthclub.com/index.php/2015/07/15/3479-revision-v1/',0,'revision','',0),(3481,2,'2015-07-15 04:22:27','2015-07-15 04:22:27','','pyc_mpd_03','','inherit','open','open','','pyc_mpd_03','','','2015-07-15 04:22:27','2015-07-15 04:22:27','',3473,'http://punjabyouthclub.com/wp-content/uploads/2015/07/pyc_mpd_03.jpg',0,'attachment','image/jpeg',0),(3482,2,'2015-07-15 04:35:05','2015-07-15 04:35:05','&nbsp;\r\n\r\n&nbsp;','Mahek Punjab Di 2007','','inherit','open','open','','1851-autosave-v1','','','2015-07-15 04:35:05','2015-07-15 04:35:05','',1851,'http://punjabyouthclub.com/index.php/2015/07/15/1851-autosave-v1/',0,'revision','',0),(3483,2,'2015-07-15 04:43:15','2015-07-15 04:43:15','','Mahek Punjab Di 2007','','publish','open','open','','mahek-punjab-di-2007','','','2015-07-15 04:47:03','2015-07-15 04:47:03','',0,'http://punjabyouthclub.com/?post_type=portfolio&#038;p=3483',0,'portfolio','',0),(3484,2,'2015-07-15 04:43:15','2015-07-15 04:43:15','','Mahek Punjab Di 2007','','inherit','open','open','','3483-revision-v1','','','2015-07-15 04:43:15','2015-07-15 04:43:15','',3483,'http://punjabyouthclub.com/index.php/2015/07/15/3483-revision-v1/',0,'revision','',0),(3485,2,'2015-07-19 12:30:04','2015-07-19 12:30:04','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"700\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"See-Through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h4>President\r\nHong Kong Hockey Association</h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-19 12:30:04','2015-07-19 12:30:04','',2744,'http://punjabyouthclub.com/index.php/2015/07/19/2744-revision-v1/',0,'revision','',0),(3486,2,'2015-07-19 12:36:36','2015-07-19 12:36:36','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"700\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"See-Through\" size=\"medium\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h4>President\r\nHong Kong Hockey Association</h4>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-19 12:36:36','2015-07-19 12:36:36','',2744,'http://punjabyouthclub.com/index.php/2015/07/19/2744-revision-v1/',0,'revision','',0),(3487,2,'2015-07-19 12:50:01','2015-07-19 12:50:01','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"700\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h5>President\r\nHong Kong Hockey Association</h5>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-19 12:50:01','2015-07-19 12:50:01','',2744,'http://punjabyouthclub.com/index.php/2015/07/19/2744-revision-v1/',0,'revision','',0),(3488,2,'2015-07-19 12:52:18','2015-07-19 12:52:18','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" slider_height=\"700\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"250\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-19 12:52:18','2015-07-19 12:52:18','',2744,'http://punjabyouthclub.com/index.php/2015/07/19/2744-revision-v1/',0,'revision','',0),(3489,2,'2015-07-20 07:40:01','2015-07-20 07:40:01','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" min_slider_height=\"200\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 07:40:01','2015-07-20 07:40:01','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3490,2,'2015-07-20 07:41:23','2015-07-20 07:41:23','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 07:41:23','2015-07-20 07:41:23','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3491,2,'2015-07-20 07:45:36','2015-07-20 07:45:36','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"100\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 07:45:36','2015-07-20 07:45:36','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3492,2,'2015-07-20 07:49:06','2015-07-20 07:49:06','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"150\" fullscreen=\"true\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 07:49:06','2015-07-20 07:49:06','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3493,2,'2015-07-20 07:49:42','2015-07-20 07:49:42','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"150\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 07:49:42','2015-07-20 07:49:42','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3494,2,'2015-07-20 07:50:59','2015-07-20 07:50:59','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 07:50:59','2015-07-20 07:50:59','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3495,2,'2015-07-20 07:51:53','2015-07-20 07:51:53','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"150\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 07:51:53','2015-07-20 07:51:53','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3496,2,'2015-07-20 07:52:16','2015-07-20 07:52:16','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-bucket\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 07:52:16','2015-07-20 07:52:16','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3497,2,'2015-07-20 07:53:35','2015-07-20 07:53:35','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-lab\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"steadysets-icon-atom\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 07:53:35','2015-07-20 07:53:35','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3498,2,'2015-07-20 07:56:05','2015-07-20 07:56:05','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Well wisher\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"Be the first one to write something about Punjab Youth Club \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 07:56:05','2015-07-20 07:56:05','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3499,2,'2015-07-20 07:57:17','2015-07-20 07:57:17','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming Tournament on 1st October \"Komagata Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Well wisher\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 07:57:17','2015-07-20 07:57:17','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3500,2,'2015-07-20 07:59:02','2015-07-20 07:59:02','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nUpcoming\r\n<h4>1st October \"Komagata Maru Memorial Youth Hockey Tournament \"</h4>\r\n[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Well wisher\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 07:59:02','2015-07-20 07:59:02','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3501,2,'2015-07-20 07:59:56','2015-07-20 07:59:56','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n\r\nFirst show was \" Mahek Punjab di \" in 2002 with renowned Singer Durga Rangila.[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\nUpcoming\r\n<h6>1st October \"Komagata Maru Memorial Youth Hockey Tournament \"</h6>\r\n[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Well wisher\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 07:59:56','2015-07-20 07:59:56','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3502,2,'2015-07-20 08:07:21','2015-07-20 08:07:21','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n	<li>Mahek Punjab Di 2003 - Manmohan Waris &amp; Kamal Heer</li>\r\n	<li>Mahek Punjab Di 2003 - Manmohan Waris &amp; Kamal Heer</li>\r\n	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\nUpcoming 1st October \"Komagat Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Well wisher\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 2</h3>\r\nTo be Updated\r\n\r\n[button color=\"see-through\" size=\"large\" text=\"Mr. Singh \"  image=\"steadysets-icon-diamond\" ][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 08:07:21','2015-07-20 08:07:21','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3503,2,'2015-07-20 08:19:24','2015-07-20 08:19:24','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n	<li>Mahek Punjab Di 2003 - Manmohan Waris &amp; Kamal Heer</li>\r\n	<li>Mahek Punjab Di 2005 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\nUpcoming 1st October \"Komagat Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Well wisher\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 08:19:24','2015-07-20 08:19:24','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3504,2,'2015-07-20 08:20:50','2015-07-20 08:20:50','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n	<li>Mahek Punjab Di 2003 - Manmohan Waris &amp; Kamal Heer</li>\r\n	<li>Mahek Punjab Di 2005 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\nUpcoming 1st October \"Komagat Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"3\" pagination_type=\"default\"][vc_row_inner][vc_column_inner width=\"1/1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Well wisher\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 08:20:50','2015-07-20 08:20:50','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3505,2,'2015-07-20 09:09:11','2015-07-20 09:09:11','','15th Anni Dinner-Web Banner','','inherit','open','open','','15th-anni-dinner-web-banner','','','2015-07-20 09:09:11','2015-07-20 09:09:11','',2744,'http://punjabyouthclub.com/wp-content/uploads/2013/06/15th-Anni-Dinner-Web-Banner.jpg',0,'attachment','image/jpeg',0),(3506,2,'2015-07-20 09:32:03','2015-07-20 09:32:03','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"center center\" bg_repeat=\"no-repeat\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][image_with_animation image_url=\"3505\" alignment=\"center\" animation=\"Flip In\" img_link_large=\"yes\" img_link_target=\"_self\" delay=\"500\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\r\n	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\nUpcoming 1st October \"Komagat Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Well wisher\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 09:32:03','2015-07-20 09:32:03','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3507,2,'2015-07-20 09:41:08','2015-07-20 09:41:08','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"center center\" bg_repeat=\"no-repeat\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][image_with_animation image_url=\"3505\" alignment=\"center\" animation=\"Flip In\" img_link_large=\"yes\" img_link_target=\"_self\" delay=\"500\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\r\n	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\nUpcoming 1st October \"Komagat Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club who started Bhangra in Hong Kong in year 2000 at 300th Vaisakhi celebrations. Bhangra credit goes to Mr. Bhupinder Pal Singh Mangat.\r\n\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Well wisher\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial 3</h3>\r\nTo be updated\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr. Singh\" image=\"steadysets-icon-diamond\"][/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-07-20 09:41:08','2015-07-20 09:41:08','',2744,'http://punjabyouthclub.com/index.php/2015/07/20/2744-revision-v1/',0,'revision','',0),(3508,2,'2015-07-14 23:46:07','2015-07-14 23:46:07','','Souvenir Mahek Punjab Di 2005','','publish','open','open','','souvenir-2005','','','2015-07-22 00:05:11','2015-07-22 00:05:11','',0,'http://punjabyouthclub.com/?post_type=portfolio&#038;p=3508',0,'portfolio','',0),(3509,2,'2015-07-21 23:42:38','2015-07-21 23:42:38','','1_cover_page','','inherit','open','open','','1_cover_page','','','2015-07-21 23:42:38','2015-07-21 23:42:38','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/1_cover_page.jpg',0,'attachment','image/jpeg',0),(3510,2,'2015-07-21 23:42:41','2015-07-21 23:42:41','','2--punjabi','','inherit','open','open','','2-punjabi','','','2015-07-21 23:42:41','2015-07-21 23:42:41','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/2-punjabi.jpg',0,'attachment','image/jpeg',0),(3511,2,'2015-07-21 23:42:43','2015-07-21 23:42:43','','3-message_from_CG_India','','inherit','open','open','','3-message_from_cg_india','','','2015-07-21 23:42:43','2015-07-21 23:42:43','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/3-message_from_CG_India.jpg',0,'attachment','image/jpeg',0),(3512,2,'2015-07-21 23:42:45','2015-07-21 23:42:45','','4--message_Sikh_temple','','inherit','open','open','','4-message_sikh_temple','','','2015-07-21 23:42:45','2015-07-21 23:42:45','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/4-message_Sikh_temple.jpg',0,'attachment','image/jpeg',0),(3513,2,'2015-07-21 23:42:47','2015-07-21 23:42:47','','5--message_pyc_president','','inherit','open','open','','5-message_pyc_president','','','2015-07-21 23:42:47','2015-07-21 23:42:47','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/5-message_pyc_president.jpg',0,'attachment','image/jpeg',0),(3514,2,'2015-07-21 23:42:49','2015-07-21 23:42:49','','6--IRC_MESSAGE','','inherit','open','open','','6-irc_message','','','2015-07-21 23:42:49','2015-07-21 23:42:49','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/6-IRC_MESSAGE.jpg',0,'attachment','image/jpeg',0),(3515,2,'2015-07-21 23:42:50','2015-07-21 23:42:50','','7--Nav_Bharat_Message','','inherit','open','open','','7-nav_bharat_message','','','2015-07-21 23:42:50','2015-07-21 23:42:50','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/7-Nav_Bharat_Message.jpg',0,'attachment','image/jpeg',0),(3516,2,'2015-07-21 23:42:52','2015-07-21 23:42:52','','8--message_Mr_Ramoowalia','','inherit','open','open','','8-message_mr_ramoowalia','','','2015-07-21 23:42:52','2015-07-21 23:42:52','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/8-message_Mr_Ramoowalia.jpg',0,'attachment','image/jpeg',0),(3517,2,'2015-07-21 23:42:53','2015-07-21 23:42:53','','9--message_Ajit','','inherit','open','open','','9-message_ajit','','','2015-07-21 23:42:53','2015-07-21 23:42:53','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/9-message_Ajit.jpg',0,'attachment','image/jpeg',0),(3518,2,'2015-07-21 23:42:55','2015-07-21 23:42:55','','10--Messege_HBZ_dhillon','','inherit','open','open','','10-messege_hbz_dhillon','','','2015-07-21 23:42:55','2015-07-21 23:42:55','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/10-Messege_HBZ_dhillon.jpg',0,'attachment','image/jpeg',0),(3519,2,'2015-07-21 23:42:56','2015-07-21 23:42:56','','11--Visakhi_1_Mr_Batra','','inherit','open','open','','11-visakhi_1_mr_batra','','','2015-07-21 23:42:56','2015-07-21 23:42:56','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/11-Visakhi_1_Mr_Batra.jpg',0,'attachment','image/jpeg',0),(3520,2,'2015-07-21 23:43:00','2015-07-21 23:43:00','','12--Visakhi_2_Mr_Batra','','inherit','open','open','','12-visakhi_2_mr_batra','','','2015-07-21 23:43:00','2015-07-21 23:43:00','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/12-Visakhi_2_Mr_Batra.jpg',0,'attachment','image/jpeg',0),(3521,2,'2015-07-21 23:43:02','2015-07-21 23:43:02','','13--sharnjit_1','','inherit','open','open','','13-sharnjit_1','','','2015-07-21 23:43:02','2015-07-21 23:43:02','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/13-sharnjit_1.jpg',0,'attachment','image/jpeg',0),(3522,2,'2015-07-21 23:43:04','2015-07-21 23:43:04','','13--sharnjit_2','','inherit','open','open','','13-sharnjit_2','','','2015-07-21 23:43:04','2015-07-21 23:43:04','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/13-sharnjit_2.jpg',0,'attachment','image/jpeg',0),(3523,2,'2015-07-21 23:43:06','2015-07-21 23:43:06','','13--Sikh_n_civil_Services','','inherit','open','open','','13-sikh_n_civil_services','','','2015-07-21 23:43:06','2015-07-21 23:43:06','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/13-Sikh_n_civil_Services.jpg',0,'attachment','image/jpeg',0),(3524,2,'2015-07-21 23:43:08','2015-07-21 23:43:08','','14--Sikh_n_civil_Services_eng','','inherit','open','open','','14-sikh_n_civil_services_eng','','','2015-07-21 23:43:08','2015-07-21 23:43:08','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/14-Sikh_n_civil_Services_eng.jpg',0,'attachment','image/jpeg',0),(3525,2,'2015-07-21 23:43:09','2015-07-21 23:43:09','','15--media_1','','inherit','open','open','','15-media_1','','','2015-07-21 23:43:09','2015-07-21 23:43:09','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/15-media_1.jpg',0,'attachment','image/jpeg',0),(3526,2,'2015-07-21 23:43:11','2015-07-21 23:43:11','','16--media_2','','inherit','open','open','','16-media_2','','','2015-07-21 23:43:11','2015-07-21 23:43:11','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/16-media_2.jpg',0,'attachment','image/jpeg',0),(3527,2,'2015-07-21 23:43:13','2015-07-21 23:43:13','','17--media_3','','inherit','open','open','','17-media_3','','','2015-07-21 23:43:13','2015-07-21 23:43:13','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/17-media_3.jpg',0,'attachment','image/jpeg',0),(3528,2,'2015-07-21 23:43:15','2015-07-21 23:43:15','','18--media_4','','inherit','open','open','','18-media_4','','','2015-07-21 23:43:15','2015-07-21 23:43:15','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/18-media_4.jpg',0,'attachment','image/jpeg',0),(3529,2,'2015-07-21 23:43:16','2015-07-21 23:43:16','','19--PYC_Commitee_03-04','','inherit','open','open','','19-pyc_commitee_03-04','','','2015-07-21 23:43:16','2015-07-21 23:43:16','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/19-PYC_Commitee_03-04.jpg',0,'attachment','image/jpeg',0),(3530,2,'2015-07-21 23:43:18','2015-07-21 23:43:18','','20--PYC Commitee_ present','','inherit','open','open','','20-pyc-commitee_-present','','','2015-07-21 23:43:18','2015-07-21 23:43:18','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/20-PYC-Commitee_-present.jpg',0,'attachment','image/jpeg',0),(3531,2,'2015-07-21 23:43:19','2015-07-21 23:43:19','','21_DC-2001','','inherit','open','open','','21_dc-2001','','','2015-07-21 23:43:19','2015-07-21 23:43:19','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/21_DC-2001.jpg',0,'attachment','image/jpeg',0),(3532,2,'2015-07-21 23:43:21','2015-07-21 23:43:21','','21--DC_2002','','inherit','open','open','','21-dc_2002','','','2015-07-21 23:43:21','2015-07-21 23:43:21','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/21-DC_2002.jpg',0,'attachment','image/jpeg',0),(3533,2,'2015-07-21 23:43:24','2015-07-21 23:43:24','','21--mpd_2001','','inherit','open','open','','21-mpd_2001','','','2015-07-21 23:43:24','2015-07-21 23:43:24','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/21-mpd_2001.jpg',0,'attachment','image/jpeg',0),(3534,2,'2015-07-21 23:43:25','2015-07-21 23:43:25','','22--mpd_2001-2','','inherit','open','open','','22-mpd_2001-2','','','2015-07-21 23:43:25','2015-07-21 23:43:25','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/22-mpd_2001-2.jpg',0,'attachment','image/jpeg',0),(3535,2,'2015-07-21 23:43:27','2015-07-21 23:43:27','','23--mpd_2002','','inherit','open','open','','23-mpd_2002','','','2015-07-21 23:43:27','2015-07-21 23:43:27','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/23-mpd_2002.jpg',0,'attachment','image/jpeg',0),(3536,2,'2015-07-21 23:43:29','2015-07-21 23:43:29','','24--mpd_2002-2','','inherit','open','open','','24-mpd_2002-2','','','2015-07-21 23:43:29','2015-07-21 23:43:29','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/24-mpd_2002-2.jpg',0,'attachment','image/jpeg',0),(3537,2,'2015-07-21 23:43:31','2015-07-21 23:43:31','','25_mpd_2003','','inherit','open','open','','25_mpd_2003','','','2015-07-21 23:43:31','2015-07-21 23:43:31','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/25_mpd_2003.jpg',0,'attachment','image/jpeg',0),(3538,2,'2015-07-21 23:43:33','2015-07-21 23:43:33','','26_mpd_2003-2','','inherit','open','open','','26_mpd_2003-2','','','2015-07-21 23:43:33','2015-07-21 23:43:33','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/26_mpd_2003-2.jpg',0,'attachment','image/jpeg',0),(3539,2,'2015-07-21 23:43:35','2015-07-21 23:43:35','','27--gurdas_maan','','inherit','open','open','','27-gurdas_maan','','','2015-07-21 23:43:35','2015-07-21 23:43:35','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/27-gurdas_maan.jpg',0,'attachment','image/jpeg',0),(3540,2,'2015-07-21 23:43:37','2015-07-21 23:43:37','','28--jasvir_message','','inherit','open','open','','28-jasvir_message','','','2015-07-21 23:43:37','2015-07-21 23:43:37','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/28-jasvir_message.jpg',0,'attachment','image/jpeg',0),(3541,2,'2015-07-21 23:43:39','2015-07-21 23:43:39','','29_raja_dhillon_article','','inherit','open','open','','29_raja_dhillon_article','','','2015-07-21 23:43:39','2015-07-21 23:43:39','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/29_raja_dhillon_article.jpg',0,'attachment','image/jpeg',0),(3542,2,'2015-07-21 23:43:41','2015-07-21 23:43:41','','30--Jassi_article','','inherit','open','open','','30-jassi_article','','','2015-07-21 23:43:41','2015-07-21 23:43:41','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/30-Jassi_article.jpg',0,'attachment','image/jpeg',0),(3543,2,'2015-07-21 23:43:43','2015-07-21 23:43:43','','31--yaar_Punjabi','','inherit','open','open','','31-yaar_punjabi','','','2015-07-21 23:43:43','2015-07-21 23:43:43','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/31-yaar_Punjabi.jpg',0,'attachment','image/jpeg',0),(3544,2,'2015-07-21 23:43:45','2015-07-21 23:43:45','','33_Bhangra_Team','','inherit','open','open','','33_bhangra_team','','','2015-07-21 23:43:45','2015-07-21 23:43:45','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/33_Bhangra_Team.jpg',0,'attachment','image/jpeg',0),(3545,2,'2015-07-21 23:43:46','2015-07-21 23:43:46','','34--sports_teams copy','','inherit','open','open','','34-sports_teams-copy','','','2015-07-21 23:43:46','2015-07-21 23:43:46','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/34-sports_teams-copy.jpg',0,'attachment','image/jpeg',0),(3546,2,'2015-07-21 23:43:49','2015-07-21 23:43:49','','35_DANCES_OF_PUNJAB','','inherit','open','open','','35_dances_of_punjab','','','2015-07-21 23:43:49','2015-07-21 23:43:49','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/35_DANCES_OF_PUNJAB.jpg',0,'attachment','image/jpeg',0),(3547,2,'2015-07-21 23:43:51','2015-07-21 23:43:51','','35_founder_members','','inherit','open','open','','35_founder_members','','','2015-07-21 23:43:51','2015-07-21 23:43:51','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/35_founder_members.jpg',0,'attachment','image/jpeg',0),(3548,2,'2015-07-21 23:43:53','2015-07-21 23:43:53','','36_our_goals','','inherit','open','open','','36_our_goals','','','2015-07-21 23:43:53','2015-07-21 23:43:53','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/36_our_goals.jpg',0,'attachment','image/jpeg',0),(3549,2,'2015-07-21 23:43:55','2015-07-21 23:43:55','','37_special_thanks','','inherit','open','open','','37_special_thanks','','','2015-07-21 23:43:55','2015-07-21 23:43:55','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/37_special_thanks.jpg',0,'attachment','image/jpeg',0),(3550,2,'2015-07-21 23:43:57','2015-07-21 23:43:57','','38_thanks _to_sponsors','','inherit','open','open','','38_thanks-_to_sponsors','','','2015-07-21 23:43:57','2015-07-21 23:43:57','',3508,'http://punjabyouthclub.com/wp-content/uploads/2015/07/38_thanks-_to_sponsors.jpg',0,'attachment','image/jpeg',0),(3551,2,'2015-07-21 23:46:07','2015-07-21 23:46:07','','Souvenir 2005','','inherit','open','open','','3508-revision-v1','','','2015-07-21 23:46:07','2015-07-21 23:46:07','',3508,'http://punjabyouthclub.com/index.php/2015/07/21/3508-revision-v1/',0,'revision','',0),(3553,2,'2015-07-21 23:53:06','2015-07-21 23:53:06','','Souvenir Mahek Punjab Di 2005','','inherit','open','open','','3508-revision-v1','','','2015-07-21 23:53:06','2015-07-21 23:53:06','',3508,'http://punjabyouthclub.com/index.php/2015/07/21/3508-revision-v1/',0,'revision','',0),(3554,2,'2015-08-05 23:35:07','2015-08-05 23:35:07','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"center center\" bg_repeat=\"no-repeat\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][image_with_animation image_url=\"3505\" alignment=\"center\" animation=\"Flip In\" img_link_large=\"yes\" img_link_target=\"_self\" delay=\"500\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\r\n	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\nUpcoming 1st October \"Komagat Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club who started Bhangra in Hong Kong in year 2000 at 300th Vaisakhi celebrations. Bhangra credit goes to Mr. Bhupinder Pal Singh Mangat.\r\n\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Well wisher\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial</h3>\r\nIt gives me great pleasure to join the 15th Anniversary celebrations of Punjab Youth Club (HK). As you know, Punjabi culture is one of the richest cultures of the world. During the last century, a lot of Punjabis settled overseas but the beats of Bhangra, steps of Gidda, Punjabi poetry and festivals, all these aspects of their rich culture were missing, far from their homeland. During the last 15 years the Punjab Youth Club has filled this vacuum and has never left any stone unturned in promoting the Punjabi culture, sports and religious activities in Hong Kong.\r\nI believe Punjab Youth Club would continue to serve the Punjabi community in Hong Kong in the years to come and I wish Punjab Youth Club every success in the future.\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr.Gurdev Singh Chahal \'Galib\' \" image=\"steadysets-icon-diamond\"]\r\n<h6>Chief Officer\r\nCorrectional Services, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-08-05 23:35:07','2015-08-05 23:35:07','',2744,'http://punjabyouthclub.com/index.php/2015/08/05/2744-revision-v1/',0,'revision','',0),(3555,2,'2015-08-05 23:39:10','2015-08-05 23:39:10','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"center center\" bg_repeat=\"no-repeat\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][image_with_animation image_url=\"3505\" alignment=\"center\" animation=\"Flip In\" img_link_large=\"yes\" img_link_target=\"_self\" delay=\"500\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\r\n	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\nUpcoming 1st October \"Komagat Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club who started Bhangra in Hong Kong in year 2000 at 300th Vaisakhi celebrations. Bhangra credit goes to Mr. Bhupinder Pal Singh Mangat.\r\n\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Well wisher\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial</h3>\r\nIt gives me great pleasure to join the 15th Anniversary celebrations of Punjab Youth Club (HK). As you know, Punjabi culture is one of the richest cultures of the world. During the last century, a lot of Punjabis settled overseas but the beats of Bhangra, steps of Gidda, Punjabi poetry and festivals, all these aspects of their rich culture were missing, far from their homeland. During the last 15 years the Punjab Youth Club has filled this vacuum and has never left any stone unturned in promoting the Punjabi culture, sports and religious activities in Hong Kong.\r\n\r\nI believe Punjab Youth Club would continue to serve the Punjabi community in Hong Kong in the years to come and I wish Punjab Youth Club every success in the future.\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr.Gurdev Singh Chahal \'Galib\' \" image=\"steadysets-icon-diamond\"]\r\n<h6>Chief Officer\r\nCorrectional Services Dept, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-08-05 23:39:10','2015-08-05 23:39:10','',2744,'http://punjabyouthclub.com/index.php/2015/08/05/2744-revision-v1/',0,'revision','',0),(3556,2,'2015-08-05 23:45:12','2015-08-05 23:45:12','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"center center\" bg_repeat=\"no-repeat\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][image_with_animation image_url=\"3505\" alignment=\"center\" animation=\"Flip In\" img_link_large=\"yes\" img_link_target=\"_self\" delay=\"500\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\r\n	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\nUpcoming 1st October \"Komagat Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club who started Bhangra in Hong Kong in year 2000 at 300th Vaisakhi celebrations. Bhangra credit goes to Mr. Bhupinder Pal Singh Mangat.\r\n\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Mukhtar Singh, President KNS Sports Club\" quote=\"As years moved on, it became apparent that Punjab Youth Club is an important part of Hong Kong -Punjabi Society. The pride that we all take is their experience with voluntary endeavor &amp; the friendship that we have developed with them. Wishing Punjab Youth Club all the vest &amp; keep up the good work.\" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial</h3>\r\nIt gives me great pleasure to join the 15th Anniversary celebrations of Punjab Youth Club (HK). As you know, Punjabi culture is one of the richest cultures of the world. During the last century, a lot of Punjabis settled overseas but the beats of Bhangra, steps of Gidda, Punjabi poetry and festivals, all these aspects of their rich culture were missing, far from their homeland. During the last 15 years the Punjab Youth Club has filled this vacuum and has never left any stone unturned in promoting the Punjabi culture, sports and religious activities in Hong Kong.\r\n\r\nI believe Punjab Youth Club would continue to serve the Punjabi community in Hong Kong in the years to come and I wish Punjab Youth Club every success in the future.\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr.Gurdev Singh Chahal \'Galib\' \" image=\"steadysets-icon-diamond\"]\r\n<h6>Chief Officer\r\nCorrectional Services Dept, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-08-05 23:45:12','2015-08-05 23:45:12','',2744,'http://punjabyouthclub.com/index.php/2015/08/05/2744-revision-v1/',0,'revision','',0),(3557,2,'2015-08-05 23:46:24','2015-08-05 23:46:24','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"center center\" bg_repeat=\"no-repeat\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][image_with_animation image_url=\"3505\" alignment=\"center\" animation=\"Flip In\" img_link_large=\"yes\" img_link_target=\"_self\" delay=\"500\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\r\n	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\nUpcoming 1st October \"Komagat Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club who started Bhangra in Hong Kong in year 2000 at 300th Vaisakhi celebrations. Bhangra credit goes to Mr. Bhupinder Pal Singh Mangat.\r\n\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\" disable_height_animation=\"true\"][testimonial name=\"Mukhtar Singh, President KNS Sports Club\" quote=\"As years moved on, it became apparent that Punjab Youth Club is an important part of Hong Kong -Punjabi Society. The pride that we all take is their experience with voluntary endeavor &amp; the friendship that we have developed with them. Wishing Punjab Youth Club all the best &amp; keep up the good work.\" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial</h3>\r\nIt gives me great pleasure to join the 15th Anniversary celebrations of Punjab Youth Club (HK). As you know, Punjabi culture is one of the richest cultures of the world. During the last century, a lot of Punjabis settled overseas but the beats of Bhangra, steps of Gidda, Punjabi poetry and festivals, all these aspects of their rich culture were missing, far from their homeland. During the last 15 years the Punjab Youth Club has filled this vacuum and has never left any stone unturned in promoting the Punjabi culture, sports and religious activities in Hong Kong.\r\n\r\nI believe Punjab Youth Club would continue to serve the Punjabi community in Hong Kong in the years to come and I wish Punjab Youth Club every success in the future.\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr.Gurdev Singh Chahal \'Galib\' \" image=\"steadysets-icon-diamond\"]\r\n<h6>Chief Officer\r\nCorrectional Services Dept, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-08-05 23:46:24','2015-08-05 23:46:24','',2744,'http://punjabyouthclub.com/index.php/2015/08/05/2744-revision-v1/',0,'revision','',0),(3558,2,'2015-08-05 23:49:07','2015-08-05 23:49:07','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"center center\" bg_repeat=\"no-repeat\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][image_with_animation image_url=\"3505\" alignment=\"center\" animation=\"Flip In\" img_link_large=\"yes\" img_link_target=\"_self\" delay=\"500\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\r\n	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\nUpcoming 1st October \"Komagat Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club who started Bhangra in Hong Kong in year 2000 at 300th Vaisakhi celebrations. Bhangra credit goes to Mr. Bhupinder Pal Singh Mangat.\r\n\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\"Mukhtar Singh, President KNS Sports Club\" quote=\"As years moved on, it became apparent that Punjab Youth Club is an important part of Hong Kong -Punjabi Society. The pride that we all take is their experience with voluntary endeavor &amp; the friendship that we have developed with them. Wishing Punjab Youth Club all the best &amp; keep up the good work.\" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial</h3>\r\nIt gives me great pleasure to join the 15th Anniversary celebrations of Punjab Youth Club (HK). As you know, Punjabi culture is one of the richest cultures of the world. During the last century, a lot of Punjabis settled overseas but the beats of Bhangra, steps of Gidda, Punjabi poetry and festivals, all these aspects of their rich culture were missing, far from their homeland. During the last 15 years the Punjab Youth Club has filled this vacuum and has never left any stone unturned in promoting the Punjabi culture, sports and religious activities in Hong Kong.\r\n\r\nI believe Punjab Youth Club would continue to serve the Punjabi community in Hong Kong in the years to come and I wish Punjab Youth Club every success in the future.\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr.Gurdev Singh Chahal \'Galib\' \" image=\"steadysets-icon-diamond\"]\r\n<h6>Chief Officer\r\nCorrectional Services Dept, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-08-05 23:49:07','2015-08-05 23:49:07','',2744,'http://punjabyouthclub.com/index.php/2015/08/05/2744-revision-v1/',0,'revision','',0),(3559,2,'2015-08-06 00:04:42','2015-08-06 00:04:42','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"center center\" bg_repeat=\"no-repeat\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][image_with_animation image_url=\"3505\" alignment=\"center\" animation=\"Flip In\" img_link_large=\"yes\" img_link_target=\"_self\" delay=\"500\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\r\n	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\nUpcoming 1st October \"Komagat Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club who started Bhangra in Hong Kong in year 2000 at 300th Vaisakhi celebrations. Bhangra credit goes to Mr. Bhupinder Pal Singh Mangat.\r\n\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\"Mukhtar Singh, President KNS Sports Club\" quote=\"As years moved on, it became apparent that Punjab Youth Club is an important part of Hong Kong -Punjabi Society. The pride that we all take is their experience with voluntary endeavor &amp; the friendship that we have developed with them. Wishing Punjab Youth Club all the best &amp; keep up the good work.\" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial</h3>\r\nIt gives me great pleasure to join the 15th Anniversary celebrations of Punjab Youth Club (HK). As you know, Punjabi culture is one of the richest cultures of the world. During the last century, a lot of Punjabis settled overseas but the beats of Bhangra, steps of Gidda, Punjabi poetry and festivals, all these aspects of their rich culture were missing, far from their homeland. During the last 15 years the Punjab Youth Club has filled this vacuum and has never left any stone unturned in promoting the Punjabi culture, sports and religious activities in Hong Kong.\r\n\r\nI believe Punjab Youth Club would continue to serve the Punjabi community in Hong Kong in the years to come and I wish Punjab Youth Club every success in the future.\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr.Gurdev Singh Galib \" image=\"steadysets-icon-diamond\"]\r\n<h6>Chief Officer\r\nCorrectional Services Dept, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-08-06 00:04:42','2015-08-06 00:04:42','',2744,'http://punjabyouthclub.com/index.php/2015/08/06/2744-revision-v1/',0,'revision','',0),(3560,2,'2015-08-11 14:45:06','2015-08-11 14:45:06','','15th Anni Dinner web banner','','inherit','open','open','','15th-anni-dinner-web-banner-2','','','2015-08-11 14:45:06','2015-08-11 14:45:06','',2744,'http://punjabyouthclub.com/wp-content/uploads/2013/06/15th-Anni-Dinner-web-banner.jpg',0,'attachment','image/jpeg',0),(3561,2,'2015-08-11 14:45:42','2015-08-11 14:45:42','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"center center\" bg_repeat=\"no-repeat\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][image_with_animation image_url=\"3560\" alignment=\"center\" animation=\"Flip In\" img_link_large=\"yes\" img_link_target=\"_self\" delay=\"500\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\r\n	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\nUpcoming 1st October \"Komagat Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club who started Bhangra in Hong Kong in year 2000 at 300th Vaisakhi celebrations. Bhangra credit goes to Mr. Bhupinder Pal Singh Mangat.\r\n\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\"Mukhtar Singh, President KNS Sports Club\" quote=\"As years moved on, it became apparent that Punjab Youth Club is an important part of Hong Kong -Punjabi Society. The pride that we all take is their experience with voluntary endeavor &amp; the friendship that we have developed with them. Wishing Punjab Youth Club all the best &amp; keep up the good work.\" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial</h3>\r\nIt gives me great pleasure to join the 15th Anniversary celebrations of Punjab Youth Club (HK). As you know, Punjabi culture is one of the richest cultures of the world. During the last century, a lot of Punjabis settled overseas but the beats of Bhangra, steps of Gidda, Punjabi poetry and festivals, all these aspects of their rich culture were missing, far from their homeland. During the last 15 years the Punjab Youth Club has filled this vacuum and has never left any stone unturned in promoting the Punjabi culture, sports and religious activities in Hong Kong.\r\n\r\nI believe Punjab Youth Club would continue to serve the Punjabi community in Hong Kong in the years to come and I wish Punjab Youth Club every success in the future.\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr.Gurdev Singh Galib \" image=\"steadysets-icon-diamond\"]\r\n<h6>Chief Officer\r\nCorrectional Services Dept, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-08-11 14:45:42','2015-08-11 14:45:42','',2744,'http://punjabyouthclub.com/index.php/2015/08/11/2744-revision-v1/',0,'revision','',0),(3562,2,'2015-08-26 08:57:56','2015-08-26 08:57:56','','PYC-MEMBERSHIP_Form','','inherit','open','open','','pyc-membership_form','','','2015-08-26 08:57:56','2015-08-26 08:57:56','',2690,'http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC-MEMBERSHIP_Form.pdf',0,'attachment','application/pdf',0),(3563,2,'2015-08-26 09:06:33','2015-08-26 09:06:33','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Punjab Youth Club Membership Form\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<p align=\"center\">To DOWNLOAD membership form please click below.</p>\r\n<p align=\"center\"><b><a href=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC-MEMBERSHIP_Form.pdf\"><span style=\"font-size: large;\">Membership Form</span></a></b></p>\r\n<p align=\"center\">Please note that you  will need<a href=\"http://www.adobe.com/products/acrobat/readstep2.html\" target=\"_blank\"> Adobe Acrobat Reader 6.0 or higher</a> to read and fill up the membership form.</p>\r\n<p align=\"center\"><a href=\"http://www.adobe.com/products/acrobat/readstep2.html\"><img src=\"http://punjabyouthclub.com/old_site/images/adobe.gif\" alt=\"\" width=\"150\" height=\"65\" border=\"0\" /></a></p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Membership','','inherit','open','open','','2690-revision-v1','','','2015-08-26 09:06:33','2015-08-26 09:06:33','',2690,'http://punjabyouthclub.com/index.php/2015/08/26/2690-revision-v1/',0,'revision','',0),(3564,2,'2015-08-26 09:11:00','2015-08-26 09:11:00','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Punjab Youth Club Membership Form\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<p align=\"center\">To DOWNLOAD membership form please click below.</p>\r\n<p align=\"center\"><b><a href=\"http://punjabyouthclub.com/?p=2690\"><span style=\"font-size: large;\">Membership Form</span></a></b></p>\r\n<p align=\"center\">Please note that you  will need<a href=\"http://www.adobe.com/products/acrobat/readstep2.html\" target=\"_blank\"> Adobe Acrobat Reader 6.0 or higher</a> to read and fill up the membership form.</p>\r\n<p align=\"center\"><a href=\"http://www.adobe.com/products/acrobat/readstep2.html\"><img src=\"http://punjabyouthclub.com/old_site/images/adobe.gif\" alt=\"\" width=\"150\" height=\"65\" border=\"0\" /></a></p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Membership','','inherit','open','open','','2690-revision-v1','','','2015-08-26 09:11:00','2015-08-26 09:11:00','',2690,'http://punjabyouthclub.com/index.php/2015/08/26/2690-revision-v1/',0,'revision','',0),(3565,2,'2015-08-26 09:14:42','2015-08-26 09:14:42','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Punjab Youth Club Membership Form\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<p align=\"center\">To DOWNLOAD membership form please click below.</p>\r\n<p align=\"center\"><b><a href=\"http://punjabyouthclub.com/?p=3562\"><span style=\"font-size: large;\">Membership Form</span></a></b></p>\r\n<p align=\"center\">Please note that you  will need<a href=\"http://www.adobe.com/products/acrobat/readstep2.html\" target=\"_blank\"> Adobe Acrobat Reader 6.0 or higher</a> to read and fill up the membership form.</p>\r\n<p align=\"center\"><a href=\"http://www.adobe.com/products/acrobat/readstep2.html\"><img src=\"http://punjabyouthclub.com/old_site/images/adobe.gif\" alt=\"\" width=\"150\" height=\"65\" border=\"0\" /></a></p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Membership','','inherit','open','open','','2690-revision-v1','','','2015-08-26 09:14:42','2015-08-26 09:14:42','',2690,'http://punjabyouthclub.com/index.php/2015/08/26/2690-revision-v1/',0,'revision','',0),(3566,2,'2015-08-26 09:24:57','2015-08-26 09:24:57','','download-form1','','inherit','open','open','','download-form1','','','2015-08-26 09:24:57','2015-08-26 09:24:57','',2690,'http://punjabyouthclub.com/wp-content/uploads/2015/07/download-form1.jpg',0,'attachment','image/jpeg',0),(3567,2,'2015-08-26 09:27:10','2015-08-26 09:27:10','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Punjab Youth Club Membership Form\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<p align=\"center\">To DOWNLOAD membership form please click below.</p>\r\n\r\n<blockquote>\r\n<h1 align=\"center\"><a href=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/PYC-MEMBERSHIP_Form.pdf\"><img class=\"alignnone size-medium wp-image-3566\" src=\"http://punjabyouthclub.com/wp-content/uploads/2015/07/download-form1-300x103.jpg\" alt=\"download-form1\" width=\"300\" height=\"103\" /></a></h1>\r\n<p align=\"center\">Please note that you  will need<a href=\"http://www.adobe.com/products/acrobat/readstep2.html\" target=\"_blank\"> Adobe Acrobat Reader 6.0 or higher</a> to read and fill up the membership form.</p>\r\n</blockquote>\r\n<p align=\"center\"><a href=\"http://www.adobe.com/products/acrobat/readstep2.html\"><img src=\"http://punjabyouthclub.com/old_site/images/adobe.gif\" alt=\"\" width=\"150\" height=\"65\" border=\"0\" /></a></p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n<p align=\"center\">.</p>\r\n[/vc_column_text][/vc_column][/vc_row]','Membership','','inherit','open','open','','2690-revision-v1','','','2015-08-26 09:27:10','2015-08-26 09:27:10','',2690,'http://punjabyouthclub.com/index.php/2015/08/26/2690-revision-v1/',0,'revision','',0),(3568,2,'2015-08-26 09:50:28','2015-08-26 09:50:28','','Mahek Punjab Di 2015','','publish','open','open','','mahek-punjab-di-2015','','','2015-08-27 07:13:38','2015-08-27 07:13:38','',0,'http://punjabyouthclub.com/?post_type=portfolio&#038;p=3568',0,'portfolio','',0),(3569,2,'2015-08-26 09:33:36','2015-08-26 09:33:36','','Mahek Punjab Di 2015','','inherit','open','open','','3568-revision-v1','','','2015-08-26 09:33:36','2015-08-26 09:33:36','',3568,'http://punjabyouthclub.com/index.php/2015/08/26/3568-revision-v1/',0,'revision','',0),(3570,2,'2015-08-26 09:49:24','2015-08-26 09:49:24','','PYC-Anniversary','','inherit','open','open','','pyc-anniversary','','','2015-08-26 09:49:24','2015-08-26 09:49:24','',3568,'http://punjabyouthclub.com/wp-content/uploads/2015/08/PYC-Anniversary.png',0,'attachment','image/png',0),(3571,2,'2015-08-26 09:52:53','2015-08-26 09:52:53','[vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\"][nectar_slider arrow_navigation=\"true\" bullet_navigation=\"true\" desktop_swipe=\"true\" location=\"Home\" flexible_slider_height=\"true\" loop=\"true\" full_width=\"true\" parallax=\"true\" slider_transition=\"slide\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"center center\" bg_repeat=\"no-repeat\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\"][vc_column width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" bg_color=\"#ffffff\"][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\r\n	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\nUpcoming 1st October \"Komagat Maru Memorial Youth Hockey Tournament \"[/text-with-icon][/vc_column][vc_column width=\"1/3\" enable_animation=\"true\" animation=\"fade-in\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club who started Bhangra in Hong Kong in year 2000 at 300th Vaisakhi celebrations. Bhangra credit goes to Mr. Bhupinder Pal Singh Mangat.\r\n\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" bg_position=\"left top\" bg_repeat=\"no-repeat\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\"][vc_column width=\"1/1\" enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" background_color_opacity=\"1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" starting_category=\"default\" project_style=\"1\" projects_per_page=\"4\" pagination_type=\"default\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" image_url=\"2265\" parallax_bg=\"true\" vertically_center_columns=\"true\" background_color=\"#101012\"][vc_column width=\"1/1\" animation=\"none\" column_padding=\"padding-5-percent\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" font_color=\"#ffffff\" centered_text=\"true\"][testimonial_slider autorotate=\"7000\"][testimonial name=\"Mukhtar Singh, President KNS Sports Club\" quote=\"As years moved on, it became apparent that Punjab Youth Club is an important part of Hong Kong -Punjabi Society. The pride that we all take is their experience with voluntary endeavor &amp; the friendship that we have developed with them. Wishing Punjab Youth Club all the best &amp; keep up the good work.\" id=\"t1\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\"][/testimonial][/testimonial_slider][clients columns=\"6\" carousel=\"true\" fade_in_animation=\"true\"][client title=\"Client\" id=\"1395635698-1-67\" image=\"3075\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636117002-0-4\" image=\"3085\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1395635965058-0-2\" image=\"3077\" name=\"Toronto Motel Hong Kong\"][/client][client title=\"Client\" id=\"1395635698-2-45\" image=\"3074\" name=\"MultiLines Intl. Co. Ltd.\"] Click the edit button to add your testimonial. [/client][client title=\"Client\" id=\"1395636055291-0-6\" image=\"3081\" name=\"Buttar &amp; Associates\"][/client][client title=\"Client\" id=\"1395635975628-0-8\" image=\"3072\" name=\"Dr. Fix It All\"][/client][client title=\"Client\" id=\"1436665265751-0-7\" image=\"3071\" name=\"Dime Air\"][/client][client title=\"Client\" id=\"1436665318808-0-4\" image=\"3082\" name=\"Dhillon Hotels\"][/client][client title=\"Client\" id=\"1436665294182-0-6\" image=\"3076\" name=\"Satrang Entertainers\"][/client][client title=\"Client\" id=\"1436665533508-0-1\" image=\"3083\" name=\"Brar Group\"][/client][client title=\"Client\" id=\"1436665572198-0-8\" image=\"3078\" name=\"TS Security\"][/client][client title=\"Client\" id=\"1436665626816-0-0\" image=\"3073\" name=\"Grewal Commercial Services\"][/client][/clients][/vc_column][/full_width_section][full_width_section bg_pos=\"Center Center\" bg_repeat=\"No-Repeat\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\" type=\"full_width_content\" text_align=\"left\" parallax_bg=\"true\" background_color=\"#171920\"][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color=\"#20cfef\" background_color_opacity=\"1\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" background_color=\"#fe4641\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" animation=\"flip-in\" column_padding=\"padding-4-percent\" background_color_opacity=\"1\" font_color=\"#ffffff\" background_color=\"#6b58cd\" enable_animation=\"true\"][vc_row_inner][vc_column_inner width=\"1/1\" enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial</h3>\r\nIt gives me great pleasure to join the 15th Anniversary celebrations of Punjab Youth Club (HK). As you know, Punjabi culture is one of the richest cultures of the world. During the last century, a lot of Punjabis settled overseas but the beats of Bhangra, steps of Gidda, Punjabi poetry and festivals, all these aspects of their rich culture were missing, far from their homeland. During the last 15 years the Punjab Youth Club has filled this vacuum and has never left any stone unturned in promoting the Punjabi culture, sports and religious activities in Hong Kong.\r\n\r\nI believe Punjab Youth Club would continue to serve the Punjabi community in Hong Kong in the years to come and I wish Punjab Youth Club every success in the future.\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr.Gurdev Singh Galib \" image=\"steadysets-icon-diamond\"]\r\n<h6>Chief Officer\r\nCorrectional Services Dept, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','open','open','','2744-revision-v1','','','2015-08-26 09:52:53','2015-08-26 09:52:53','',2744,'http://punjabyouthclub.com/index.php/2015/08/26/2744-revision-v1/',0,'revision','',0),(3572,2,'2015-08-27 06:53:08','2015-08-27 06:53:08','','DSC_0152','','inherit','open','open','','dsc_0152','','','2015-08-27 06:53:08','2015-08-27 06:53:08','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0152.jpg',0,'attachment','image/jpeg',0),(3573,2,'2015-08-27 06:53:14','2015-08-27 06:53:14','','DSC_0157','','inherit','open','open','','dsc_0157','','','2015-08-27 06:53:14','2015-08-27 06:53:14','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0157.jpg',0,'attachment','image/jpeg',0),(3574,2,'2015-08-27 06:56:16','2015-08-27 06:56:16','','DSC_0152','','inherit','open','open','','dsc_0152-2','','','2015-08-27 06:56:16','2015-08-27 06:56:16','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_01521.jpg',0,'attachment','image/jpeg',0),(3575,2,'2015-08-27 06:56:20','2015-08-27 06:56:20','','DSC_0157','','inherit','open','open','','dsc_0157-2','','','2015-08-27 06:56:20','2015-08-27 06:56:20','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_01571.jpg',0,'attachment','image/jpeg',0),(3576,2,'2015-08-27 06:56:23','2015-08-27 06:56:23','','DSC_0159','','inherit','open','open','','dsc_0159','','','2015-08-27 06:56:23','2015-08-27 06:56:23','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0159.jpg',0,'attachment','image/jpeg',0),(3577,2,'2015-08-27 06:56:26','2015-08-27 06:56:26','','DSC_0164','','inherit','open','open','','dsc_0164','','','2015-08-27 06:56:26','2015-08-27 06:56:26','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0164.jpg',0,'attachment','image/jpeg',0),(3578,2,'2015-08-27 06:56:29','2015-08-27 06:56:29','','DSC_0167','','inherit','open','open','','dsc_0167','','','2015-08-27 06:56:29','2015-08-27 06:56:29','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0167.jpg',0,'attachment','image/jpeg',0),(3579,2,'2015-08-27 06:56:33','2015-08-27 06:56:33','','DSC_0168','','inherit','open','open','','dsc_0168','','','2015-08-27 06:56:33','2015-08-27 06:56:33','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0168.jpg',0,'attachment','image/jpeg',0),(3580,2,'2015-08-27 06:56:36','2015-08-27 06:56:36','','DSC_0170','','inherit','open','open','','dsc_0170','','','2015-08-27 06:56:36','2015-08-27 06:56:36','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0170.jpg',0,'attachment','image/jpeg',0),(3581,2,'2015-08-27 06:56:39','2015-08-27 06:56:39','','DSC_0173','','inherit','open','open','','dsc_0173','','','2015-08-27 06:56:39','2015-08-27 06:56:39','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0173.jpg',0,'attachment','image/jpeg',0),(3582,2,'2015-08-27 06:56:42','2015-08-27 06:56:42','','DSC_0177','','inherit','open','open','','dsc_0177','','','2015-08-27 06:56:42','2015-08-27 06:56:42','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0177.jpg',0,'attachment','image/jpeg',0),(3583,2,'2015-08-27 06:56:45','2015-08-27 06:56:45','','DSC_0179','','inherit','open','open','','dsc_0179','','','2015-08-27 06:56:45','2015-08-27 06:56:45','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0179.jpg',0,'attachment','image/jpeg',0),(3584,2,'2015-08-27 06:56:49','2015-08-27 06:56:49','','DSC_0183','','inherit','open','open','','dsc_0183','','','2015-08-27 06:56:49','2015-08-27 06:56:49','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0183.jpg',0,'attachment','image/jpeg',0),(3585,2,'2015-08-27 06:56:55','2015-08-27 06:56:55','','DSC_0185','','inherit','open','open','','dsc_0185','','','2015-08-27 06:56:55','2015-08-27 06:56:55','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0185.jpg',0,'attachment','image/jpeg',0),(3586,2,'2015-08-27 06:57:00','2015-08-27 06:57:00','','DSC_0187','','inherit','open','open','','dsc_0187','','','2015-08-27 06:57:00','2015-08-27 06:57:00','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0187.jpg',0,'attachment','image/jpeg',0),(3587,2,'2015-08-27 06:57:05','2015-08-27 06:57:05','','DSC_0188','','inherit','open','open','','dsc_0188','','','2015-08-27 06:57:05','2015-08-27 06:57:05','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0188.jpg',0,'attachment','image/jpeg',0),(3588,2,'2015-08-27 06:57:08','2015-08-27 06:57:08','','DSC_0190','','inherit','open','open','','dsc_0190','','','2015-08-27 06:57:08','2015-08-27 06:57:08','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0190.jpg',0,'attachment','image/jpeg',0),(3589,2,'2015-08-27 06:57:15','2015-08-27 06:57:15','','DSC_0192','','inherit','open','open','','dsc_0192','','','2015-08-27 06:57:15','2015-08-27 06:57:15','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0192.jpg',0,'attachment','image/jpeg',0),(3590,2,'2015-08-27 06:57:20','2015-08-27 06:57:20','','DSC_0197','','inherit','open','open','','dsc_0197','','','2015-08-27 06:57:20','2015-08-27 06:57:20','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0197.jpg',0,'attachment','image/jpeg',0),(3591,2,'2015-08-27 06:57:25','2015-08-27 06:57:25','','DSC_0204','','inherit','open','open','','dsc_0204','','','2015-08-27 06:57:25','2015-08-27 06:57:25','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0204.jpg',0,'attachment','image/jpeg',0),(3592,2,'2015-08-27 06:57:28','2015-08-27 06:57:28','','DSC_0207','','inherit','open','open','','dsc_0207','','','2015-08-27 06:57:28','2015-08-27 06:57:28','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0207.jpg',0,'attachment','image/jpeg',0),(3593,2,'2015-08-27 06:57:33','2015-08-27 06:57:33','','DSC_0212','','inherit','open','open','','dsc_0212','','','2015-08-27 06:57:33','2015-08-27 06:57:33','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0212.jpg',0,'attachment','image/jpeg',0),(3594,2,'2015-08-27 06:57:38','2015-08-27 06:57:38','','DSC_0229','','inherit','open','open','','dsc_0229','','','2015-08-27 06:57:38','2015-08-27 06:57:38','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0229.jpg',0,'attachment','image/jpeg',0),(3595,2,'2015-08-27 06:57:45','2015-08-27 06:57:45','','DSC_0231','','inherit','open','open','','dsc_0231','','','2015-08-27 06:57:45','2015-08-27 06:57:45','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0231.jpg',0,'attachment','image/jpeg',0),(3596,2,'2015-08-27 06:57:49','2015-08-27 06:57:49','','DSC_0244','','inherit','open','open','','dsc_0244','','','2015-08-27 06:57:49','2015-08-27 06:57:49','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0244.jpg',0,'attachment','image/jpeg',0),(3597,2,'2015-08-27 06:57:55','2015-08-27 06:57:55','','DSC_0254','','inherit','open','open','','dsc_0254','','','2015-08-27 06:57:55','2015-08-27 06:57:55','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0254.jpg',0,'attachment','image/jpeg',0),(3598,2,'2015-08-27 06:58:00','2015-08-27 06:58:00','','DSC_0255','','inherit','open','open','','dsc_0255','','','2015-08-27 06:58:00','2015-08-27 06:58:00','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0255.jpg',0,'attachment','image/jpeg',0),(3599,2,'2015-08-27 06:58:06','2015-08-27 06:58:06','','DSC_0258','','inherit','open','open','','dsc_0258','','','2015-08-27 06:58:06','2015-08-27 06:58:06','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0258.jpg',0,'attachment','image/jpeg',0),(3600,2,'2015-08-27 06:58:12','2015-08-27 06:58:12','','DSC_0261','','inherit','open','open','','dsc_0261','','','2015-08-27 06:58:12','2015-08-27 06:58:12','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0261.jpg',0,'attachment','image/jpeg',0),(3601,2,'2015-08-27 06:58:16','2015-08-27 06:58:16','','DSC_0262','','inherit','open','open','','dsc_0262','','','2015-08-27 06:58:16','2015-08-27 06:58:16','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0262.jpg',0,'attachment','image/jpeg',0),(3602,2,'2015-08-27 06:58:20','2015-08-27 06:58:20','','DSC_0266','','inherit','open','open','','dsc_0266','','','2015-08-27 06:58:20','2015-08-27 06:58:20','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0266.jpg',0,'attachment','image/jpeg',0),(3603,2,'2015-08-27 06:58:24','2015-08-27 06:58:24','','DSC_0267','','inherit','open','open','','dsc_0267','','','2015-08-27 06:58:24','2015-08-27 06:58:24','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0267.jpg',0,'attachment','image/jpeg',0),(3604,2,'2015-08-27 06:58:27','2015-08-27 06:58:27','','DSC_0268','','inherit','open','open','','dsc_0268','','','2015-08-27 06:58:27','2015-08-27 06:58:27','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0268.jpg',0,'attachment','image/jpeg',0),(3605,2,'2015-08-27 06:58:33','2015-08-27 06:58:33','','DSC_0269','','inherit','open','open','','dsc_0269','','','2015-08-27 06:58:33','2015-08-27 06:58:33','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0269.jpg',0,'attachment','image/jpeg',0),(3606,2,'2015-08-27 06:58:35','2015-08-27 06:58:35','','DSC_0272','','inherit','open','open','','dsc_0272','','','2015-08-27 06:58:35','2015-08-27 06:58:35','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0272.jpg',0,'attachment','image/jpeg',0),(3607,2,'2015-08-27 06:58:41','2015-08-27 06:58:41','','DSC_0273','','inherit','open','open','','dsc_0273','','','2015-08-27 06:58:41','2015-08-27 06:58:41','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0273.jpg',0,'attachment','image/jpeg',0),(3608,2,'2015-08-27 06:58:45','2015-08-27 06:58:45','','DSC_0276','','inherit','open','open','','dsc_0276','','','2015-08-27 06:58:45','2015-08-27 06:58:45','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0276.jpg',0,'attachment','image/jpeg',0),(3609,2,'2015-08-27 06:58:51','2015-08-27 06:58:51','','DSC_0655','','inherit','open','open','','dsc_0655','','','2015-08-27 06:58:51','2015-08-27 06:58:51','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0655.jpg',0,'attachment','image/jpeg',0),(3610,2,'2015-08-27 06:58:57','2015-08-27 06:58:57','','DSC_0659','','inherit','open','open','','dsc_0659','','','2015-08-27 06:58:57','2015-08-27 06:58:57','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0659.jpg',0,'attachment','image/jpeg',0),(3611,2,'2015-08-27 06:59:01','2015-08-27 06:59:01','','DSC_0662','','inherit','open','open','','dsc_0662','','','2015-08-27 06:59:01','2015-08-27 06:59:01','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0662.jpg',0,'attachment','image/jpeg',0),(3612,2,'2015-08-27 06:59:05','2015-08-27 06:59:05','','DSC_0667','','inherit','open','open','','dsc_0667','','','2015-08-27 06:59:05','2015-08-27 06:59:05','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0667.jpg',0,'attachment','image/jpeg',0),(3613,2,'2015-08-27 06:59:11','2015-08-27 06:59:11','','DSC_0669','','inherit','open','open','','dsc_0669','','','2015-08-27 06:59:11','2015-08-27 06:59:11','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0669.jpg',0,'attachment','image/jpeg',0),(3614,2,'2015-08-27 06:59:16','2015-08-27 06:59:16','','DSC_0672','','inherit','open','open','','dsc_0672','','','2015-08-27 06:59:16','2015-08-27 06:59:16','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0672.jpg',0,'attachment','image/jpeg',0),(3615,2,'2015-08-27 06:59:21','2015-08-27 06:59:21','','DSC_0673','','inherit','open','open','','dsc_0673','','','2015-08-27 06:59:21','2015-08-27 06:59:21','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0673.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `wp_posts` VALUES (3616,2,'2015-08-27 06:59:25','2015-08-27 06:59:25','','DSC_0674','','inherit','open','open','','dsc_0674','','','2015-08-27 06:59:25','2015-08-27 06:59:25','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0674.jpg',0,'attachment','image/jpeg',0),(3617,2,'2015-08-27 06:59:29','2015-08-27 06:59:29','','DSC_0676','','inherit','open','open','','dsc_0676','','','2015-08-27 06:59:29','2015-08-27 06:59:29','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0676.jpg',0,'attachment','image/jpeg',0),(3618,2,'2015-08-27 06:59:33','2015-08-27 06:59:33','','DSC_0678','','inherit','open','open','','dsc_0678','','','2015-08-27 06:59:33','2015-08-27 06:59:33','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0678.jpg',0,'attachment','image/jpeg',0),(3619,2,'2015-08-27 06:59:37','2015-08-27 06:59:37','','DSC_0679','','inherit','open','open','','dsc_0679','','','2015-08-27 06:59:37','2015-08-27 06:59:37','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0679.jpg',0,'attachment','image/jpeg',0),(3620,2,'2015-08-27 06:59:42','2015-08-27 06:59:42','','DSC_0680','','inherit','open','open','','dsc_0680','','','2015-08-27 06:59:42','2015-08-27 06:59:42','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0680.jpg',0,'attachment','image/jpeg',0),(3621,2,'2015-08-27 06:59:46','2015-08-27 06:59:46','','DSC_0682','','inherit','open','open','','dsc_0682','','','2015-08-27 06:59:46','2015-08-27 06:59:46','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0682.jpg',0,'attachment','image/jpeg',0),(3622,2,'2015-08-27 06:59:50','2015-08-27 06:59:50','','DSC_0684','','inherit','open','open','','dsc_0684','','','2015-08-27 06:59:50','2015-08-27 06:59:50','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0684.jpg',0,'attachment','image/jpeg',0),(3623,2,'2015-08-27 06:59:54','2015-08-27 06:59:54','','DSC_0685','','inherit','open','open','','dsc_0685','','','2015-08-27 06:59:54','2015-08-27 06:59:54','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0685.jpg',0,'attachment','image/jpeg',0),(3624,2,'2015-08-27 06:59:59','2015-08-27 06:59:59','','DSC_0698','','inherit','open','open','','dsc_0698','','','2015-08-27 06:59:59','2015-08-27 06:59:59','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0698.jpg',0,'attachment','image/jpeg',0),(3625,2,'2015-08-27 07:00:04','2015-08-27 07:00:04','','DSC_0702','','inherit','open','open','','dsc_0702','','','2015-08-27 07:00:04','2015-08-27 07:00:04','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0702.jpg',0,'attachment','image/jpeg',0),(3626,2,'2015-08-27 07:00:12','2015-08-27 07:00:12','','DSC_0704','','inherit','open','open','','dsc_0704','','','2015-08-27 07:00:12','2015-08-27 07:00:12','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0704.jpg',0,'attachment','image/jpeg',0),(3627,2,'2015-08-27 07:00:16','2015-08-27 07:00:16','','DSC_0709','','inherit','open','open','','dsc_0709','','','2015-08-27 07:00:16','2015-08-27 07:00:16','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0709.jpg',0,'attachment','image/jpeg',0),(3628,2,'2015-08-27 07:00:22','2015-08-27 07:00:22','','DSC_0710','','inherit','open','open','','dsc_0710','','','2015-08-27 07:00:22','2015-08-27 07:00:22','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0710.jpg',0,'attachment','image/jpeg',0),(3629,2,'2015-08-27 07:00:28','2015-08-27 07:00:28','','DSC_0711','','inherit','open','open','','dsc_0711','','','2015-08-27 07:00:28','2015-08-27 07:00:28','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0711.jpg',0,'attachment','image/jpeg',0),(3630,2,'2015-08-27 07:00:33','2015-08-27 07:00:33','','DSC_0713','','inherit','open','open','','dsc_0713','','','2015-08-27 07:00:33','2015-08-27 07:00:33','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0713.jpg',0,'attachment','image/jpeg',0),(3631,2,'2015-08-27 07:00:37','2015-08-27 07:00:37','','DSC_0717','','inherit','open','open','','dsc_0717','','','2015-08-27 07:00:37','2015-08-27 07:00:37','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0717.jpg',0,'attachment','image/jpeg',0),(3632,2,'2015-08-27 07:00:42','2015-08-27 07:00:42','','DSC_0718','','inherit','open','open','','dsc_0718','','','2015-08-27 07:00:42','2015-08-27 07:00:42','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0718.jpg',0,'attachment','image/jpeg',0),(3633,2,'2015-08-27 07:00:48','2015-08-27 07:00:48','','DSC_0735','','inherit','open','open','','dsc_0735','','','2015-08-27 07:00:48','2015-08-27 07:00:48','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0735.jpg',0,'attachment','image/jpeg',0),(3634,2,'2015-08-27 07:00:55','2015-08-27 07:00:55','','DSC_0736','','inherit','open','open','','dsc_0736','','','2015-08-27 07:00:55','2015-08-27 07:00:55','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0736.jpg',0,'attachment','image/jpeg',0),(3635,2,'2015-08-27 07:01:00','2015-08-27 07:01:00','','DSC_0740','','inherit','open','open','','dsc_0740','','','2015-08-27 07:01:00','2015-08-27 07:01:00','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0740.jpg',0,'attachment','image/jpeg',0),(3636,2,'2015-08-27 07:01:04','2015-08-27 07:01:04','','DSC_0743','','inherit','open','open','','dsc_0743','','','2015-08-27 07:01:04','2015-08-27 07:01:04','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0743.jpg',0,'attachment','image/jpeg',0),(3637,2,'2015-08-27 07:01:09','2015-08-27 07:01:09','','DSC_0744','','inherit','open','open','','dsc_0744','','','2015-08-27 07:01:09','2015-08-27 07:01:09','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0744.jpg',0,'attachment','image/jpeg',0),(3638,2,'2015-08-27 07:01:13','2015-08-27 07:01:13','','DSC_0746','','inherit','open','open','','dsc_0746','','','2015-08-27 07:01:13','2015-08-27 07:01:13','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0746.jpg',0,'attachment','image/jpeg',0),(3639,2,'2015-08-27 07:01:18','2015-08-27 07:01:18','','DSC_0750','','inherit','open','open','','dsc_0750','','','2015-08-27 07:01:18','2015-08-27 07:01:18','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0750.jpg',0,'attachment','image/jpeg',0),(3640,2,'2015-08-27 07:01:22','2015-08-27 07:01:22','','DSC_0751','','inherit','open','open','','dsc_0751','','','2015-08-27 07:01:22','2015-08-27 07:01:22','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0751.jpg',0,'attachment','image/jpeg',0),(3641,2,'2015-08-27 07:01:28','2015-08-27 07:01:28','','DSC_0755','','inherit','open','open','','dsc_0755','','','2015-08-27 07:01:28','2015-08-27 07:01:28','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0755.jpg',0,'attachment','image/jpeg',0),(3642,2,'2015-08-27 07:01:33','2015-08-27 07:01:33','','DSC_0756','','inherit','open','open','','dsc_0756','','','2015-08-27 07:01:33','2015-08-27 07:01:33','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0756.jpg',0,'attachment','image/jpeg',0),(3643,2,'2015-08-27 07:01:40','2015-08-27 07:01:40','','DSC_0760','','inherit','open','open','','dsc_0760','','','2015-08-27 07:01:40','2015-08-27 07:01:40','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0760.jpg',0,'attachment','image/jpeg',0),(3644,2,'2015-08-27 07:01:45','2015-08-27 07:01:45','','DSC_0763','','inherit','open','open','','dsc_0763','','','2015-08-27 07:01:45','2015-08-27 07:01:45','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0763.jpg',0,'attachment','image/jpeg',0),(3645,2,'2015-08-27 07:01:49','2015-08-27 07:01:49','','DSC_0765','','inherit','open','open','','dsc_0765','','','2015-08-27 07:01:49','2015-08-27 07:01:49','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0765.jpg',0,'attachment','image/jpeg',0),(3646,2,'2015-08-27 07:01:57','2015-08-27 07:01:57','','DSC_0766','','inherit','open','open','','dsc_0766','','','2015-08-27 07:01:57','2015-08-27 07:01:57','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0766.jpg',0,'attachment','image/jpeg',0),(3647,2,'2015-08-27 07:02:01','2015-08-27 07:02:01','','DSC_0767','','inherit','open','open','','dsc_0767','','','2015-08-27 07:02:01','2015-08-27 07:02:01','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0767.jpg',0,'attachment','image/jpeg',0),(3648,2,'2015-08-27 07:02:09','2015-08-27 07:02:09','','DSC_0774','','inherit','open','open','','dsc_0774','','','2015-08-27 07:02:09','2015-08-27 07:02:09','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0774.jpg',0,'attachment','image/jpeg',0),(3649,2,'2015-08-27 07:02:13','2015-08-27 07:02:13','','DSC_0780','','inherit','open','open','','dsc_0780','','','2015-08-27 07:02:13','2015-08-27 07:02:13','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0780.jpg',0,'attachment','image/jpeg',0),(3650,2,'2015-08-27 07:02:20','2015-08-27 07:02:20','','DSC_0781','','inherit','open','open','','dsc_0781','','','2015-08-27 07:02:20','2015-08-27 07:02:20','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0781.jpg',0,'attachment','image/jpeg',0),(3651,2,'2015-08-27 07:02:24','2015-08-27 07:02:24','','DSC_0789','','inherit','open','open','','dsc_0789','','','2015-08-27 07:02:24','2015-08-27 07:02:24','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0789.jpg',0,'attachment','image/jpeg',0),(3652,2,'2015-08-27 07:02:27','2015-08-27 07:02:27','','DSC_0792','','inherit','open','open','','dsc_0792','','','2015-08-27 07:02:27','2015-08-27 07:02:27','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0792.jpg',0,'attachment','image/jpeg',0),(3653,2,'2015-08-27 07:02:30','2015-08-27 07:02:30','','DSC_0793','','inherit','open','open','','dsc_0793','','','2015-08-27 07:02:30','2015-08-27 07:02:30','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0793.jpg',0,'attachment','image/jpeg',0),(3654,2,'2015-08-27 07:02:34','2015-08-27 07:02:34','','DSC_0795','','inherit','open','open','','dsc_0795','','','2015-08-27 07:02:34','2015-08-27 07:02:34','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0795.jpg',0,'attachment','image/jpeg',0),(3655,2,'2015-08-27 07:02:38','2015-08-27 07:02:38','','DSC_0805','','inherit','open','open','','dsc_0805','','','2015-08-27 07:02:38','2015-08-27 07:02:38','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0805.jpg',0,'attachment','image/jpeg',0),(3656,2,'2015-08-27 07:02:43','2015-08-27 07:02:43','','DSC_0812','','inherit','open','open','','dsc_0812','','','2015-08-27 07:02:43','2015-08-27 07:02:43','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0812.jpg',0,'attachment','image/jpeg',0),(3657,2,'2015-08-27 07:02:46','2015-08-27 07:02:46','','DSC_0819','','inherit','open','open','','dsc_0819','','','2015-08-27 07:02:46','2015-08-27 07:02:46','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0819.jpg',0,'attachment','image/jpeg',0),(3658,2,'2015-08-27 07:02:55','2015-08-27 07:02:55','','DSC_0820','','inherit','open','open','','dsc_0820','','','2015-08-27 07:02:55','2015-08-27 07:02:55','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0820.jpg',0,'attachment','image/jpeg',0),(3659,2,'2015-08-27 07:03:02','2015-08-27 07:03:02','','DSC_0821','','inherit','open','open','','dsc_0821','','','2015-08-27 07:03:02','2015-08-27 07:03:02','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0821.jpg',0,'attachment','image/jpeg',0),(3660,2,'2015-08-27 07:03:08','2015-08-27 07:03:08','','DSC_0823','','inherit','open','open','','dsc_0823','','','2015-08-27 07:03:08','2015-08-27 07:03:08','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0823.jpg',0,'attachment','image/jpeg',0),(3661,2,'2015-08-27 07:03:16','2015-08-27 07:03:16','','DSC_0824','','inherit','open','open','','dsc_0824','','','2015-08-27 07:03:16','2015-08-27 07:03:16','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0824.jpg',0,'attachment','image/jpeg',0),(3662,2,'2015-08-27 07:03:20','2015-08-27 07:03:20','','DSC_0825','','inherit','open','open','','dsc_0825','','','2015-08-27 07:03:20','2015-08-27 07:03:20','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0825.jpg',0,'attachment','image/jpeg',0),(3663,2,'2015-08-27 07:03:30','2015-08-27 07:03:30','','DSC_0826','','inherit','open','open','','dsc_0826','','','2015-08-27 07:03:30','2015-08-27 07:03:30','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0826.jpg',0,'attachment','image/jpeg',0),(3664,2,'2015-08-27 07:03:34','2015-08-27 07:03:34','','DSC_0827','','inherit','open','open','','dsc_0827','','','2015-08-27 07:03:34','2015-08-27 07:03:34','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0827.jpg',0,'attachment','image/jpeg',0),(3665,2,'2015-08-27 07:03:40','2015-08-27 07:03:40','','DSC_0828','','inherit','open','open','','dsc_0828','','','2015-08-27 07:03:40','2015-08-27 07:03:40','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0828.jpg',0,'attachment','image/jpeg',0),(3666,2,'2015-08-27 07:03:45','2015-08-27 07:03:45','','DSC_0830','','inherit','open','open','','dsc_0830','','','2015-08-27 07:03:45','2015-08-27 07:03:45','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0830.jpg',0,'attachment','image/jpeg',0),(3667,2,'2015-08-27 07:03:50','2015-08-27 07:03:50','','DSC_0832','','inherit','open','open','','dsc_0832','','','2015-08-27 07:03:50','2015-08-27 07:03:50','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0832.jpg',0,'attachment','image/jpeg',0),(3668,2,'2015-08-27 07:03:53','2015-08-27 07:03:53','','DSC_0834','','inherit','open','open','','dsc_0834','','','2015-08-27 07:03:53','2015-08-27 07:03:53','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0834.jpg',0,'attachment','image/jpeg',0),(3669,2,'2015-08-27 07:03:57','2015-08-27 07:03:57','','DSC_0835','','inherit','open','open','','dsc_0835','','','2015-08-27 07:03:57','2015-08-27 07:03:57','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0835.jpg',0,'attachment','image/jpeg',0),(3670,2,'2015-08-27 07:04:02','2015-08-27 07:04:02','','DSC_0836','','inherit','open','open','','dsc_0836','','','2015-08-27 07:04:02','2015-08-27 07:04:02','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0836.jpg',0,'attachment','image/jpeg',0),(3671,2,'2015-08-27 07:04:06','2015-08-27 07:04:06','','DSC_0839','','inherit','open','open','','dsc_0839','','','2015-08-27 07:04:06','2015-08-27 07:04:06','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0839.jpg',0,'attachment','image/jpeg',0),(3672,2,'2015-08-27 07:04:10','2015-08-27 07:04:10','','DSC_0840','','inherit','open','open','','dsc_0840','','','2015-08-27 07:04:10','2015-08-27 07:04:10','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0840.jpg',0,'attachment','image/jpeg',0),(3673,2,'2015-08-27 07:04:13','2015-08-27 07:04:13','','DSC_0848','','inherit','open','open','','dsc_0848','','','2015-08-27 07:04:13','2015-08-27 07:04:13','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0848.jpg',0,'attachment','image/jpeg',0),(3674,2,'2015-08-27 07:04:18','2015-08-27 07:04:18','','DSC_0849','','inherit','open','open','','dsc_0849','','','2015-08-27 07:04:18','2015-08-27 07:04:18','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0849.jpg',0,'attachment','image/jpeg',0),(3675,2,'2015-08-27 07:04:23','2015-08-27 07:04:23','','DSC_0850','','inherit','open','open','','dsc_0850','','','2015-08-27 07:04:23','2015-08-27 07:04:23','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0850.jpg',0,'attachment','image/jpeg',0),(3676,2,'2015-08-27 07:04:28','2015-08-27 07:04:28','','DSC_0851','','inherit','open','open','','dsc_0851','','','2015-08-27 07:04:28','2015-08-27 07:04:28','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0851.jpg',0,'attachment','image/jpeg',0),(3677,2,'2015-08-27 07:04:33','2015-08-27 07:04:33','','DSC_0852','','inherit','open','open','','dsc_0852','','','2015-08-27 07:04:33','2015-08-27 07:04:33','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0852.jpg',0,'attachment','image/jpeg',0),(3678,2,'2015-08-27 07:04:38','2015-08-27 07:04:38','','DSC_0853','','inherit','open','open','','dsc_0853','','','2015-08-27 07:04:38','2015-08-27 07:04:38','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/DSC_0853.jpg',0,'attachment','image/jpeg',0),(3679,2,'2015-08-27 07:04:50','2015-08-27 07:04:50','','Print','','inherit','open','open','','print','','','2015-08-27 07:04:50','2015-08-27 07:04:50','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/15th-Anni-Dinner-A-web.jpg',0,'attachment','image/jpeg',0),(3680,2,'2015-08-27 07:04:57','2015-08-27 07:04:57','','Print','','inherit','open','open','','print-2','','','2015-08-27 07:04:57','2015-08-27 07:04:57','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/08/15th-Anni-banner-WEB.jpg',0,'attachment','image/jpeg',0),(3681,2,'2015-08-27 07:10:47','2015-08-27 07:10:47','','MPD2015-News_S','','inherit','open','open','','mpd2015-news_s','','','2015-08-27 07:10:47','2015-08-27 07:10:47','',3568,'http://punjabyouthclub.com/wp-content/uploads/2015/08/MPD2015-News_S.jpg',0,'attachment','image/jpeg',0),(3682,2,'2015-08-31 08:36:00','2015-08-31 08:36:00','','Screenshot_2015-08-31-09-43-23[1]','','inherit','open','open','','screenshot_2015-08-31-09-43-231','','','2015-08-31 08:36:00','2015-08-31 08:36:00','',2707,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Screenshot_2015-08-31-09-43-231.jpg',0,'attachment','image/jpeg',0),(3683,2,'2015-08-31 08:47:38','2015-08-31 08:47:38','','Screenshot_2015-08-31-09-43-23[1]','','inherit','open','open','','screenshot_2015-08-31-09-43-231-2','','','2015-08-31 08:47:38','2015-08-31 08:47:38','',2707,'http://punjabyouthclub.com/wp-content/uploads/2015/07/Screenshot_2015-08-31-09-43-2311.jpg',0,'attachment','image/jpeg',0),(3688,2,'2015-09-21 06:59:15','2015-09-21 06:59:15','','Auto Draft','','publish','closed','closed','','auto-draft-23','','','2016-09-25 14:16:58','2016-09-25 14:16:58','',0,'http://punjabyouthclub.com/?post_type=nectar_slider&#038;p=3688',0,'nectar_slider','',0),(3690,2,'2015-09-21 07:12:15','2015-09-21 07:12:15','','KGM_Banner 72x120 inch-2015','','inherit','open','open','','kgm_banner-72x120-inch-2015','','','2015-09-21 07:12:15','2015-09-21 07:12:15','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/09/KGM_Banner-72x120-inch-2015.jpg',0,'attachment','image/jpeg',0),(3691,2,'2015-09-21 07:12:20','2015-09-21 07:12:20','','KGM_Banner_2015_PYC-web','','inherit','open','open','','kgm_banner_2015_pyc-web','','','2015-09-21 07:12:20','2015-09-21 07:12:20','',0,'http://punjabyouthclub.com/wp-content/uploads/2015/09/KGM_Banner_2015_PYC-web.jpg',0,'attachment','image/jpeg',0),(3692,2,'2015-09-21 07:15:11','2015-09-21 07:15:11','','K.G.M Tournament 2015','','inherit','open','open','','kgm-hockey_-2015-pb_web','','','2015-09-21 07:19:10','2015-09-21 07:19:10','',2697,'http://punjabyouthclub.com/wp-content/uploads/2015/07/KGM-hockey_-2015-PB_web.jpg',0,'attachment','image/jpeg',0),(3693,2,'2015-09-21 07:17:34','2015-09-21 07:17:34','[vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3692,3067,3066,3065,3064,3063\" display_title_caption=\"true\" layout=\"3\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"400x600\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3394,3389,3396,3393,3390,3392,3391,3395\" display_title_caption=\"true\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"400x600\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_gallery type=\"image_grid\" interval=\"3\" images=\"3388,3397,3398\" display_title_caption=\"true\" layout=\"4\" gallery_style=\"1\" onclick=\"link_image\" custom_links_target=\"_self\" img_size=\"600x500\"][/vc_column][/vc_row]','Activities','','inherit','open','open','','2697-revision-v1','','','2015-09-21 07:17:34','2015-09-21 07:17:34','',2697,'http://punjabyouthclub.com/index.php/2015/09/21/2697-revision-v1/',0,'revision','',0),(3694,2,'2015-09-21 07:25:47','2015-09-21 07:25:47','[vc_row][vc_column width=\"1/1\"][vc_text_separator title=\"PYC history in form of event photos from 2000 until 2015\" title_align=\"separator_align_center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_video link=\"https://www.youtube.com/watch?v=QajQak8uOgU\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]The Punjab Youth Club was established in July 2000. In such a short period of time the club has taken big steps in helping Punjabis involved in various charitable, social reforms and culture/language development.\r\n\r\nThe brief summary of the Club’s history is as following:\r\n\r\nThere was a small print news published in the Punjabi daily Ajit (dated 27/04/2000). It was titled “When Satpal’s daughter cry for her Daddy… At the time of publication of this news this small girl was on the hospital bed unaware of what was happening in the world. The reason for her conditions was the untimely death of her father. He was the sole bread earner of the family. His innocent daughter could not bare the shock and went into Coma. Her world is hanging in a delicate balance of life and death ever since. The bereaved family was finding it hard to fund her costly treatment. The daily Ajit intervened at this point and published an appeal for financial help. The appeal asked donors to come forward to help the family of a small time painter Satpal who would otherwise stop the treatment and let their little girl slip away to hands of awaiting cruel destiny.\r\n\r\nThe appeal was read in Hong Kong and it moved the hearts of Punjabis living here. The first person to come forward was S. Jasmel Singh (Pappu) and after him Master Jagtar Singh and Raja Dhillon along with current members of PYC got together to collect money from the generous Punjabi community of Hong Kong. One hundred thousand rupees were collected and sent to Satpal\'s family. It was decided to send the money under one organization, which would be called PUNJAB YOUTH CLUB. All the members decided to continue with acts like these to serve mankind. It was also decided to diversify the activities of the Club. The club collaborated with Khalsa Diwan to help Gujrat earth quake victims. Apart from that PYC also sponsored 24 orphan children with education scholarship for year 2000-2001. The club also collected donations for Hospital to be built in Badhni Kalan village in Punjab.\r\n\r\nThe club took effective steps to promote our mother tongue and PUNJABI Culture. A programme called MAHEK PUNJAB DI was organized. It was first of its kind experience for local Punjabis who had not experienced any thing like this for decades. Renowned Punjabi singer DURGA RANGILA entertained the local Punjabis. Various other cultural dances included Bhangra and Giddha were also performed by local artists.\r\n\r\nAnother important step taken by PYC was to organize yearly Turban Tying event which takes place on the anniversary of Great Martyr Saheed Udham Singh. These kinds of activities are meant to pass our great heritage and culture to the future generations. Continuing the same trend PYC organized a great show “MAHEK PUNJAB DI 2002” in which we presented the greatest Artist, Singer, Actor and Writer from Punjab Mr. GURDAS MAAN.\r\n\r\nIn October 2002 PYC also helped a person living near Jagraon (Ludhiana) by paying for all his hospital expenses for operation which he wasn’t able to clear himself .\r\n\r\nDue to the sudden death of Jagroop Singh in earlier this year, we supported his brother on expenses to come to Hong Kong from India and to handle the cremation and take his ashes back to India.\r\n\r\nWe sincerely hope that the Punjabi Community appreciates our effort and will support us in all our future events.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][/vc_column][/vc_row]','History English','','inherit','open','open','','2662-revision-v1','','','2015-09-21 07:25:47','2015-09-21 07:25:47','',2662,'http://punjabyouthclub.com/index.php/2015/09/21/2662-revision-v1/',0,'revision','',0),(3695,2,'2015-09-21 07:31:34','2015-09-21 07:31:34','','About PYC','','publish','open','open','','3695','','','2015-09-21 07:33:05','2015-09-21 07:33:05','',0,'http://punjabyouthclub.com/?p=3695',2,'nav_menu_item','',0),(3696,2,'2015-09-21 07:35:54','2015-09-21 07:35:54','[vc_row][vc_column width=\"1/1\"][vc_column_text]A video contains history of Punjab Youth Club (Hong Kong) in form of event photos from 2000 until 2015.\r\nStarting from\r\nSending Money to a needy family in India in 2000,\r\nMahek Punjab Di 2001- Durga Rangila\r\nMahek Punjab Di 2002- Gurdas Maan\r\nMahek Punjabi Di 2003-Jassi Jasbir and Chacha Raunki\r\nMahek Punjab Di 2005- Manmohan Waris &amp; Kamal Heer\r\nMahek Punjab Di 2007- Bhagwant Mann\r\nDastar Mukabla 2001\r\nDastar Mukabla 2002\r\nDastar Muikabla 2003\r\nKavi Darbar 2007\r\nKomagata Maru Tournament 2010\r\nKomagata Maru Tournament 2011\r\nKomagata Maru Tournament 2012\r\nKomagata Maru Tournament 2013\r\nKomagata Maru Tournament 2014\r\nPunjab Youth Club in Media News\r\nPYC message[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_video link=\"https://www.youtube.com/watch?v=QajQak8uOgU\"][/vc_column][/vc_row]','PYC history 2000-2015','','publish','open','open','','3696','','','2015-09-21 07:37:09','2015-09-21 07:37:09','',0,'http://punjabyouthclub.com/?p=3696',0,'post','',0),(3697,2,'2015-09-21 07:35:54','2015-09-21 07:35:54','[vc_row][vc_column width=\"1/1\"][vc_column_text]A video contains history of Punjab Youth Club (Hong Kong) in form of event photos from 2000 until 2015.\r\nStarting from\r\nSending Money to a needy family in India in 2000,\r\nMahek Punjab Di 2001- Durga Rangila\r\nMahek Punjab Di 2002- Gurdas Maan\r\nMahek Punjabi Di 2003-Jassi Jasbir and Chacha Raunki\r\nMahek Punjab Di 2005- Manmohan Waris &amp; Kamal Heer\r\nMahek Punjab Di 2007- Bhagwant Mann\r\nDastar Mukabla 2001\r\nDastar Mukabla 2002\r\nDastar Muikabla 2003\r\nKavi Darbar 2007\r\nKomagata Maru Tournament 2010\r\nKomagata Maru Tournament 2011\r\nKomagata Maru Tournament 2012\r\nKomagata Maru Tournament 2013\r\nKomagata Maru Tournament 2014\r\nPunjab Youth Club in Media News\r\nPYC message[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_video link=\"https://www.youtube.com/watch?v=QajQak8uOgU\"][/vc_column][/vc_row]','','','inherit','open','open','','3696-revision-v1','','','2015-09-21 07:35:54','2015-09-21 07:35:54','',3696,'http://punjabyouthclub.com/index.php/2015/09/21/3696-revision-v1/',0,'revision','',0),(3698,2,'2015-09-21 07:36:35','2015-09-21 07:36:35','[vc_row][vc_column width=\"1/1\"][vc_column_text]A video contains history of Punjab Youth Club (Hong Kong) in form of event photos from 2000 until 2015.\r\nStarting from\r\nSending Money to a needy family in India in 2000,\r\nMahek Punjab Di 2001- Durga Rangila\r\nMahek Punjab Di 2002- Gurdas Maan\r\nMahek Punjabi Di 2003-Jassi Jasbir and Chacha Raunki\r\nMahek Punjab Di 2005- Manmohan Waris &amp; Kamal Heer\r\nMahek Punjab Di 2007- Bhagwant Mann\r\nDastar Mukabla 2001\r\nDastar Mukabla 2002\r\nDastar Muikabla 2003\r\nKavi Darbar 2007\r\nKomagata Maru Tournament 2010\r\nKomagata Maru Tournament 2011\r\nKomagata Maru Tournament 2012\r\nKomagata Maru Tournament 2013\r\nKomagata Maru Tournament 2014\r\nPunjab Youth Club in Media News\r\nPYC message[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_video link=\"https://www.youtube.com/watch?v=QajQak8uOgU\"][/vc_column][/vc_row]','PYC history 2000-2015','','inherit','open','open','','3696-revision-v1','','','2015-09-21 07:36:35','2015-09-21 07:36:35','',3696,'http://punjabyouthclub.com/index.php/2015/09/21/3696-revision-v1/',0,'revision','',0),(3701,2,'2016-08-23 15:27:16','2016-08-23 15:27:16','','test-visual composer','','publish','closed','closed','','test-visual-composer','','','2016-08-23 15:27:16','2016-08-23 15:27:16','',0,'http://punjabyouthclub.com/?page_id=3701',0,'page','',0),(3702,2,'2016-08-23 15:27:16','2016-08-23 15:27:16','','test-visual composer','','inherit','closed','closed','','3701-revision-v1','','','2016-08-23 15:27:16','2016-08-23 15:27:16','',3701,'http://punjabyouthclub.com/index.php/2016/08/23/3701-revision-v1/',0,'revision','',0),(3706,2,'2016-09-21 15:11:29','2016-09-21 15:11:29','[vc_row type=\"full_width_background\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][nectar_slider location=\"Home\" flexible_slider_height=\"true\" full_width=\"true\" arrow_navigation=\"true\" overall_style=\"classic\" bullet_navigation=\"true\" desktop_swipe=\"true\" parallax=\"true\" loop=\"true\" slider_transition=\"slide\" button_sizing=\"regular\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_color=\"#ffffff\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" overlay_strength=\"0.3\"][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n 	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n 	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n 	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n 	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\r\n 	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\nUpcoming 10th October <a href=\"https://www.facebook.com/events/1141735102568536/\">\"Komagata Maru Memorial Youth Hockey Tournament \"</a>[/text-with-icon][/vc_column][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club who started Bhangra in Hong Kong in year 2000 at 300th Vaisakhi celebrations. Bhangra credit goes to Mr. Bhupinder Pal Singh Mangat.\r\n\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\" overlay_strength=\"0.3\"][vc_column enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" project_style=\"1\" load_in_animation=\"none\" projects_per_page=\"4\"][/vc_column][/vc_row][vc_row type=\"in_container\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\"][/vc_column][/vc_row][vc_row type=\"in_container\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][vc_gallery type=\"image_grid\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section type=\"full_width_content\" vertically_center_columns=\"true\" image_url=\"2265\" bg_pos=\"Center Center\" parallax_bg=\"true\" background_color=\"#101012\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\"][vc_column centered_text=\"true\" column_padding=\"padding-5-percent\" column_padding_position=\"all\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" background_hover_color_opacity=\"1\" font_color=\"#ffffff\" width=\"1/1\"][testimonial_slider style=\"default\" autorotate=\"7000\"][testimonial name=\"Mukhtar Singh, President KNS Sports Club\" quote=\"As years moved on, it became apparent that Punjab Youth Club is an important part of Hong Kong -Punjabi Society. The pride that we all take is their experience with voluntary endeavor &amp; the friendship that we have developed with them. Wishing Punjab Youth Club all the best &amp; keep up the good work.\" id=\"t1\" title=\"Testimonial\" tab_id=\"1474470380325-10\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\" tab_id=\"1474470380484-8\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\" tab_id=\"1474470380602-10\"][/testimonial][/testimonial_slider][clients columns=\"6\" fade_in_animation=\"true\" carousel=\"true\"][client image=\"3075\" title=\"Client\" id=\"1395635698-1-67\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\" tab_id=\"1474470380736-8\"] Click the edit button to add your testimonial. [/client][client image=\"3085\" title=\"Client\" id=\"1395636117002-0-4\" name=\"Brar Group\" tab_id=\"1474470380851-3\"][/client][client image=\"3077\" title=\"Client\" id=\"1395635965058-0-2\" name=\"Toronto Motel Hong Kong\" tab_id=\"1474470380973-4\"][/client][client image=\"3074\" title=\"Client\" id=\"1395635698-2-45\" name=\"MultiLines Intl. Co. Ltd.\" tab_id=\"1474470381091-7\"] Click the edit button to add your testimonial. [/client][client image=\"3081\" title=\"Client\" id=\"1395636055291-0-6\" name=\"Buttar &amp; Associates\" tab_id=\"1474470381201-5\"][/client][client image=\"3072\" title=\"Client\" id=\"1395635975628-0-8\" name=\"Dr. Fix It All\" tab_id=\"1474470381328-1\"][/client][client image=\"3071\" title=\"Client\" id=\"1436665265751-0-7\" name=\"Dime Air\" tab_id=\"1474470381439-3\"][/client][client image=\"3082\" title=\"Client\" id=\"1436665318808-0-4\" name=\"Dhillon Hotels\" tab_id=\"1474470381563-3\"][/client][client image=\"3076\" title=\"Client\" id=\"1436665294182-0-6\" name=\"Satrang Entertainers\" tab_id=\"1474470381695-8\"][/client][client image=\"3083\" title=\"Client\" id=\"1436665533508-0-1\" name=\"Brar Group\" tab_id=\"1474470381812-0\"][/client][client image=\"3078\" title=\"Client\" id=\"1436665572198-0-8\" name=\"TS Security\" tab_id=\"1474470381940-5\"][/client][client image=\"3073\" title=\"Client\" id=\"1436665626816-0-0\" name=\"Grewal Commercial Services\" tab_id=\"1474470382070-7\"][/client][/clients][/vc_column][/full_width_section][full_width_section type=\"full_width_content\" background_color=\"#171920\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\"][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#20cfef\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#fe4641\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#6b58cd\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" font_color=\"#ffffff\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial</h3>\r\nIt gives me great pleasure to join the 15th Anniversary celebrations of Punjab Youth Club (HK). As you know, Punjabi culture is one of the richest cultures of the world. During the last century, a lot of Punjabis settled overseas but the beats of Bhangra, steps of Gidda, Punjabi poetry and festivals, all these aspects of their rich culture were missing, far from their homeland. During the last 15 years the Punjab Youth Club has filled this vacuum and has never left any stone unturned in promoting the Punjabi culture, sports and religious activities in Hong Kong.\r\n\r\nI believe Punjab Youth Club would continue to serve the Punjabi community in Hong Kong in the years to come and I wish Punjab Youth Club every success in the future.\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr.Gurdev Singh Galib \" image=\"steadysets-icon-diamond\"]\r\n<h6>Chief Officer\r\nCorrectional Services Dept, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','closed','closed','','2744-revision-v1','','','2016-09-21 15:11:29','2016-09-21 15:11:29','',2744,'http://punjabyouthclub.com/?p=3706',0,'revision','',0),(3707,2,'2016-09-25 13:18:49','2016-09-25 13:18:49','','Auto Draft','','publish','closed','closed','','auto-draft','','','2016-09-25 13:29:26','2016-09-25 13:29:26','',0,'http://punjabyouthclub.com/?post_type=nectar_slider&#038;p=3707',0,'nectar_slider','',0),(3708,2,'2016-09-25 13:15:37','2016-09-25 13:15:37','','kgm_banner_2015_pyc-web_cg','','inherit','open','closed','','kgm_banner_2015_pyc-web_cg','','','2016-09-25 13:15:37','2016-09-25 13:15:37','',0,'http://punjabyouthclub.com/wp-content/uploads/2016/09/KGM_Banner_2015_PYC-web_CG.jpg',0,'attachment','image/jpeg',0),(3709,2,'2016-09-25 13:17:02','2016-09-25 13:17:02','','kgm_banner_2015_pyc-web_cg','','inherit','open','closed','','kgm_banner_2015_pyc-web_cg-2','','','2016-09-25 13:17:02','2016-09-25 13:17:02','',0,'http://punjabyouthclub.com/wp-content/uploads/2016/09/KGM_Banner_2015_PYC-web_CG-1.jpg',0,'attachment','image/jpeg',0),(3710,2,'2016-09-25 14:16:50','2016-09-25 14:16:50','','kgm_banner-72x120-inch-2016_web','','inherit','open','closed','','kgm_banner-72x120-inch-2016_web','','','2016-09-25 14:16:50','2016-09-25 14:16:50','',0,'http://punjabyouthclub.com/wp-content/uploads/2016/09/KGM_Banner-72x120-inch-2016_Web.jpg',0,'attachment','image/jpeg',0),(3711,2,'2016-09-25 14:21:41','2016-09-25 14:21:41','[vc_row type=\"full_width_background\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][nectar_slider location=\"Home\" flexible_slider_height=\"true\" full_width=\"true\" arrow_navigation=\"true\" overall_style=\"classic\" bullet_navigation=\"true\" desktop_swipe=\"true\" parallax=\"true\" loop=\"true\" slider_transition=\"slide\" button_sizing=\"regular\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_color=\"#ffffff\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" overlay_strength=\"0.3\"][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n 	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n 	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n 	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n 	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\r\n 	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n\r\nKomagata Maru Memorial Youth Hockey Tournament\r\n\r\n1st KGM Memorial Youth Hockey Tournament 2010\r\n\r\n2nd KGM Memorial Youth Hockey Tournament 2011\r\n\r\n3rd KGM Memorial Youth Hockey Tournament 2012\r\n\r\n4th KGM Memorial Youth Hockey Tournament 2013\r\n\r\n5thKGM Memorial Youth Hockey Tournament 20114\r\n\r\n6th KGM Memorial Youth Hockey Tournament 2015\r\n\r\n7th <a href=\"https://www.facebook.com/events/1141735102568536/\">\"Komagata Maru Memorial Youth Hockey Tournament \"</a> on 10th October 2016[/text-with-icon][/vc_column][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club who started Bhangra in Hong Kong in year 2000 at 300th Vaisakhi celebrations. Bhangra credit goes to Mr. Bhupinder Pal Singh Mangat.\r\n\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\" overlay_strength=\"0.3\"][vc_column enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" project_style=\"1\" load_in_animation=\"none\" projects_per_page=\"4\"][/vc_column][/vc_row][vc_row type=\"in_container\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\"][/vc_column][/vc_row][vc_row type=\"in_container\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][vc_gallery type=\"image_grid\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section type=\"full_width_content\" vertically_center_columns=\"true\" image_url=\"2265\" bg_pos=\"Center Center\" parallax_bg=\"true\" background_color=\"#101012\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\"][vc_column centered_text=\"true\" column_padding=\"padding-5-percent\" column_padding_position=\"all\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" background_hover_color_opacity=\"1\" font_color=\"#ffffff\" width=\"1/1\"][testimonial_slider style=\"default\" autorotate=\"7000\"][testimonial name=\"Mukhtar Singh, President KNS Sports Club\" quote=\"As years moved on, it became apparent that Punjab Youth Club is an important part of Hong Kong -Punjabi Society. The pride that we all take is their experience with voluntary endeavor &amp; the friendship that we have developed with them. Wishing Punjab Youth Club all the best &amp; keep up the good work.\" id=\"t1\" title=\"Testimonial\" tab_id=\"1474470380325-10\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\" tab_id=\"1474470380484-8\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\" tab_id=\"1474470380602-10\"][/testimonial][/testimonial_slider][clients columns=\"6\" fade_in_animation=\"true\" carousel=\"true\"][client image=\"3075\" title=\"Client\" id=\"1395635698-1-67\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\" tab_id=\"1474470380736-8\"] Click the edit button to add your testimonial. [/client][client image=\"3085\" title=\"Client\" id=\"1395636117002-0-4\" name=\"Brar Group\" tab_id=\"1474470380851-3\"][/client][client image=\"3077\" title=\"Client\" id=\"1395635965058-0-2\" name=\"Toronto Motel Hong Kong\" tab_id=\"1474470380973-4\"][/client][client image=\"3074\" title=\"Client\" id=\"1395635698-2-45\" name=\"MultiLines Intl. Co. Ltd.\" tab_id=\"1474470381091-7\"] Click the edit button to add your testimonial. [/client][client image=\"3081\" title=\"Client\" id=\"1395636055291-0-6\" name=\"Buttar &amp; Associates\" tab_id=\"1474470381201-5\"][/client][client image=\"3072\" title=\"Client\" id=\"1395635975628-0-8\" name=\"Dr. Fix It All\" tab_id=\"1474470381328-1\"][/client][client image=\"3071\" title=\"Client\" id=\"1436665265751-0-7\" name=\"Dime Air\" tab_id=\"1474470381439-3\"][/client][client image=\"3082\" title=\"Client\" id=\"1436665318808-0-4\" name=\"Dhillon Hotels\" tab_id=\"1474470381563-3\"][/client][client image=\"3076\" title=\"Client\" id=\"1436665294182-0-6\" name=\"Satrang Entertainers\" tab_id=\"1474470381695-8\"][/client][client image=\"3083\" title=\"Client\" id=\"1436665533508-0-1\" name=\"Brar Group\" tab_id=\"1474470381812-0\"][/client][client image=\"3078\" title=\"Client\" id=\"1436665572198-0-8\" name=\"TS Security\" tab_id=\"1474470381940-5\"][/client][client image=\"3073\" title=\"Client\" id=\"1436665626816-0-0\" name=\"Grewal Commercial Services\" tab_id=\"1474470382070-7\"][/client][/clients][/vc_column][/full_width_section][full_width_section type=\"full_width_content\" background_color=\"#171920\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\"][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#20cfef\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#fe4641\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#6b58cd\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" font_color=\"#ffffff\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial</h3>\r\nIt gives me great pleasure to join the 15th Anniversary celebrations of Punjab Youth Club (HK). As you know, Punjabi culture is one of the richest cultures of the world. During the last century, a lot of Punjabis settled overseas but the beats of Bhangra, steps of Gidda, Punjabi poetry and festivals, all these aspects of their rich culture were missing, far from their homeland. During the last 15 years the Punjab Youth Club has filled this vacuum and has never left any stone unturned in promoting the Punjabi culture, sports and religious activities in Hong Kong.\r\n\r\nI believe Punjab Youth Club would continue to serve the Punjabi community in Hong Kong in the years to come and I wish Punjab Youth Club every success in the future.\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr.Gurdev Singh Galib \" image=\"steadysets-icon-diamond\"]\r\n<h6>Chief Officer\r\nCorrectional Services Dept, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','closed','closed','','2744-revision-v1','','','2016-09-25 14:21:41','2016-09-25 14:21:41','',2744,'http://punjabyouthclub.com/?p=3711',0,'revision','',0),(3712,2,'2016-09-25 14:23:13','2016-09-25 14:23:13','[vc_row type=\"full_width_background\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][nectar_slider location=\"Home\" flexible_slider_height=\"true\" full_width=\"true\" arrow_navigation=\"true\" overall_style=\"classic\" bullet_navigation=\"true\" desktop_swipe=\"true\" parallax=\"true\" loop=\"true\" slider_transition=\"slide\" button_sizing=\"regular\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_color=\"#ffffff\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" overlay_strength=\"0.3\"][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n 	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n 	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n 	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n 	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\r\n 	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events. i.e. Komagata Maru Memorial Youth Hockey Tournament\r\n<ul>\r\n 	<li>1st KGM Memorial Youth Hockey Tournament 2010</li>\r\n 	<li>2nd KGM Memorial Youth Hockey Tournament 2011</li>\r\n 	<li>3rd KGM Memorial Youth Hockey Tournament 2012</li>\r\n 	<li>4th KGM Memorial Youth Hockey Tournament 2013</li>\r\n 	<li>5thKGM Memorial Youth Hockey Tournament 20114</li>\r\n 	<li>6th KGM Memorial Youth Hockey Tournament 2015</li>\r\n 	<li>7th <a href=\"https://www.facebook.com/events/1141735102568536/\">\"Komagata Maru Memorial Youth Hockey Tournament \"</a> on 10th October 2016</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club who started Bhangra in Hong Kong in year 2000 at 300th Vaisakhi celebrations. Bhangra credit goes to Mr. Bhupinder Pal Singh Mangat.\r\n\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\" overlay_strength=\"0.3\"][vc_column enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" project_style=\"1\" load_in_animation=\"none\" projects_per_page=\"4\"][/vc_column][/vc_row][vc_row type=\"in_container\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\"][/vc_column][/vc_row][vc_row type=\"in_container\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][vc_gallery type=\"image_grid\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section type=\"full_width_content\" vertically_center_columns=\"true\" image_url=\"2265\" bg_pos=\"Center Center\" parallax_bg=\"true\" background_color=\"#101012\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\"][vc_column centered_text=\"true\" column_padding=\"padding-5-percent\" column_padding_position=\"all\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" background_hover_color_opacity=\"1\" font_color=\"#ffffff\" width=\"1/1\"][testimonial_slider style=\"default\" autorotate=\"7000\"][testimonial name=\"Mukhtar Singh, President KNS Sports Club\" quote=\"As years moved on, it became apparent that Punjab Youth Club is an important part of Hong Kong -Punjabi Society. The pride that we all take is their experience with voluntary endeavor &amp; the friendship that we have developed with them. Wishing Punjab Youth Club all the best &amp; keep up the good work.\" id=\"t1\" title=\"Testimonial\" tab_id=\"1474470380325-10\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\" tab_id=\"1474470380484-8\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\" tab_id=\"1474470380602-10\"][/testimonial][/testimonial_slider][clients columns=\"6\" fade_in_animation=\"true\" carousel=\"true\"][client image=\"3075\" title=\"Client\" id=\"1395635698-1-67\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\" tab_id=\"1474470380736-8\"] Click the edit button to add your testimonial. [/client][client image=\"3085\" title=\"Client\" id=\"1395636117002-0-4\" name=\"Brar Group\" tab_id=\"1474470380851-3\"][/client][client image=\"3077\" title=\"Client\" id=\"1395635965058-0-2\" name=\"Toronto Motel Hong Kong\" tab_id=\"1474470380973-4\"][/client][client image=\"3074\" title=\"Client\" id=\"1395635698-2-45\" name=\"MultiLines Intl. Co. Ltd.\" tab_id=\"1474470381091-7\"] Click the edit button to add your testimonial. [/client][client image=\"3081\" title=\"Client\" id=\"1395636055291-0-6\" name=\"Buttar &amp; Associates\" tab_id=\"1474470381201-5\"][/client][client image=\"3072\" title=\"Client\" id=\"1395635975628-0-8\" name=\"Dr. Fix It All\" tab_id=\"1474470381328-1\"][/client][client image=\"3071\" title=\"Client\" id=\"1436665265751-0-7\" name=\"Dime Air\" tab_id=\"1474470381439-3\"][/client][client image=\"3082\" title=\"Client\" id=\"1436665318808-0-4\" name=\"Dhillon Hotels\" tab_id=\"1474470381563-3\"][/client][client image=\"3076\" title=\"Client\" id=\"1436665294182-0-6\" name=\"Satrang Entertainers\" tab_id=\"1474470381695-8\"][/client][client image=\"3083\" title=\"Client\" id=\"1436665533508-0-1\" name=\"Brar Group\" tab_id=\"1474470381812-0\"][/client][client image=\"3078\" title=\"Client\" id=\"1436665572198-0-8\" name=\"TS Security\" tab_id=\"1474470381940-5\"][/client][client image=\"3073\" title=\"Client\" id=\"1436665626816-0-0\" name=\"Grewal Commercial Services\" tab_id=\"1474470382070-7\"][/client][/clients][/vc_column][/full_width_section][full_width_section type=\"full_width_content\" background_color=\"#171920\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\"][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#20cfef\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#fe4641\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#6b58cd\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" font_color=\"#ffffff\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial</h3>\r\nIt gives me great pleasure to join the 15th Anniversary celebrations of Punjab Youth Club (HK). As you know, Punjabi culture is one of the richest cultures of the world. During the last century, a lot of Punjabis settled overseas but the beats of Bhangra, steps of Gidda, Punjabi poetry and festivals, all these aspects of their rich culture were missing, far from their homeland. During the last 15 years the Punjab Youth Club has filled this vacuum and has never left any stone unturned in promoting the Punjabi culture, sports and religious activities in Hong Kong.\r\n\r\nI believe Punjab Youth Club would continue to serve the Punjabi community in Hong Kong in the years to come and I wish Punjab Youth Club every success in the future.\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr.Gurdev Singh Galib \" image=\"steadysets-icon-diamond\"]\r\n<h6>Chief Officer\r\nCorrectional Services Dept, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','closed','closed','','2744-revision-v1','','','2016-09-25 14:23:13','2016-09-25 14:23:13','',2744,'http://punjabyouthclub.com/?p=3712',0,'revision','',0),(3713,2,'2016-09-25 14:24:48','2016-09-25 14:24:48','[vc_row type=\"full_width_background\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][nectar_slider location=\"Home\" flexible_slider_height=\"true\" full_width=\"true\" arrow_navigation=\"true\" overall_style=\"classic\" bullet_navigation=\"true\" desktop_swipe=\"true\" parallax=\"true\" loop=\"true\" slider_transition=\"slide\" button_sizing=\"regular\" autorotate=\"5500\" min_slider_height=\"125\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_color=\"#f4f0b2\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][divider line_type=\"No Line\" custom_height=\"5\"][divider line_type=\"No Line\" custom_height=\"5\"][/vc_column][/vc_row][vc_row type=\"full_width_background\" bg_color=\"#ffffff\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"120\" bottom_padding=\"60\" overlay_strength=\"0.3\"][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"0\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nHong Kong\'s First Punjabi Club to start Punjabi Cultural Shows in Hong Kong.\r\n<ul>\r\n 	<li>Mahek Punjab Di  2001 - Durga Rangila</li>\r\n 	<li>Mahek Punjab Di 2002 - Gurdas Maan</li>\r\n 	<li>Mahek Punjab Di 2003 - Jasbir Jassi &amp; Chacha Ronki Ram</li>\r\n 	<li>Mahek Punjab Di 2005 - Manmohan Waris &amp; Kamal Heer</li>\r\n 	<li>Mahek Punjab Di 2007 - Bhagwant Mann</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"200\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nSuccessful organizer of sports events and always support other organization in their sports events.\r\n<ul>\r\n 	<li>1st KGM Memorial Youth Hockey Tournament 2010</li>\r\n 	<li>2nd KGM Memorial Youth Hockey Tournament 2011</li>\r\n 	<li>3rd KGM Memorial Youth Hockey Tournament 2012</li>\r\n 	<li>4th KGM Memorial Youth Hockey Tournament 2013</li>\r\n 	<li>5thKGM Memorial Youth Hockey Tournament 20114</li>\r\n 	<li>6th KGM Memorial Youth Hockey Tournament 2015</li>\r\n 	<li>7th <a href=\"https://www.facebook.com/events/1141735102568536/\">\"Komagata Maru Memorial Youth Hockey Tournament \"</a> on 10th October 2016</li>\r\n</ul>\r\n[/text-with-icon][/vc_column][vc_column enable_animation=\"true\" animation=\"fade-in\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\" delay=\"400\"][text-with-icon icon_type=\"font_icon\" icon=\"icon-star\" color=\"Accent-Color\"]\r\n<h4>Punjab Youth Club (HK)</h4>\r\nFirst Punjabi Club who started Bhangra in Hong Kong in year 2000 at 300th Vaisakhi celebrations. Bhangra credit goes to Mr. Bhupinder Pal Singh Mangat.\r\n\r\nFirst Punjabi Club in Hong Kong to start \"Dastar Competition\" in 2001 to encourage Youth to keep in touch with our rich culture.[/text-with-icon][/vc_column][/vc_row][vc_row type=\"full_width_content\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" top_padding=\"0\" bottom_padding=\"0\" overlay_strength=\"0.3\"][vc_column enable_animation=\"true\" animation=\"grow-in\" centered_text=\"true\" column_padding=\"padding-1-percent\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][nectar_portfolio layout=\"fullwidth\" constrain_max_cols=\"true\" category=\"all\" project_style=\"1\" load_in_animation=\"none\" projects_per_page=\"4\"][/vc_column][/vc_row][vc_row type=\"in_container\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][vc_text_separator title=\"Stay Away from DRUGS\"][/vc_column][/vc_row][vc_row type=\"in_container\" scene_position=\"center\" text_color=\"dark\" text_align=\"left\" overlay_strength=\"0.3\"][vc_column column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/1\"][vc_gallery type=\"image_grid\" images=\"2895,2893,2869,2872\" layout=\"4\" gallery_style=\"3\" img_size=\"1200x800\"][/vc_column][/vc_row][full_width_section type=\"full_width_content\" vertically_center_columns=\"true\" image_url=\"2265\" bg_pos=\"Center Center\" parallax_bg=\"true\" background_color=\"#101012\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\"][vc_column centered_text=\"true\" column_padding=\"padding-5-percent\" column_padding_position=\"all\" background_color=\"#1c202b\" background_color_opacity=\"0.5\" background_hover_color_opacity=\"1\" font_color=\"#ffffff\" width=\"1/1\"][testimonial_slider style=\"default\" autorotate=\"7000\"][testimonial name=\"Mukhtar Singh, President KNS Sports Club\" quote=\"As years moved on, it became apparent that Punjab Youth Club is an important part of Hong Kong -Punjabi Society. The pride that we all take is their experience with voluntary endeavor &amp; the friendship that we have developed with them. Wishing Punjab Youth Club all the best &amp; keep up the good work.\" id=\"t1\" title=\"Testimonial\" tab_id=\"1474470380325-10\"][/testimonial][testimonial name=\"Unknown , Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t2\" title=\"Testimonial\" tab_id=\"1474470380484-8\"][/testimonial][testimonial name=\"Unknown, Hong Kong\" quote=\"To be updated, Awaiting well wishers to write something about us. \" id=\"t3\" title=\"Testimonial\" tab_id=\"1474470380602-10\"][/testimonial][/testimonial_slider][clients columns=\"6\" fade_in_animation=\"true\" carousel=\"true\"][client image=\"3075\" title=\"Client\" id=\"1395635698-1-67\" name=\"Punjabi Chetna\" url=\"http://www.punjabichetna.com\" tab_id=\"1474470380736-8\"] Click the edit button to add your testimonial. [/client][client image=\"3085\" title=\"Client\" id=\"1395636117002-0-4\" name=\"Brar Group\" tab_id=\"1474470380851-3\"][/client][client image=\"3077\" title=\"Client\" id=\"1395635965058-0-2\" name=\"Toronto Motel Hong Kong\" tab_id=\"1474470380973-4\"][/client][client image=\"3074\" title=\"Client\" id=\"1395635698-2-45\" name=\"MultiLines Intl. Co. Ltd.\" tab_id=\"1474470381091-7\"] Click the edit button to add your testimonial. [/client][client image=\"3081\" title=\"Client\" id=\"1395636055291-0-6\" name=\"Buttar &amp; Associates\" tab_id=\"1474470381201-5\"][/client][client image=\"3072\" title=\"Client\" id=\"1395635975628-0-8\" name=\"Dr. Fix It All\" tab_id=\"1474470381328-1\"][/client][client image=\"3071\" title=\"Client\" id=\"1436665265751-0-7\" name=\"Dime Air\" tab_id=\"1474470381439-3\"][/client][client image=\"3082\" title=\"Client\" id=\"1436665318808-0-4\" name=\"Dhillon Hotels\" tab_id=\"1474470381563-3\"][/client][client image=\"3076\" title=\"Client\" id=\"1436665294182-0-6\" name=\"Satrang Entertainers\" tab_id=\"1474470381695-8\"][/client][client image=\"3083\" title=\"Client\" id=\"1436665533508-0-1\" name=\"Brar Group\" tab_id=\"1474470381812-0\"][/client][client image=\"3078\" title=\"Client\" id=\"1436665572198-0-8\" name=\"TS Security\" tab_id=\"1474470381940-5\"][/client][client image=\"3073\" title=\"Client\" id=\"1436665626816-0-0\" name=\"Grewal Commercial Services\" tab_id=\"1474470382070-7\"][/client][/clients][/vc_column][/full_width_section][full_width_section type=\"full_width_content\" background_color=\"#171920\" text_color=\"light\" top_padding=\"0\" bottom_padding=\"0\"][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#20cfef\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nI convey my sincere good wishes and blessings to the Punjab Youth Club which has been instrumental in promoting the Punjabi culture and language among the Punjabi youths of Hong Kong.\r\nSince their inception in 2000, the Punjab Youth Club had undertaken numerous charitable vents, organised cultural programmes and helped the needy, to name a few of their work. These have been well-received by the local community. Not forgetting the sporting side of life, the Punjab Youth Club organises each year the Komagata Maru Memorial Youth Hockey Tournament. The tournament is well patronised not only by the Punjabi youths but also those from other communities and background.\r\nI extend my best regards to all those who worked so hard over the years to make the Punjab Youth Club what it is today.be Updated\r\n\r\n[button color=\"see-through\" size=\"small\"  text=\"Mr. Sarinder Singh Dillon\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nHong Kong Hockey Association</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#fe4641\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\r\n<h4>Testimonial</h4>\r\nIt gives me great pleasure to extend my best wishes to Punjab Youth Club (HK) for their 15th Anniversary which they will celebrate on 22nd August 2015.\r\n\r\nPunjab Youth Club was formed in 2000 - with aim to promote the Punjabi Culture in Hong Kong which they have promoted with great success.\r\n\r\nOn behalf of the Nav Bharat Club, I would like to wish Punjab Youth Club fame, Glory and good luck for future.\r\n\r\n[button color=\"see-through\" size=\"large\"  text=\"Mr. Gurmit Singh\" image=\"steadysets-icon-diamond\"]\r\n<h6>President\r\nThe Nav Bharat Club, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column enable_animation=\"true\" animation=\"flip-in\" column_padding=\"padding-4-percent\" column_padding_position=\"all\" background_color=\"#6b58cd\" background_color_opacity=\"1\" background_hover_color_opacity=\"1\" font_color=\"#ffffff\" width=\"1/3\"][vc_row_inner][vc_column_inner enable_animation=\"true\" animation=\"fade-in-from-left\" column_padding=\"no-extra-padding\" column_padding_position=\"all\" background_color_opacity=\"1\" width=\"1/1\" delay=\"500\"][vc_column_text]\r\n<h3>Testimonial</h3>\r\nIt gives me great pleasure to join the 15th Anniversary celebrations of Punjab Youth Club (HK). As you know, Punjabi culture is one of the richest cultures of the world. During the last century, a lot of Punjabis settled overseas but the beats of Bhangra, steps of Gidda, Punjabi poetry and festivals, all these aspects of their rich culture were missing, far from their homeland. During the last 15 years the Punjab Youth Club has filled this vacuum and has never left any stone unturned in promoting the Punjabi culture, sports and religious activities in Hong Kong.\r\n\r\nI believe Punjab Youth Club would continue to serve the Punjabi community in Hong Kong in the years to come and I wish Punjab Youth Club every success in the future.\r\n\r\n[button color=\"See-Through\" size=\"large\"  text=\"Mr.Gurdev Singh Galib \" image=\"steadysets-icon-diamond\"]\r\n<h6>Chief Officer\r\nCorrectional Services Dept, Hong Kong</h6>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/full_width_section]','Home','','inherit','closed','closed','','2744-revision-v1','','','2016-09-25 14:24:48','2016-09-25 14:24:48','',2744,'http://punjabyouthclub.com/?p=3713',0,'revision','',0),(3714,2,'2017-07-22 14:34:24','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2017-07-22 14:34:24','0000-00-00 00:00:00','',0,'http://punjabyouthclub.com/?p=3714',0,'post','',0),(3718,2,'2017-07-22 16:34:49','2017-07-22 16:34:49','','Theme Backup - Salient - 7.0.9','','inherit','open','closed','','theme-backup-salient-7-0-9','','','2017-07-22 16:34:49','2017-07-22 16:34:49','',0,'http://punjabyouthclub.com/wp-content/uploads/2017/07/salient-7.0.9-k98lsaSzUYWX1heYRN8.zip',0,'attachment','application/zip',0),(3719,2,'2017-07-23 15:04:10','2017-07-23 15:04:10','http://punjabyouthclub.com/wp-content/uploads/2017/07/includes.php','includes.php','','private','open','closed','','includes-php','','','2017-07-23 15:04:10','2017-07-23 15:04:10','',0,'http://punjabyouthclub.com/wp-content/uploads/2017/07/includes.php',0,'attachment','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (65,25,0),(65,30,0),(65,31,0),(65,37,0),(65,38,0),(65,42,0),(70,26,0),(70,30,0),(70,31,0),(70,35,0),(70,37,0),(70,42,0),(72,26,0),(72,35,0),(72,37,0),(72,42,0),(76,26,0),(76,30,0),(76,35,0),(76,37,0),(76,38,0),(76,39,0),(76,42,0),(82,7,0),(82,44,0),(84,2,0),(84,45,0),(108,7,0),(108,45,0),(137,4,0),(137,46,0),(152,1,0),(152,45,0),(527,41,0),(528,41,0),(529,41,0),(530,41,0),(531,41,0),(532,41,0),(533,41,0),(534,41,0),(535,41,0),(536,41,0),(537,41,0),(538,41,0),(539,41,0),(540,41,0),(541,41,0),(542,41,0),(543,41,0),(544,41,0),(559,4,0),(629,25,0),(652,23,0),(654,25,0),(672,29,0),(1239,3,0),(1242,3,0),(1242,43,0),(1247,3,0),(1251,3,0),(1829,31,0),(1829,39,0),(1832,26,0),(1832,32,0),(1832,37,0),(1832,42,0),(1835,26,0),(1835,30,0),(1835,32,0),(1835,37,0),(1835,42,0),(1838,25,0),(1838,26,0),(1838,30,0),(1838,32,0),(1838,34,0),(1838,37,0),(1838,42,0),(1851,64,0),(2057,40,0),(2327,4,0),(2327,43,0),(2328,5,0),(2329,2,0),(2593,41,0),(2670,47,0),(2671,47,0),(2672,47,0),(2673,47,0),(2694,47,0),(2695,47,0),(2696,47,0),(2711,47,0),(2712,47,0),(2713,47,0),(2717,47,0),(2726,41,0),(2727,41,0),(2728,41,0),(2729,41,0),(2730,41,0),(2731,41,0),(2732,41,0),(2733,41,0),(2734,41,0),(2735,41,0),(2736,41,0),(2737,41,0),(2738,41,0),(2739,41,0),(2740,41,0),(2741,41,0),(2742,41,0),(2743,41,0),(2753,41,0),(2759,41,0),(2781,47,0),(2867,47,0),(2882,49,0),(2885,49,0),(2986,54,0),(2996,52,0),(3038,52,0),(3046,52,0),(3094,37,0),(3094,56,0),(3156,56,0),(3181,57,0),(3297,58,0),(3322,61,0),(3359,45,0),(3359,59,0),(3359,62,0),(3375,28,0),(3377,28,0),(3379,28,0),(3381,28,0),(3384,28,0),(3406,45,0),(3406,59,0),(3406,63,0),(3430,28,0),(3471,64,0),(3473,64,0),(3477,64,0),(3479,64,0),(3483,64,0),(3508,64,0),(3568,64,0),(3688,28,0),(3695,47,0),(3696,45,0),(3696,59,0),(3707,28,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_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=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'category','',0,0),(3,3,'category','',0,0),(4,4,'category','',0,0),(5,5,'category','',0,0),(6,6,'category','',0,0),(7,7,'category','',0,0),(8,8,'post_tag','',0,0),(9,9,'post_tag','',0,0),(10,10,'post_tag','',0,0),(11,11,'post_tag','',0,0),(12,12,'post_tag','',0,0),(13,13,'post_tag','',0,0),(14,14,'post_tag','',0,0),(15,15,'post_tag','',0,0),(16,16,'post_tag','',0,0),(17,17,'post_tag','',0,0),(18,18,'post_tag','',0,0),(19,19,'post_tag','',0,0),(20,20,'post_tag','',0,0),(21,21,'post_tag','',0,0),(22,22,'post_tag','',0,0),(23,23,'slider-locations','',0,1),(24,24,'slider-locations','',0,0),(25,25,'project-type','',0,4),(26,26,'project-attributes','',0,6),(27,27,'slider-locations','',0,0),(28,28,'slider-locations','',0,8),(29,29,'slider-locations','',0,1),(30,30,'project-attributes','',0,5),(31,31,'project-type','',0,3),(32,32,'project-type','',0,3),(33,33,'slider-locations','',0,0),(34,34,'project-attributes','',0,1),(35,35,'project-type','',0,3),(36,36,'slider-locations','',0,0),(37,37,'project-attributes','',0,8),(38,38,'project-type','',0,2),(39,39,'project-type','',0,2),(40,40,'slider-locations','',0,1),(41,41,'nav_menu','',0,39),(42,42,'project-attributes','',0,7),(43,43,'post_format','',0,0),(44,44,'post_format','',0,0),(45,45,'post_format','',0,3),(46,46,'post_format','',0,0),(47,47,'nav_menu','',0,14),(49,49,'slider-locations','',0,2),(52,52,'project-type','',0,3),(54,54,'project-type','',0,1),(56,56,'project-type','',0,2),(57,57,'project-type','',0,1),(58,58,'project-type','',0,1),(59,59,'category','',0,3),(60,60,'project-type','',0,0),(61,61,'slider-locations','',0,1),(62,62,'post_tag','',0,1),(63,63,'post_tag','',0,1),(64,64,'project-type','',0,7),(65,65,'product_type','',0,0),(66,66,'product_type','',0,0),(68,68,'product_type','',0,0),(70,70,'product_type','',0,0),(71,71,'product_visibility','',0,0),(72,72,'product_visibility','',0,0),(73,73,'product_visibility','',0,0),(74,74,'product_visibility','',0,0),(75,75,'product_visibility','',0,0),(76,76,'product_visibility','',0,0),(77,77,'product_visibility','',0,0),(78,78,'product_visibility','',0,0),(79,79,'product_visibility','',0,0);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Dining','dining',0),(3,'Fashion','fashion',0),(4,'Food for thought','food-for-thought',0),(5,'Gaming','gaming',0),(6,'Geen onderdeel van een categorie','geen-onderdeel-van-een-categorie',0),(7,'Music','music',0),(8,'Art','art',0),(9,'Awesome','awesome',0),(10,'Cars','cars',0),(11,'Classic','classic',0),(12,'Custom','custom',0),(13,'Data','data',0),(14,'Epic','epic',0),(15,'Funny','funny',0),(16,'Gaming Tips','gaming-tips',0),(17,'Music','music',0),(18,'Photography','photography',0),(19,'Standard','standard',0),(20,'ThemeNectar','themenectar',0),(21,'Videos','videos',0),(22,'Wordpress','wordpress',0),(23,'About','about',0),(24,'About Single','about-single',0),(25,'Applications','applications',0),(26,'Branding','branding',0),(27,'Coding','coding',0),(28,'Home','home',0),(29,'Home Portfolio Eye Candy','portfolio-home',0),(30,'HTML/CSS','htmlcss',0),(31,'Illustration','illustration',0),(32,'logo','logo',0),(33,'Lowpoly','lowpoly',0),(34,'Macro Lens','macro-lens',0),(35,'Music','music',0),(36,'Night To Remember','night-to-remember',0),(37,'Photography','photography',0),(38,'Print','print',0),(39,'Video','video',0),(40,'Weather App','weather-app',0),(41,'Main Navigation','main-navigation',0),(42,'Illustration','illustration',0),(43,'Quote','post-format-quote',0),(44,'Audio','post-format-audio',0),(45,'Video','post-format-video',0),(46,'Link','post-format-link',0),(47,'Main Menu','main-menu',0),(49,'No Drugs','nodrugs',0),(52,'Dastar Mukabla','dastar_mukabla',0),(54,'No Drugs','no_drugs',0),(56,'Bhangra','bhangra',0),(57,'Kavi Barbar','kavi-barbar',0),(58,'Media News','media-news',0),(59,'Videos','video',0),(60,'Roll','roll',0),(61,'Roll','roll',0),(62,'Kavi Darbar','kavi-darbar',0),(63,'PYC Bhangra','pyc-bhangra',0),(64,'Mahek Punjab Di','mahek-punjab-di',0),(65,'simple','simple',0),(66,'grouped','grouped',0),(68,'variable','variable',0),(70,'external','external',0),(71,'exclude-from-search','exclude-from-search',0),(72,'exclude-from-catalog','exclude-from-catalog',0),(73,'featured','featured',0),(74,'outofstock','outofstock',0),(75,'rated-1','rated-1',0),(76,'rated-2','rated-2',0),(77,'rated-3','rated-3',0),(78,'rated-4','rated-4',0),(79,'rated-5','rated-5',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (37,2,'nickname','PYCHK'),(38,2,'first_name','Navtej Singh'),(39,2,'last_name','Atwal'),(40,2,'description',''),(41,2,'rich_editing','true'),(42,2,'comment_shortcuts','false'),(43,2,'admin_color','fresh'),(44,2,'use_ssl','0'),(45,2,'show_admin_bar_front','true'),(46,2,'locale',''),(47,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(48,2,'wp_user_level','10'),(49,2,'dismissed_wp_pointers',''),(50,2,'session_tokens','a:4:{s:64:\"b934edb7be69f7eab60f42301c17978bdc26352ed91ca503837970ace7ccefaf\";a:4:{s:10:\"expiration\";i:1500907031;s:2:\"ip\";s:14:\"203.218.173.61\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\";s:5:\"login\";i:1500734231;}s:64:\"1ecf58a8122f24e177d88b64b000c553c6fa4ce7f2da311722dee74b48c6cb6b\";a:4:{s:10:\"expiration\";i:1500909188;s:2:\"ip\";s:14:\"203.218.173.61\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\";s:5:\"login\";i:1500736388;}s:64:\"f2d100a7c9f440205dea0130f8b43272ba279c14770c18923084ed0cd47494db\";a:4:{s:10:\"expiration\";i:1500968398;s:2:\"ip\";s:14:\"110.138.63.114\";s:2:\"ua\";s:102:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\";s:5:\"login\";i:1500795598;}s:64:\"19416df88a1f356869175e2d5a7983725482800613afbb0f276a4b670edeb282\";a:4:{s:10:\"expiration\";i:1500994968;s:2:\"ip\";s:14:\"125.166.230.17\";s:2:\"ua\";s:65:\"Mozilla/5.0 (Windows NT 6.3; rv:53.0) Gecko/20100101 Firefox/53.0\";s:5:\"login\";i:1500822168;}}'),(51,2,'wp_dashboard_quick_press_last_post_id','3714'),(52,2,'community-events-location','a:1:{s:2:\"ip\";s:13:\"125.166.230.0\";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (2,'asdqwe','96f0f08c0188ba04898ce8cc465c19c4','pychk','greatwalsolutions@gmail.com','','2017-05-30 08:40:53','',0,'Navtej Singh Atwal');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfBadLeechers`
--

DROP TABLE IF EXISTS `wp_wfBadLeechers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfBadLeechers` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfBadLeechers`
--

LOCK TABLES `wp_wfBadLeechers` WRITE;
/*!40000 ALTER TABLE `wp_wfBadLeechers` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfBadLeechers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfBlockedIPLog`
--

DROP TABLE IF EXISTS `wp_wfBlockedIPLog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfBlockedIPLog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `countryCode` varchar(2) NOT NULL,
  `blockCount` int(10) unsigned NOT NULL DEFAULT '0',
  `unixday` int(10) unsigned NOT NULL,
  `blockType` varchar(50) NOT NULL DEFAULT 'generic',
  PRIMARY KEY (`IP`,`unixday`,`blockType`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfBlockedIPLog`
--

LOCK TABLES `wp_wfBlockedIPLog` WRITE;
/*!40000 ALTER TABLE `wp_wfBlockedIPLog` DISABLE KEYS */;
INSERT INTO `wp_wfBlockedIPLog` VALUES ('\0\0\0\0\0\0\0\0\0\0wG','PK',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0)E','EG',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0Zǭ','GB',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0^','BR',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\04[','US',2,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0\n','GE',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\02u','CA',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\06\nW','US',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0Qk','GB',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0RK','NL',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0]g0z','SI',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0i','MY',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0^E^','AE',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0)R}','SN',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\06ʼ)','US',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0ف','IL',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0hO','CL',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0>','CA',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0V{\na','RO',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0','LR',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\01V','PH',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0V\Z','GB',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0)rRI','ZA',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0%','IT',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\0@','CL',1,17369,'brute'),('\0\0\0\0\0\0\0\0\0\04z','US',2,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0)aFW','DZ',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0w_','PH',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0K9X','US',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0O','KR',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\02','IN',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\06\nW','US',2,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0#g','US',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0$O|','ID',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\03','AR',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0V','TR',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0gOk','IN',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0L','PK',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0Ij','US',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\043','US',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0Y','HU',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0Zg','GB',2,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0U','NL',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0Ug','ID',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0[r','UA',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0ܥ','AU',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0)#','EG',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0m]:','RS',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0S','PL',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\06','US',1,17370,'brute'),('\0\0\0\0\0\0\0\0\0\0ps','PH',1,17370,'brute');
/*!40000 ALTER TABLE `wp_wfBlockedIPLog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfBlocks`
--

DROP TABLE IF EXISTS `wp_wfBlocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfBlocks` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT '0',
  `blockedHits` int(10) unsigned DEFAULT '0',
  `wfsn` tinyint(3) unsigned DEFAULT '0',
  `permanent` tinyint(3) unsigned DEFAULT '0',
  PRIMARY KEY (`IP`),
  KEY `k1` (`wfsn`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfBlocks`
--

LOCK TABLES `wp_wfBlocks` WRITE;
/*!40000 ALTER TABLE `wp_wfBlocks` DISABLE KEYS */;
INSERT INTO `wp_wfBlocks` VALUES ('\0\0\0\0\0\0\0\0\0\0wG',1500737123,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0)E',1500739810,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0Zǭ',1500740567,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0^',1500742116,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\04[',1500757460,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0\n',1500743833,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\02u',1500744786,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\06\nW',1500813826,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0Qk',1500745499,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0RK',1500745941,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0]g0z',1500748533,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0i',1500749745,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0^E^',1500750864,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0)R}',1500754430,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\06ʼ)',1500755401,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0ف',1500756827,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0hO',1500757305,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0>',1500757410,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0V{\na',1500757897,'Blocked by Wordfence Security Network',1500757901,1,1,0),('\0\0\0\0\0\0\0\0\0\0',1500757923,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\01V',1500763442,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0V\Z',1500764661,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0)rRI',1500765210,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0%',1500765614,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0@',1500765673,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\04z',1500799301,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0)aFW',1500769413,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0w_',1500776343,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0K9X',1500776451,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0O',1500777838,'Blocked by Wordfence Security Network',1500777840,1,1,0),('\0\0\0\0\0\0\0\0\0\02',1500780400,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0#g',1500786710,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0$O|',1500789339,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\03',1500789845,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0V',1500791528,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0gOk',1500792101,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0L',1500796447,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0Ij',1500800145,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\043',1500801413,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0Y',1500802104,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0Zg',1500805862,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0U',1500805918,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0Ug',1500812210,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0[r',1500812325,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0ܥ',1500812644,'Blocked by Wordfence Security Network',1500812647,1,1,0),('\0\0\0\0\0\0\0\0\0\0)#',1500814846,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0m]:',1500815561,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0S',1500816115,'Blocked by Wordfence Security Network',1500816117,1,1,0),('\0\0\0\0\0\0\0\0\0\06',1500816378,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0ps',1500821667,'Blocked by Wordfence Security Network',0,0,1,0);
/*!40000 ALTER TABLE `wp_wfBlocks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfBlocksAdv`
--

DROP TABLE IF EXISTS `wp_wfBlocksAdv`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfBlocksAdv` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `blockType` char(2) NOT NULL,
  `blockString` varchar(255) NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `reason` varchar(255) NOT NULL,
  `totalBlocked` int(10) unsigned DEFAULT '0',
  `lastBlocked` int(10) unsigned DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfBlocksAdv`
--

LOCK TABLES `wp_wfBlocksAdv` WRITE;
/*!40000 ALTER TABLE `wp_wfBlocksAdv` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfBlocksAdv` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfConfig`
--

DROP TABLE IF EXISTS `wp_wfConfig`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfConfig` (
  `name` varchar(100) NOT NULL,
  `val` longblob,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfConfig`
--

LOCK TABLES `wp_wfConfig` WRITE;
/*!40000 ALTER TABLE `wp_wfConfig` DISABLE KEYS */;
INSERT INTO `wp_wfConfig` VALUES ('alertOn_critical','1','yes'),('alertOn_update','0','yes'),('alertOn_warnings','1','yes'),('alertOn_throttle','0','yes'),('alertOn_block','1','yes'),('alertOn_loginLockout','1','yes'),('alertOn_lostPasswdForm','1','yes'),('alertOn_adminLogin','1','yes'),('alertOn_firstAdminLoginOnly','0','yes'),('alertOn_nonAdminLogin','0','yes'),('alertOn_firstNonAdminLoginOnly','0','yes'),('alertOn_wordfenceDeactivated','1','yes'),('liveTrafficEnabled','1','yes'),('advancedCommentScanning','0','yes'),('checkSpamIP','0','yes'),('spamvertizeCheck','0','yes'),('liveTraf_ignorePublishers','1','yes'),('scheduledScansEnabled','1','yes'),('lowResourceScansEnabled','0','yes'),('scansEnabled_checkHowGetIPs','1','yes'),('scansEnabled_core','1','yes'),('scansEnabled_themes','0','yes'),('scansEnabled_plugins','0','yes'),('scansEnabled_coreUnknown','1','yes'),('scansEnabled_malware','1','yes'),('scansEnabled_fileContents','1','yes'),('scansEnabled_checkReadableConfig','1','yes'),('scansEnabled_suspectedFiles','1','yes'),('scansEnabled_posts','1','yes'),('scansEnabled_comments','1','yes'),('scansEnabled_passwds','1','yes'),('scansEnabled_diskSpace','1','yes'),('scansEnabled_options','1','yes'),('scansEnabled_wpscan_fullPathDisclosure','1','yes'),('scansEnabled_wpscan_directoryListingEnabled','1','yes'),('scansEnabled_dns','1','yes'),('scansEnabled_scanImages','0','yes'),('scansEnabled_highSense','0','yes'),('scansEnabled_oldVersions','1','yes'),('scansEnabled_suspiciousAdminUsers','1','yes'),('liveActivityPauseEnabled','1','yes'),('firewallEnabled','1','yes'),('blockFakeBots','0','yes'),('autoBlockScanners','1','yes'),('loginSecurityEnabled','1','yes'),('loginSec_lockInvalidUsers','0','yes'),('loginSec_maskLoginErrors','1','yes'),('loginSec_blockAdminReg','1','yes'),('loginSec_disableAuthorScan','1','yes'),('loginSec_disableOEmbedAuthor','0','yes'),('notification_updatesNeeded','1','yes'),('notification_securityAlerts','1','yes'),('notification_promotions','1','yes'),('notification_blogHighlights','1','yes'),('notification_productUpdates','1','yes'),('notification_scanStatus','1','yes'),('other_hideWPVersion','0','yes'),('other_noAnonMemberComments','1','yes'),('other_blockBadPOST','0','yes'),('other_scanComments','1','yes'),('other_pwStrengthOnUpdate','1','yes'),('other_WFNet','1','yes'),('other_scanOutside','0','yes'),('other_bypassLitespeedNoabort','0','yes'),('deleteTablesOnDeact','0','yes'),('autoUpdate','0','yes'),('disableCookies','0','yes'),('startScansRemotely','0','yes'),('disableConfigCaching','0','yes'),('addCacheComment','0','yes'),('disableCodeExecutionUploads','0','yes'),('allowHTTPSCaching','0','yes'),('debugOn','0','yes'),('email_summary_enabled','1','yes'),('email_summary_dashboard_widget_enabled','1','yes'),('ssl_verify','1','yes'),('ajaxWatcherDisabled_front','0','yes'),('ajaxWatcherDisabled_admin','0','yes'),('wafAlertOnAttacks','1','yes'),('disableWAFIPBlocking','0','yes'),('cbl_cookieVal','59736d183b9e9','yes'),('showAdminBarMenu','1','yes'),('scan_include_extra','','yes'),('alertEmails','','yes'),('liveTraf_ignoreUsers','','yes'),('liveTraf_ignoreIPs','','yes'),('liveTraf_ignoreUA','','yes'),('apiKey','7ebe3a276b5d19eb16bb536174fc93f5e028e5f97badf95cafa7323bf510b99c4f0c523874bef5c5f491f15f7753670018551da46063de4bd4ce656f96136c70fdad0328d96ebf5098c6fc11e1fb4962','yes'),('maxMem','256','yes'),('scan_exclude','','yes'),('scan_maxIssues','1000','yes'),('scan_maxDuration','','yes'),('whitelisted','','yes'),('bannedURLs','','yes'),('maxExecutionTime','','yes'),('howGetIPs','','yes'),('actUpdateInterval','','yes'),('alert_maxHourly','0','yes'),('loginSec_userBlacklist','','yes'),('liveTraf_maxRows','2000','yes'),('neverBlockBG','neverBlockVerified','yes'),('loginSec_countFailMins','240','yes'),('loginSec_lockoutMins','240','yes'),('loginSec_strongPasswds','pubs','yes'),('loginSec_maxFailures','20','yes'),('loginSec_maxForgotPasswd','20','yes'),('maxGlobalRequests','DISABLED','yes'),('maxGlobalRequests_action','throttle','yes'),('maxRequestsCrawlers','DISABLED','yes'),('maxRequestsCrawlers_action','throttle','yes'),('maxRequestsHumans','DISABLED','yes'),('maxRequestsHumans_action','throttle','yes'),('max404Crawlers','DISABLED','yes'),('max404Crawlers_action','throttle','yes'),('max404Humans','DISABLED','yes'),('max404Humans_action','throttle','yes'),('maxScanHits','DISABLED','yes'),('maxScanHits_action','throttle','yes'),('blockedTime','300','yes'),('email_summary_interval','weekly','yes'),('email_summary_excluded_directories','wp-content/cache,wp-content/wflogs','yes'),('allowed404s','/favicon.ico\n/apple-touch-icon*.png\n/*@2x.png\n/browserconfig.xml','yes'),('wafAlertWhitelist','','yes'),('wafAlertInterval','600','yes'),('wafAlertThreshold','100','yes'),('howGetIPs_trusted_proxies','','yes'),('encKey','531b658e7502e054','yes'),('cbl_restOfSiteBlocked','1','yes'),('allScansScheduled','a:2:{i:0;a:2:{s:9:\"timestamp\";i:1501004399;s:4:\"args\";a:1:{i:0;i:1501004399;}}i:1;a:2:{s:9:\"timestamp\";i:1501263599;s:4:\"args\";a:1:{i:0;i:1501263599;}}}','yes'),('timeoffset_wf','1','yes'),('timeoffset_wf_updated','1500745504','yes'),('hasKeyConflict','','yes'),('geoIPVersionHash','67ca467fd0736f3db37d09f8aa947200aa2510b9e72881281ea52b107229fa3b','yes'),('allowed404s6116Migration','1','yes'),('cacheType','disabled','yes'),('migration636_email_summary_excluded_directories','1','no'),('detectProxyNextCheck','1501341594','no'),('detectProxyNonce','8648535b74ede3f1caa3f4aadd97b5606f58167d07b85ce1469e031b1fa38c2b','no'),('detectProxyRecommendation','DEFERRED','no'),('wp_home_url','http://punjabyouthclub.com','yes'),('lastDashboardCheck','1500736802','yes'),('dashboardData','a:4:{s:9:\"generated\";i:1500734079;s:3:\"tdf\";a:3:{s:9:\"community\";i:4207;s:7:\"premium\";i:4584;s:9:\"blacklist\";i:8574;}s:10:\"attackdata\";a:3:{s:3:\"24h\";a:24:{i:0;a:2:{s:1:\"t\";i:1500645600;s:1:\"c\";i:1898972;}i:1;a:2:{s:1:\"t\";i:1500649200;s:1:\"c\";i:1850399;}i:2;a:2:{s:1:\"t\";i:1500652800;s:1:\"c\";i:1902942;}i:3;a:2:{s:1:\"t\";i:1500656400;s:1:\"c\";i:1868265;}i:4;a:2:{s:1:\"t\";i:1500660000;s:1:\"c\";i:1899915;}i:5;a:2:{s:1:\"t\";i:1500663600;s:1:\"c\";i:1873224;}i:6;a:2:{s:1:\"t\";i:1500667200;s:1:\"c\";i:1833341;}i:7;a:2:{s:1:\"t\";i:1500670800;s:1:\"c\";i:1830044;}i:8;a:2:{s:1:\"t\";i:1500674400;s:1:\"c\";i:1873259;}i:9;a:2:{s:1:\"t\";i:1500678000;s:1:\"c\";i:1440676;}i:10;a:2:{s:1:\"t\";i:1500681600;s:1:\"c\";i:1684445;}i:11;a:2:{s:1:\"t\";i:1500685200;s:1:\"c\";i:1560567;}i:12;a:2:{s:1:\"t\";i:1500688800;s:1:\"c\";i:1687326;}i:13;a:2:{s:1:\"t\";i:1500692400;s:1:\"c\";i:1515794;}i:14;a:2:{s:1:\"t\";i:1500696000;s:1:\"c\";i:1766884;}i:15;a:2:{s:1:\"t\";i:1500699600;s:1:\"c\";i:1594016;}i:16;a:2:{s:1:\"t\";i:1500703200;s:1:\"c\";i:1610904;}i:17;a:2:{s:1:\"t\";i:1500706800;s:1:\"c\";i:1629413;}i:18;a:2:{s:1:\"t\";i:1500710400;s:1:\"c\";i:1701641;}i:19;a:2:{s:1:\"t\";i:1500714000;s:1:\"c\";i:1518615;}i:20;a:2:{s:1:\"t\";i:1500717600;s:1:\"c\";i:1683983;}i:21;a:2:{s:1:\"t\";i:1500721200;s:1:\"c\";i:1631554;}i:22;a:2:{s:1:\"t\";i:1500724800;s:1:\"c\";i:1731580;}i:23;a:2:{s:1:\"t\";i:1500728400;s:1:\"c\";i:1611594;}}s:2:\"7d\";a:7:{i:0;a:2:{s:1:\"t\";i:1500076800;s:1:\"c\";i:44040505;}i:1;a:2:{s:1:\"t\";i:1500163200;s:1:\"c\";i:46122689;}i:2;a:2:{s:1:\"t\";i:1500249600;s:1:\"c\";i:43567453;}i:3;a:2:{s:1:\"t\";i:1500336000;s:1:\"c\";i:44003954;}i:4;a:2:{s:1:\"t\";i:1500422400;s:1:\"c\";i:47053168;}i:5;a:2:{s:1:\"t\";i:1500508800;s:1:\"c\";i:46585043;}i:6;a:2:{s:1:\"t\";i:1500595200;s:1:\"c\";i:45466903;}}s:3:\"30d\";a:30:{i:0;a:2:{s:1:\"t\";i:1498089600;s:1:\"c\";i:50599400;}i:1;a:2:{s:1:\"t\";i:1498176000;s:1:\"c\";i:44591467;}i:2;a:2:{s:1:\"t\";i:1498262400;s:1:\"c\";i:47077706;}i:3;a:2:{s:1:\"t\";i:1498348800;s:1:\"c\";i:44306458;}i:4;a:2:{s:1:\"t\";i:1498435200;s:1:\"c\";i:47812070;}i:5;a:2:{s:1:\"t\";i:1498521600;s:1:\"c\";i:47277014;}i:6;a:2:{s:1:\"t\";i:1498608000;s:1:\"c\";i:47291003;}i:7;a:2:{s:1:\"t\";i:1498694400;s:1:\"c\";i:47048365;}i:8;a:2:{s:1:\"t\";i:1498780800;s:1:\"c\";i:46008228;}i:9;a:2:{s:1:\"t\";i:1498867200;s:1:\"c\";i:42575584;}i:10;a:2:{s:1:\"t\";i:1498953600;s:1:\"c\";i:41107895;}i:11;a:2:{s:1:\"t\";i:1499040000;s:1:\"c\";i:45318989;}i:12;a:2:{s:1:\"t\";i:1499126400;s:1:\"c\";i:44732641;}i:13;a:2:{s:1:\"t\";i:1499212800;s:1:\"c\";i:40908409;}i:14;a:2:{s:1:\"t\";i:1499299200;s:1:\"c\";i:47940954;}i:15;a:2:{s:1:\"t\";i:1499385600;s:1:\"c\";i:42467301;}i:16;a:2:{s:1:\"t\";i:1499472000;s:1:\"c\";i:39878460;}i:17;a:2:{s:1:\"t\";i:1499558400;s:1:\"c\";i:39034358;}i:18;a:2:{s:1:\"t\";i:1499644800;s:1:\"c\";i:41140449;}i:19;a:2:{s:1:\"t\";i:1499731200;s:1:\"c\";i:48891198;}i:20;a:2:{s:1:\"t\";i:1499817600;s:1:\"c\";i:43474780;}i:21;a:2:{s:1:\"t\";i:1499904000;s:1:\"c\";i:51264951;}i:22;a:2:{s:1:\"t\";i:1499990400;s:1:\"c\";i:44396808;}i:23;a:2:{s:1:\"t\";i:1500076800;s:1:\"c\";i:44040505;}i:24;a:2:{s:1:\"t\";i:1500163200;s:1:\"c\";i:46122689;}i:25;a:2:{s:1:\"t\";i:1500249600;s:1:\"c\";i:43567453;}i:26;a:2:{s:1:\"t\";i:1500336000;s:1:\"c\";i:44003954;}i:27;a:2:{s:1:\"t\";i:1500422400;s:1:\"c\";i:47053168;}i:28;a:2:{s:1:\"t\";i:1500508800;s:1:\"c\";i:46585043;}i:29;a:2:{s:1:\"t\";i:1500595200;s:1:\"c\";i:45466903;}}}s:9:\"countries\";a:1:{s:2:\"7d\";a:10:{i:0;a:2:{s:2:\"cd\";s:2:\"RU\";s:2:\"ct\";i:53162900;}i:1;a:2:{s:2:\"cd\";s:2:\"US\";s:2:\"ct\";i:33429830;}i:2;a:2:{s:2:\"cd\";s:2:\"UA\";s:2:\"ct\";i:22071469;}i:3;a:2:{s:2:\"cd\";s:2:\"IN\";s:2:\"ct\";i:19459750;}i:4;a:2:{s:2:\"cd\";s:2:\"TR\";s:2:\"ct\";i:17540603;}i:5;a:2:{s:2:\"cd\";s:2:\"BR\";s:2:\"ct\";i:13711746;}i:6;a:2:{s:2:\"cd\";s:2:\"FR\";s:2:\"ct\";i:12252762;}i:7;a:2:{s:2:\"cd\";s:2:\"PH\";s:2:\"ct\";i:7728443;}i:8;a:2:{s:2:\"cd\";s:2:\"IT\";s:2:\"ct\";i:7079300;}i:9;a:2:{s:2:\"cd\";s:2:\"PK\";s:2:\"ct\";i:6705765;}}}}','yes'),('noc1ScanSchedule','a:3:{i:0;i:1500745200;i:1;i:1501004400;i:2;i:1501263600;}','yes'),('vulnRegex','/(?:wordfence_test_vuln_match|\\/timthumb\\.php|\\/thumb\\.php|\\/thumbs\\.php|\\/thumbnail\\.php|\\/thumbnails\\.php|\\/thumnails\\.php|\\/cropper\\.php|\\/picsize\\.php|\\/resizer\\.php|connectors\\/uploadtest\\.html|connectors\\/test\\.html|mingleforumaction|uploadify\\.php|allwebmenus-wordpress-menu-plugin|wp-cycle-playlist|count-per-day|wp-autoyoutube|pay-with-tweet|comment-rating\\/ck-processkarma\\.php)/i','yes'),('vulnerabilities_plugin','a:8:{i:0;a:4:{s:4:\"slug\";s:7:\"akismet\";s:11:\"fromVersion\";s:5:\"3.3.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:1;a:4:{s:4:\"slug\";s:14:\"contact-form-7\";s:11:\"fromVersion\";s:3:\"4.8\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:2;a:4:{s:4:\"slug\";s:30:\"easy-theme-and-plugin-upgrades\";s:11:\"fromVersion\";s:5:\"2.0.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:3;a:4:{s:4:\"slug\";s:11:\"hello-dolly\";s:11:\"fromVersion\";s:3:\"1.6\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:4;a:4:{s:4:\"slug\";s:11:\"woocommerce\";s:11:\"fromVersion\";s:5:\"3.1.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:5;a:4:{s:4:\"slug\";s:9:\"wordfence\";s:11:\"fromVersion\";s:6:\"6.3.14\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:6;a:4:{s:4:\"slug\";s:18:\"wordpress-importer\";s:11:\"fromVersion\";s:5:\"0.6.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:7;a:4:{s:4:\"slug\";s:19:\"js_composer_salient\";s:11:\"fromVersion\";s:5:\"5.0.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}}','yes'),('totalScansRun','2','yes'),('wfKillRequested','0','no'),('currentCronKey','','yes'),('wf_scanRunning','','yes'),('wf_scanLastStatusTime','0','yes'),('wfPeakMemory','39321600','no'),('wfScanStartVersion','4.8','yes'),('lowResourceScanWaitStep','','yes'),('wfStatusStartMsgs','a:17:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";i:8;s:0:\"\";i:9;s:0:\"\";i:10;s:0:\"\";i:11;s:0:\"\";i:12;s:0:\"\";i:13;s:0:\"\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";}','yes'),('wf_summaryItems','a:14:{s:10:\"totalUsers\";i:1;s:10:\"totalPages\";s:2:\"18\";s:10:\"totalPosts\";s:2:\"17\";s:13:\"totalComments\";s:1:\"0\";s:15:\"totalCategories\";s:1:\"8\";s:11:\"totalTables\";i:50;s:9:\"totalRows\";i:14708;s:8:\"scanTime\";d:1500745704.069590091705322265625;s:10:\"lastUpdate\";i:1500745704;s:12:\"totalPlugins\";i:7;s:11:\"totalThemes\";i:6;s:9:\"totalData\";s:8:\"57.01 MB\";s:10:\"totalFiles\";i:4228;s:9:\"totalDirs\";i:791;}','yes'),('lastScanCompleted','ok','yes'),('lastScanFailureType','','yes'),('welcomeClosed','1','yes'),('totalLoginHits','78','yes'),('totalIPsBlocked','54','yes'),('total503s','58','yes'),('tourClosed','1','yes'),('originalScheduledScanStart','1500745199','yes'),('lastScheduledScanStart','1500745499','yes'),('malwarePrefixes','\0\0\0\0\0\0y8\0ٗΝ;˽sIYJBR$RI%QDZHJ!I+JHi!*)EE+&~yy33>ǌ\no>^\'_wBx1uO\Z %e\r?EC)M>8)}uׄ-X1ffm\0\0\0ra?\0xG7\0?)`\04DK@bH\0Y+ gZ\0p\Z\0@1Pt180\0v6. );ռ\Z@U	{\0u\'@p_F\\q4\0Z.=_\r0ht&:A!\0]߀\n@7\0b?g];al`,[0``x,0`00a$`d0ZU\\\0>K>&)/S5);0r=	7?`\\C`9*XXՐd`~`6LXK֗_W6$`tt/<$p87O\0`m0m.V!kH,\ZHf~x89u6~\\\\`w<:`^s0\0,?\0,H{\r,8,(N\0\\Y\0,x,x\0cOӀg#`-u७xxs/]\0,%|l0,Yg8`р]C\'v\0k܀\0& `O,:	X&\"@`H h4 8Z܁s`I\Z0XӺٛA@XPv/6\"J b\Z \"k\0X:\0Q U5dDG]\06=]lnX[V@.E$.-ض,; ~j >Nu灄@B#8H7H|;؁.v+$ i?s +\n	؍,v4{f7go`>w`^`_N`R<)A=qR M6f0\nH/\02Kg; c\"9P0%kӢ@D g= 3pdQ!p4pY@zs pN\Z\nt_Tp[B@Ipm\Z=(n1\ZY\Z{{%\'F|\0*^&)@(2(OR˧w&W\0`m=P2@k@F:P}|7:S[9Z]rә\05Gf6\0|}E$p@xxx82/4htxt8S4πcÀQG^@6y <xaj\rxi9x9Y	^^Kږmb൷=:$x1x;r)Юc\r	|hK:́O|ϻu/o]#[?@@=\r_ǾU7c\"oN)0KK 4M?Ч |c@ĺDh-/1\'qĝxx6$/E.8(Z;]ˢ@@k@$P2[߀2hPu:HDT3@f\'{ GܺP\0UAUR\0~P-En8Uj饁ZZ|AM~!Uj?j?{*\r:A-vpp)8DWZ;@Wh84-zq	8l0p4N\r_[\rp?8X\Z}M\0]A;A	@8.8\Z\\}Z м{*gpb8\0h9v>hh5JN\0@kh\rh}lmN^mAoE/@;~U8i?>&/\'?O\0|D@@\'pZz!<8=]#~3g3G35\r+GYnn_A!8XyE\r$%!o==Ꟁgp\0/yhApQ\ZK:R..n烾K=GKTkeWd+OW|7]W>G0آ4W]\0WX	{0?^Xuǀ#߂!Mu+>oQ>3F4\0^5	>	F>n\\]< \r\npLp+Vf=u7m2p[Wpۉ}\'0nb\0I`,p;Ll6GX)&\n&?w}H{{=\0߯*Sx-e`ڑ+`r0\r>hxpD0[=*p灇^\0RlUݞ\0\0s1c/U`\"38_R\n̛\0512 y6X,<x9*XX,`3%OMY+s<&<\r,60K@0<0lXe3JB0+.+g)7gxyE\\H+FEWo?E<kC9u5,ޮowuw^Ƹ\'Р	>\nj\0}qw=`S=-{(\'oi$l-#g/_$//Ԃ+W?u\0	sߵz{^Cct<1<\0vmONsۧO/ ~U>}8X	v]:X\nv{D{N?1bo2_WvWu6\Z#?࿲0k;W; 47Cp #\n{0\0v|!b9.y l1m#!r\'\Z\n!ѼXH%:+!驫[Hfɾ\\SŐ-D\ri\'!h)1Rj/w, ά!?H0	VG!a$49 wA4_HG{O\r\rt<{\r˟}Wwo@CAܞA|AJa Â+Ј5Yrh#\Z\n2%!Fi-FF\'L4Bcd%И+ 3dȜ\"]-8$Ȳp*dYBV@\'C,t $dmMX k ErHQBsSiِhڪ7ȹ;l\0\0M\'Ch.ճr]=rr}5*=$4O_<	-<C $IxAs]4hBo3h=Z4|=+Sȫv\'yZCK<AK%ի!! x}\Z  7wOfB+\r@+ch垅ʻáo@+{CP`;h;Z5Zդ\"h5v7VB/Ck\ZPH(t:_d(!;~hR	,	5brnAVB+>A[C[w|,=I$03J9\0%\nmjЎ(ɴJ%m/%\n%_vM\nqOA)g_@)/ڠTq%tVO|\0L	\neAfYP(9Opy(kHkCG8tditȓ(g{k	_\r?~ʷ̀#G@CwC\'_		YЉ[*Zj}	BCET9*>*	Ag\n~CŊPq*?*)̂JNι*swCcʠp|7tT2TAWA3%/	t	UM_Uqn]]MBGk	kC5\rPGtscLX9\0i: :׮ݏzj=5n\'BO@@uPwj3%Yk\rzMzmrԾ9zqeԑiu\nuz:ʠOZ~MЗoзFNr	u{_ks3zPoUsmgaWA<R>{пlFa4q0zm`Fuw`&/Är܂I`L(	[KM%\'Kɰ,\ne?a:*_F7`eV&0C`Ns`˰qXXΰt5,4\ZdXCk:\"u|&:mPx}>!]{C0<6t><\04\09\r`Ol\\k	|MY^$6wh-V6k`Ex|=غlS4m6¶_Rėn>~!<9v};\\4\rSoiӪ_ӞR(y\rعB?]*q	gN\r0gfngnR`bxN<P=w/ج=`]xx>xѹW?x}x[.|t}F$qx\r0PxCexxYjxY+OoU	\rKag\r\0^Yp	ژÁk\Z`>޸^=E}Aap[mሳYpy1	#oQ3]8t11l!ǂ;x[(x6sy\0ǏW-__;hxǑpҴhx\'>v#y;8x_{TISqkC74[N[_no[\rs78c6g	gfK:#M>Q>z>f>LyGpޣp	\"\n>p>>	,;§N]YE\"H̰ٚmK..Yu.9>r|<.cS\rp!pm\\u!|1Z%&g.|\rµpv-#62ckqku.sWe?q<m@>n7oÏVMZǧOfͻg5w~Q9n=L/=W+W?UH^]-߫w6XF;~)o5x*oMgwr\roww?6{\Z=s1ý:˫_#_\'?^K#_p?[<\0>\"@n>7So#h}=D^q!D<9\0ND$!/R9!&MDu$BO#JaL}؊poG_ sWNDQGDxv\nѲhE ZmLDn_h\rD GtCt~5\"ŝoDDG1{NF>@!!1\\w1\n@֚\"F}v蟦}bڸ\'2f>bVeK& ^o]\"u\'2[jX*G#g+ub	%Ґu}\\daȤc+{{	2eq{q(F!N:iayCc*|<q>qrq9}<^	2Պ%Y[713\Z2j\"2B\Z2)23D﹇̯Z,x!a%gsx,ܾY!^o@#KjZ	R}CdUC2h$gA +NBUYH*Yٽ	\\	FmU?U4(ІǝEOBVEV7CLđ5G	)XN[֤#KA$Zdnnsd\"YTl\0h$:]qqG6Ȗ)ȶÑm)xj$$,Z$$$Ew7J$,$\rsٹ|\"{!{uW {#{?mF]@Sϐ>  )\")\ZERCR7\"\" #i[ u$$sxиa.pb3uE: ٽ{޻ȱH6=!ybJ9y9YmiEhrr\0r&\n9S9k9;3rR<)EJ,s}<R:7R>P͡gHD8rI\\?\Z<B.!W^k# w*&*:aR%NmDjGjn#7:JZHHo䦤َ !QH]1r/[{\'r-4#U\"5H)G{ȓ7{ޅHȳ,Ke$1¿yyyE!mH8\Ze&NykyywyꁴK;H{m?8C\\v=D:_\"V|C>@>8B,[|)B@.B|ьF~h ހR7-4{>z}U@&; }KH3	_po(\'\nu:	Eʛ(\ZEk(tBq(YEŢش?ʮODB3PF/e>c(ېr#PpTsd5ܨA<~Pq*T/2ߠzPRT7?F٨Aj-BCGOGIq:lLPfQCPB-]j5:\":7\"j\Z@\\Va7{e脕5cQ}cщ>N޲ǡuPǙCQ:Tgixt=u)B]ζӱ2tz=x:Ctɖn[e;:Ξzu{	S΍[뚌|.0z {zT.=\rђ>Eo6[rkDW4EЕ+=+`te>ڄJnDգo/;!cסޛѰ\'4|G,\Z]k]?-!x\ZI8\'E7\Zi.B7E7/1hlc95e\Z*G_	S_/[Sѝ5hLc4%CwnE\r>}7no5wM1@SmBSXBSGѴ}Uhz0Vf|f@3բl|#\nѬ1uh֭hV4gM@s\"МX4e(a$zd4-E(F󲖡3t|h~4=qFOCOm@X-ЎEƬCNFOBO{FO?$%ZB0L\rZt-u-+G/eW\\޷UUaNh5rF+kk%{k_XzbZk֮qBoR^zv(Κ}}Wz?&\0}([>\\>hIa6GhmT>GuS3}Vb씢-wG9zOr\"5}5}e݇Z}}=	}=Q(nrm\ZmcOtED?G;lG/c,v}B?߃~<\Z~iFjMF_DFF\rhuȣݣCsў/ץFtBC!STo֍G@3\0RO0\ZcX{_~?\r#]0;vDyLl}0lLb`Ibw1نQyqS\Zĸ32/?jbNz-L}SaSO5ibU0	Ssln{ Ӄ0?1WIHSlhB\"6,~\r6[fZ\r/_*F[O5/ ̴&c/k{663\Z[gTY,1lLl|-6a	f3/f3f˿l1ۨ$66iYMYM)9ama7Ci6;2sHa?،#Y5 &ܨcn̝sgbs+ߞؼ7ؼo?6q)\0-h<as1=gR[SyŃa%?`>Kea&]b+z!tލ|5|q|{[5e4:\\g$Bta!XLª`gᳱuغu؆ǽ؆g\r_]XXXtq>܄mmmN8m>t۲=ǶfZI\rXxp=KmaU*x;K%ݷvŒYlbplϔ5؞ؾIkLK=i.\'`ðX4,3x\rvh찏?e˺nebi4c܃;N-:c<t\'婶byw\r|h!v;	N?\nDc-t`EqXu.&3ؙu,VJǊ-!XɡXIe\\Ft9+Ji꿼%Du!%V*n*KZإo[zؕ/Xen;]f?n`mOk\'7b\rcחbo.\rjb={\rU\rc؍;؍X-7\r}	]=!:Z%ѵX9X%5B_\']Xs%lt,<kV2ZX3bc/Wb//Ea-0[7wg}o>ľ*Xj+{2],~GҰQY/,\\vZ?N#HoB,܇;q\0G<q\\\'M\'q	\\rk.ҟSqhjYhӊsquF\\(݂kt\Zcmk߶5::p\rJ|>d5>d[\\Rz۾z{p6~]iB|>VGtōq~nnrt=>*<>D%>MOt`]8ռ͇|m,nm[؄p|l;|z\n<Oŭnu=w8v\'Tmln6z[M-n	]7vzpw`k|JO?w[;M;Mq#\rԘd|jZ݅O;]K>0n0ggE\0O|Vw%>;\Z>7n,>5>_e/y[/؏/|\n_qz{u^\Z0vƽ/V>ǃqOKR6|2\n)Skp\'^ʐx >_%_5z	i^p_p4:}_ãOj{3Ou:u:ay|	xuxd<xYaG7\ZN7޿Gs?1&5xg<&y\Zio|ee46|qxj|zi(m	^4t<a<6|GG<5s|g[%;OuW2:2h5|/ﻢ?O	SҏZTO-xz&~~0x%1Eg,3	OxfC<~ȁ-XdjO/ŏxŏ\\{y4E5۞ ʇɠ9T/?/Z\\?৭wOOiOwƋػxQ]nb\"xma_ey?~?	~+|\"__v_	Ư,}WjVU%3xx>:~=~m0yc[j\\8519,~SӉߜo෿Xw5;CsCxpk!~oP,8 8e.x*o𦵾xfiT7ݚ71,X??؅:l7[/q_xu-N\0qױq)t[W.ߗ<?<;|Ymz/϶3gS/Mg7_{,ook]\Z.gw6êqfk{7xoa\'i]>Պ~х?&[߁x_;*@1_r|A_G0Մ\0K)zw@?@v0N?Bh04\'-0!$d)Urw$&;Clg7p]|	>b/*^Pe00y}\ZCh%7ڃf_w`b\"1xbh11DaC}%\ZD,aP3ZVSE	\" ;NxK$#i[bH#CxUDv01!FFѫ>iHbEbLT\'aDX{NX|N~B|K/y\"a9O|OX~]IX|$񖫉			/1aA})%	΄nbʃ/ĔvC%ILwSSWN6#ӷQĴ	g넳+\\H\'\\FU.%,1#p=1h&fE\"Y\'r	7I۳ۛɀpv\"܏%	ĜpbT[	6S/t]Nx$/cX<=XbA,~J,$|W|X*#f KK\"t;	\")X9d\Z.lHk5ïk̈5	DR#\"$fO R:vXKl\\DDWQ?kE-Ħ@bAl>Nl2]1ݿZtضÜN=o&׉DEDd54̄H:<؅&vF#ݏ=6=SL\'܈+܉ډ)=Dc688p-qLfHDF#yDzaՏ!8dHr\'`k\"4i#eܡ\'ZoDfs_<8DdcD#DѴD(\n<OugADK(u\\BO7[O\'.&.ڏeDWJr\'(?辒XM\\|򕨨\'.!*)QQuh(Qd`FW7\\p	Q{ً9}q&ekEܺB>BMgNYO܉xCܩ_AMcN\'Mk)}wr)`\n⡍-oQ7oL&\ZDC\"Q;Ԛh|YL<YA<I< %!-̈gCY9keq%-xA@$xxxyO|\\FDԽEt.J|6#>Ӵoi7lKGt\'|Ӊw3DH@opG񻦛ӫE{}?~ӟS>1px.%/H ah.VZ 1q#q/AGWs$	986rS$֏= B8I?#3?d\ZHvh)ɾBy$簞X\\i3:T!)<Oj=!5NZ$R\r59ZI\Zމ$/%\"\rRQ ݚ4+\'-AHC>4O}\Z9brNrd0r!iIi|c:i|k7i\"MF&H2\'<si֑c\'_%ǥ+IѣH+Xrd9^JKlYO6&m mgoH5D9UM:yI:%1q;HNYDN%MNFN˯#wΩ^KNI׳WIHwc{S#i&LyD)Nέay<g4ҳdą\\dD.*\'<H䳤ס}b߿gZWN!}cҵɥ	{ȥ?-eeKI?ă\\fN.@CNhM\']ɀɕO:r䪿`?j#sr\rB\r C\"2w2ʜ᧋2\"4(|L/%>&וuGLf>O##GFndd/FFS(Kuȍ1h2:y4	#7JnOn*~FnlDƬLƴ-\'7;DnNYOƙ\"m$Jčdǟ5ɤ_dR73$ddr׶Nr7#&ɳBd-Εd=r9)@fUYdV+n\'S<RFc/=\\\rK^}HEk:O˴N\nd+Y$Rk#Ӽ-yD\ZY ~&<!-F`#ynZ\"yYC^M!/m\'&\'˶=\'lrJ<|-Y~=y1MNVKZ:䥩/JGd=y`yY=5YIVo!:\"%yXf+YSJֺe7N7k[M<${K>pJ\'\\t CcaiU{18Ml-&nM.Ko{\'kޓO=fY*lO6O Wo!zggg_Ed˟R;6d5|S|=|;||[n!\'ۯƐk5=ò0QD~6?D~N~9RJ~[]Fx]Mv?u&{r^h_JW=@Db?-ɿV{Ⱦɿ~(=\"pUR.dm\"TvPDL>\"Hlc.z+{k(|8QXFxKh\"fZuoD\"\"fע!;4!BDHޝ_\"g\"a\rEG&F:o;/2~/\ZA4vmhܰѢqwAxH\"\Z?\\#6!<Ed\',MM.s9\"G\"ǖ]Ѵ3ED.D3Df.#ro=&,;shޠyCψryg<NOytZ-(ZTghoF|2)Oȧmchoh\\sъ?\"7E+lD+?cEAC/T¾6o.w\'Z{VhCPhCц*R^ѦnGQLB9hx(Bx(	>+yRHh4D)!٢Wǋsg>>/0_+-x&:4Ht(c(B()T#dHmDGM\rEG:DG>rn!:(Q;щ(mQhpZQѲzQQP	kDDJFJf΋DD*kEeVʂD凵EgBD3EDWfU&鋮nUD׮]PtnF#,Ɖn~28.݉4YEQvQCRhOQ讨)XT0A8K*zq5+5\'E/bE/^NX.jm,zy^z,j)z3hM[\n;4QǖD>/[(BїD䑢gEE]D7x(o}Q&߃6ѿbJ,F&UQ1(&]bQX%K˶eّblX],8-2X1\\?=ż\"dXFVGJT<t5P	bCC<|xD\\#{xQ\rcYVYjتC<NUbkPlTl$X</WlJ<@?S;zb6bO.eltf`صP<kUxֳ/b=bb$9]kT=bۗ-^PKFkEK;։WmA_)Ł+~WIūj8tDCg4έfquxMvMcqx\\-qjSq<tC$|	\Zwz4K{!ޖ.ޟũQjiӒkO>Jggi֟#마w_>]\\,>(.*>e(.{G\\ء9nrnĥo։ƒC/}W*Wĉ/{/o._#R+ڔ ;!m-H|qqV[Cķwn9U|w(~P%~chq%\'nw7M7|7\nō[M:\'`q[73/_4:_ŭ6G-Ƈů7M;ix+ğx)kşdo[]wV{{>6l?:ſX&AK\Z$r	.K%xc	XB> !Z7HHiX\"\"~HD$[%bm=(]0A\n	{Or(Qs d\"d2dІ\'FƝx[n6^D ]%C?[\"1<m.NosIb{EbX2ꌣdTQhdd%=$G;I&Jl^Ml]3}dွq\'T#B2L4<NtĩadZYĹdF,dfnɬk	I.wK`$d$~CJGUd?bg$KgH_6KIDI<#Y<X$[+Z%Y͐!oLϑ8IV\\Jn\'Yg+	z\Z(	zMfed뽒5?%!%a֒$I{G%Iă\nZ,ɺ	h|d\0I6x\"umlJ^ml+I&iGHvKOHx{H\";do	%JǙHR}HL͐}-PK2Irl$QPrtXrtbLWI\\eܽŀ$i	}7ɉ풂SSHNeސ:Lr!ٙ$>I%n$>*IU%e+$e]\nT\\_RHrm^[o%wxS%u:5]{s%v~XwQ9I%vђےg%#s%ϯH^ yKbIɋˣ%\rݳ=씼,yIﳔ|0|^J>Ŭ|WK>7||&3HmHɷc$otkJzT;3K%?GI~<(m+*xzI\n٭BSl0u]I	iT$KO$KeCRER/I^\\;-՚(ZuKmX:\"wtD?ȩ#äF¥&`tK:J!5t̆*kff{R/.WwJǎI:6P:Uj͍$ڴImg6<Hv߂FK\'ڏ#V,JS-BS[Jfܗ:eNi\rJg:*uv礳Gq)TJ88K=)C-FH̥ORdԻO)m,]v8P\')&K-\Z0ĤU6KZ&i9i\"i{4DV#\r,\rJCuIC#>H^nuF\Z}F:ҨS1^I7IMɔ҄;&H&WJw.]]\"mI?ɔ\\֔JWK3͐fՌfߴu =zwI]\\z3i*=5ll}ܺ򃷤cii\'T-TZ&!\'޻Kzփf;K}uqҺ{pޥpaNfG+\"5QƺҦ	\'sNJߔ>Qi%i疑ofH_zIێJ_[%}kHvK̗߭~ ؽMy%BiZYK6Xua?T{ni_Ү\"eCiFߕ/*!GڏG/2J~<He3s~AK&ID\\.eҀ-2iL~PR/ϥʘrLbdKu?.cۗ3dOq2vLL;vlPt8`tlpcL7Ljllh0D6VxM	rG65>$35>=LY=#[,wZf	JGp|}h|lJ\'cH6mlIuled*@[B<D6y,$?>L6\'EF9XZ0{vw6bH\Z ÿɖo+m_<d\rͲgddk:uKdd?e3e;ɢɢO6.Ŭ/۲u,0Y(v]g,\'e	#e	˶{xwNDTK]Rgzad{\ne}).;Bv ;X\";X7D;L\'Yv=U#9cV~c{]e>ee\n<ܕ&;c(+\\ ;7gmم0Y	KsWv.PvœUɮjnzdw\'ꂞZeϔ=l {<]Dy[,)kt=KY\"k!\\e-]Ke!K쥱e -{Y<BxSZ&Q־CgCv]IY.l%V..v{%kdrd}5?Eoe]27|\rFn-GFQ09Np9~RN,\'~-nE%\\jeyrqGNXȕl69{\\-I7`\">kW5uNx9r{Aܰ|-#o}Ms&GdMM5MKjf?7\'Qe,J[g\'x[wm,Or1/*w:yLq@>mE*rW?9rkssNF{/\Z*_tY[ܣ\'HbܳH(E_(s˾@uZ{K>/5ZxA|B||]N&}<7y9y#y<\"|yn|LGQ1Jq<:I_ 4w|t?|X~<nyyvHyr|ׂ]74uSޥS%򃋶ź˳˳og~(>[<H0C~<OGMEcE/+Kgɋ\rS%ez\"/G~ixyeyiyub\Z&͆J́[\n6C|ߖ]?a*onʛCM5gfg_[Yem-WۻX;C3U-iOZO˝?}Y>X4#4Z\0 Зzޝ?*{OW.ם.=AeJ!\\\nPP\n_D/Ph=|\"Q)Ŕ8`<%$!JXJl)ٵ9Jn6@\r(AQ)HGQSӧC(.ŵPR\\K#(MbJ˚(7MXRCPC\\<NθB}I3)}`\0~FSCQRjX=j/k0{655b5Q 5\ZG|]CMM(K[(?5es\Ze\ZZK~F1\n%ٵT|yb=H=}\Zg\Zb+5nS?5n>j\reuv5~e̖lć(;]X85e25eLM	C9YH9lzSʩrEQ.))tEW_)<aCx~f-:H	{)7&mr?6ro79@_KDPRCKy-]R^\"))_p7廗nF-+EfP~wZ?((\n9*njTb*p<j\ZjrjuR\rj<\n;KP㩵Op𣛊,KE^ZLm2vNQѷMP>o6wRNR[&(-s8X*tc9XDZATҦ[T#uʞu&ۥ={\"@Dظ:pԗJKϒP鯏S\rSQ#⨃Y?MTEe8Σ0=L:#6PzaT~\\JoN0:zak:1$:q7:;:Ǎ*z::c!Ux:6:s+u@yR%ڨeT)*~:UvzUʏQ?QFbsr	uyU=j1uNFg:UfU$eQjQ;Nv]^?Rꁣ.`\r!S Ѳj`E5G5U$RSӔԓɁSG\rLϗz^HHnBkt՞jj/QǨ7è7qꝎ.v	.8Ju\"AԧA~N?Kd5&ɩoKo.OTWfMo~NAr-~Ϸ_Tr7*NRΕ\nhR*YK(^:[ARȂ\nY?ܨMAݲS(+wJ9\neBY٠`4M\n|G)<uCG+A\nu90\"\\=D(\\14TxVcz\nA-\no*F^B1⟛b\nM\nҏ\nkk&Tdp$xd)J1V+,W	Py>MaFlWyWy08(,VD+ƾ?7X1b\n˹\n	7:^+lM\nc/vZuI.*&}^7r9\ZR8{Ӳ(NR8Pq\n8ŌlL^Ŭi!\n7SFemF1[bybvHD<y\"\Z,(< X:Rp0Ţ1c($s[ދKV,鹦𭟤X{_qbYBdby|\ny\nP79cCuns(\\Q/Tr~MlB|=Wm\"T)l7+»+(\"녈q}*֮;X@*EM_+Ɋ<Em+6)+v0;MPH?ؕ)v\'J{GSu[*RWe+R7MVnQ7(;}(2|)26(22š&q*?YfAIw?GvKG\nRǅ3<%|4E~ɽ\'AEvbNQ8bӿE[Պb؇TeW]rZEQ\\ZtUq}JIEeE2_QuVQTÉj;Euz\nў(n\\TjwUNx*]Kum:ox pqqEchhj-R<zx**摊fpEs~ųEKsm6(^/tR(ޝxR~EGLsJSS_ŗ]	E~O{ů_y__a\"*!\ZVF\Zi\rͦCu4rI4\ZX\\\Z_/J\ZPAgh^-V=Ą%/ӒiYIMOgh,Ѳio:\04[Gsw_*/SѪhuH6qui!>Zњ˾I5}<=u1SC:Ѓmja[u\rZ衃uA0=4G>tiFzm\Z]H\\8cfƋhP/h\00m0ҾH[ҧ:	E=Tum5m2i_(m_MS*GSTj=uzٓyS=͹@DLF쩠]j.koӮXP/aJܧE϶8H~@Hhhh=\'@n=IzZE/O/	ʧ}nͼAO<?L~+\n\02:0HC\"yѫ5EZ:wPG5k-j@EM<zm\rA]MoP騭\r c:}z{5?YGHoHc7ӱNѱQӆtt/3:n]O\'-S:qR:8CC\'/}w,;g;͡wtrV!KG:L\n֢w8NT)3)Wt\n:uGs*}#~MN\ZDgN3҇sC^atVݢ	H?i>hIk_I&Tyq:tbw )]p.>ӧnӧkŮWȇ.KFL;s=9At];}>m8}*s]\rqmg1}jEթk=Zy}KM2עoOo_LE7uQ=>O~b,]x?5nؾ~$ʥя\Zҍ^ǟO=7}Π[-ޙt||E\0zNniD>w_n~AlJ2`O\rC;~үI􇃓sY4AwlKwННˏӝ·&\'Spuu25TBGdLw-@w-\"f]Gݿ=_c>|e%/؁>*k%:d[8BtS`RsE)ʵP?nRJyJ{J(Rh*ΉJBILQқLAwO*S*\\\ZT^TES\nfRxG)Rj)(GnQj?U~Z9$	]ޕJ}eHK9uʑF/)Jc;{(z㳔cw++ͼ&?cyrܔq7Z9{Қ6ً6o5ʉυ)\'<W0J{줜|A9sSN}R4S$+W:V:;vlrZr5>uҵLz~OÙ(g2WW7Q	3A9rsZl\\grIⲳJoJ\\϶J_7J__cnCXe˾+(וˋF+TDrp2HI*ە\'(Wo^\\}_FFU_QVʵ	2:Qsح\\7I^erSwU(c)ʘ-<߯fW[}Qn{F*>)づws+#b	m[@;ܾWnOߢL|3I(\'PjR?+wJUKKUʔ4seZeece̘hl<4Qyh}PBCQz;e#Vʣ1ʣ6ʣeWǰJe\"oe[2/(SZ̿(O٤,P)&+OǕ7+W1HyV<=Dyh/eHezdfħZYt]Y*<wyLy=,#*ˬo(/^Ɣo~SVX*+>Q^۫cJ}_+/.*tRVY+UٯU]էieu嵂O򖃧֮7qÔT\'̔w$m;Λʻ˗*lbVi򁡞reciS@D옋elEM+)_l3|=\'L\'W!廪Be{h^eR1SvʯǔW~?>O5EPvCʞweg`/3(ߗ*UKg\0faM`ۯ3ҥ4\'72qQ0ɌX:40Ji3a;ީQjHFؖh̓ߌdF[]h{3Ͼ23:%/g62C\'1F4Fo;F2{0	ڌ~)1t\\ˌc<c\\1r1IɌZ^\Z|gdX$a,Ǽd.`{ɘ{yu@c/d&3BII0p,35i1iٌӪ\0Ʃqze}eӭ2G;;n3:3;3x!`tffAbc(3jKx[1>W2_c	ko,ݪ,m\r`,[,YL@])r{J4Y)L\\&8	?΄Lτ3!LH.&.bɄ1aVQLX&-	7D|_Ϭ{Ĭkc}[ì7Dd\"C\"ՇWCUۙL*fcD11gօ9̶!Lw0IH$d3	LL+]&I/]Ic3{˘=v33)h5I2顣N2A9LfX&K5\rgnoc#F09cRY=9rm	s\rsoKerۘܛr&\'&R`^Oc=_0\'OdN2ɴɜLAsLJm38sf#SO`/0ŏ23B&3_`./}QLybL&b.Mg.aa\\T.`*L4su/S\0Szsc<\\?\\L:z L\"scndnVG37_52\"2e=e0,e}Oyy<|-g/0LLi9i_C\'3\'棝̳Og0-̋+K3/S6y}?y<¼ryqa͘sL\ṙ2M\\gwFL|y\0%ArȁK1_Sqk)|c1߷cg̮0]쥙c.< 7{ߙkFCfhb29B90]>BX(~\"h9bOo{<K ,2/V4+9 g~X/9KG׬26fi,~R\rX49|ebmYI#=U\rذjPVq+HpVKjX8|4a{?gCeZVWs5cusQV7̜շSzAX֠5x\ZZep;c_Ŏ O#,숻HȴaQ7c\'fYGk>\"5-6Ys}e͎5y5qq//V#CӤk=k}y%kژf6yZD֎NZe\'5d\'}du(ཟuֳNo&_XsX~D`N=a4`笟iy+Ʋ\nBXcX/ŬR].`\'׳KjjOe}GTsKel17wCͮήg%ӭ\rz%\Z]bCk\rƆΆi=aFapR6BkۿGf6BnamhO6:d;nncxx[۾q6s6.o-MMg.`lٝ-vgR6yR{2vϚCikB6u^6u&@$6my6r*qQffBCllN9q=:a9{tihJ>{M{li {l;6d){<7^ĞаcF^lahY\Z{:`\0/ٳgjŎ?ْZܖb[ܣ3H[ߏd/gTrryY`jd]daOސG7FH={j։uVWT{k{T%2܅}0<ia|GG͟ǚA9lsJ\\}6}ЃmS̶<7dLb/Ǿ7}yr<J5}˂}mnþ}Ɉ}kξ2mosf~=0r/y+	~~޻RZ~hد9$;|>aǲyl6Q̟]\Z`{}6k}d}qlj,_(-؁;9l́$栦\\X!w9d<{8s2#p/x)\')7꩜d\Z\'q20rPj)p3;1Mg9VgǾ8q|]Rp5a6n	9e\ZY4pN{g7(t0c\rtc93ATK7nؑP?nx7b=7d,7$yY͍lXM医q&Q߸Qm]nn׳8S3\r.4/qmCBшY9ǍO)ƧqZ-8M!`$g7.gtgoQMMl&_⦞খsS+h%sRMSdr,_87xxt7`	7wDn9[nn^1nL,-VqɜG.S&<&*VsfqcnrK<9͜[u90Л[\Z,pnr~zC?,8.8P\'r+>q,}2n&.XtB&qдR.[-֣?	OhnwcLb~Ŷq[ør,%]%UuqT=Nܞ;Krs\'_ʥ{q)4>K˥7wNeC?<37;(+c=[\\˻^]p\'mNÝZ\n>[iWaϝvsgΎ Y\\[WR;Ý>ʕR5W9++̕\r+ʦ[res~~pHWAsfusWor[ʯkڸ돓܍4W;6Y{UqwNquh&wO3b{rl\nÑ9gQW_kx{tk\\kx=+_=\Zõ,3b2g?\Z26vژkY̵>\'cil1]:pݟu5}t羖\'vp]Cչ֪+g7<p&qr8s}p}ڄ!<ZCR.LGz<Qw	5Q	o籧n<\'GI\"^4mE{xÿ%NR^SKTFO\nx4LxEIOlsymygl=kU\'_:s?7!GNS~󆧵x2~_L~Ğ ~{r7I+M:QFѱ4oZΛ>ď͔Spbzok[i-uWV8jl\"o	?f??-Pn[omjLy۠w)=%ϞOOYO);3si)He-eû3DyCcj~~V/»2y-n|K^[C\'G+\'NwJ ?ʄ~[#U`:`k8\"_χ!o/PlzvlL#bg~Z9_/G##Q_\nT^oju7uM7Gf[v4[~,>nA><K|o+D+6T%Bݦ3=^ OS-|ZAV?UgYe|>4v	SpϩiS1wU:2>.\'\'wz*`_pm_8/hOmO_G.K~Eu|QgI5%	ف|q;$2/)ß{__j/4MLeG\0!_Wvd+NzjmZG݅g7b[-em`vsgxg߭\'UV.;?,ׯ;77~7?\'\rS`*j9oHᛝ\\-U=/9|k:%/#3W6~\"f˿UoRos!}};cx=wVm\'^_<忶oo|.wGG__&z<_Uyo_ÿM\'kUy~FLV*p\n0DnvRU_BWaΩWU*QEhT{\\%\\%;o|\nT*<LE{9*dzU짗*J5P%0E*hJ)RiN<SiOUi\'ViWRt&lP\rƽTNLuK5Sҏ|ҿ`2\Z_e4|bdEjTըtըhT5ڋVS^WюPKRTmTTݪK.V$%IUeS|~DDpjN* [4ʱQ}jZ4y9C*Y*Cǅ7WMVX8_5stQٵTj{L{B{EjqTs|UsZUs~榾Q\\w^5j*;*#UR-\\QjQ?c\rUӎZC}!DdrϏ*_iʷF,bjV=ڵ#TT*Tl<Zy**8^Y4d@S>w^F*d2UHB*TK\nۤ\n\nTUk;W֫U\'ǫ6\rثb-͜*j/֪<U©oĊfՎ4ծ8վڥMcTݪKf\"ҵU#T{TO,l*;WѪcU^\\Un*}xTu<FuVt_*Xf*(:_\nPVuUmTJNfJ*uS\0򒛪&{b`b0Uv%+Pu)JuY[u4CueՕ=ꉪ>aT_TkCM\\>ZuYU榪oE{χ?Q=ϺjXjTMFI쟪ǋtTOE{T͉=KT^^f^f^<QO\r6Toՙ-|zU`U[9TufUL>Y\\[qo\r#TߞTu[8UOLՏ?OUq՟TSū~W3F_j\Z8`fj\ZITCǎW#qG5qA&^TE&jqF-s|SjzWV\'ՊjGLU+}j9\'jZpثf5?v\ndD=N_=qz,~jAB%uA:bCE#R4U|rFmqLmtF6NUM&i\rjWգ?MӖǘP7S[S?yV{Hm9az<)>jk&Em=[_mQmsPzģv[mPOQ=@zJBzJAK=՘UOR=\nyjmMicoޫ]3GS袞+U>4\\>}IzTQ;wz깝36=_4.T/V/+R/]TY^ڧ^|Bv>޴E$^$CTRWKwک2jڿ:`xzj:P.VSZ9W7Wk׫C­!y.PVk\'Q4TJG|UopxZVo\\j4zӼM\ZuBul:0Vփq\'[Iu\ZzV^Iu΅UꝗcCNQ8xLV-U;VN1SSU>bNox>UQ4R}h|v#+YzU6A\\=y!f\'6O<;> 2Y}Kuhua*CԧgYuc$S]ݧ>Ͽ/lTŰDE`ŷ\nH%9˳՗_R_9,2S_~[[ǫoLQ߈[q㶺v|\ncwW%g_W~`rF<Q?t$Y%Տ7^Hdq~wO~ʠ竛fUPܽMjoXn0Rn4j߾VTn_F~tc u@~ӽ{/\'Ww9Wh{Ҷ8mQtWk^=SԿ,PyQ7Wx/Q2| F	ZBr;k#`	8C#<o	$L%FAGj{l\'A>TP&8es\nA_P\"ό\"A褠\"LОD RA;EBd!wI~-AZd040G0<A_~Gހ\nFwqe0r-Xhc\ncwcc3f0qpaRaR0+^|{GZYo;*L.8\0K\'\\H;NS5VHp	fWsRyV~¼¼W<\rǸ\".,E2_\'xu7KG²$\\/	:3Boª4WS_Bpzauaͅz!DBD!th!4A=QV-DDl+!n&Mq6\\6\"BTFpT4#9&	1҅揃--2\"maBB\\8!+C8_o/{DB~RHH*l-l	YZ$ǗBl7agwa?=W{\n_!e!R\rT=!u;쒐&o	g|#dr2!cR!㷋%d˄CCӄ+:,OBVJM8	1#1Ocs{Q˅5p|XZ!O!Z!Q!?!QOsNoNbSnWB3sQ¹qB&rsBAPD(	.9\'\\9_l6K\\O(\\UZ(T	՟ٵ2frpjnlnDX	,-prR$Yr\\(Ed]npF\\w]Wgp\\xP?Us?BBc\'Oh\ZRx<Bxj7DxbtO,UhYVhyn$<*<+.	/\n8{Sk6cv-Vh,o-\"k B{~7CY)|>\nÄ\Z@:M/G6)BJ2Qv-H\Z@辒$z0B.gSUGY.!\\F}\0Q\ZvxOk\rdدj\rJנ^ha\Z\'\r9L#ھQ#H#Movȯ5hOfkk5~\r]sHTO(?k75\\3>M4_\ZZ-@#MhE4:4:/Ojt:?h?EFkNi5Nr0JK3l\"1+4F\ZQS(QQM5~֌\Z1Ќ	~,<|SƢCK3@fr͸K\Z\Zy	}C4I56\r5vNةk\\2f͔4{-5S4SM4Nssu/.L\ZK5LfR3kgqQqtT|f\\fGA͂ߗ544ς4sfhB4^5V;4͒ٴyMح۰S|fEtfE[&@{&i&Cf}ʥ5+hV~]Y5fռRMP*	xYy8oǑQܹsg:wI(JBD6!RfRJ}\r%T$K҂h~|><s=3!]7A8PL9N8uEQ%R^R8N]@8Ppc̯= B@,!`!m?g=\rz΄iKKM[.B	PD~p#BY\0!҂pãp7GvpXB/b-&@9+GHIH<KH,p%wwf>lB2EHr\0$zRkMV	na5[K+8C߻YDxH$<t[DxHx̛ݘ8?cF-Em%C6SBvBٕBIjBP~PoK=Pw{1FBEB}-pАGh&45|$<!<BxqţyY:Fhnr\'ZiVaBXBk,s\nՑτ	)Jτ%#ΈM,+[bKOJE6G.J>FY]Om!>&	}>K	}O	Ǭ	g\'	DƕU.v5âۄԣu	_	EI%?$	aϘ0N!ȯ&YM\\JN5@]XOs\nav0kGWB{y]$GZ\'Dv*Qˌ<@\\0CQ-v\'Q=%j~k$.٫JԚ!.ݕB~F&Hu^uuozzy+~>$~H\\mHྋDH\\dr~JDCo	D:n<!2䜉D=D\Z+\'\"#ȹ6!li@G(!_qmǈ(D(=E݆DY?@N4N\"\rDD#Zq:qͯ@:⺚h\r\'<qnR~܇QEq	h6CK|D@;-%-E^DQ%n4q[V&hAi nL0\'ڍLwEݿhNܳb%q*qϼ\"с#:\\8LwWiѱJtDt*#:] \\~&%G\'xL<N\r^7c-##zHy{\"%͉$p!,8Gر4@TA#S%[x^=x-\'\"b)ŷKcKpe!Uiblb%gbh1C\n<EFt=HatUx.Q-A%ƙ!9!ƽBL|ASELGL*OLDL~?_눩niG.i3֞\'fxČ/̣̽,ĻWW7<$fW9EGy/!J7tb~XXC,%!bm*cJ,? \Zx~bNbU&bUb=xX!sĦωϯ V_?\'Q$6o|Cl>Dl!x[u]_߸?#;U_[;ЁN%*+d9jbw>g,1Ԅ1\\@v=t+?(8j!=6op9#~ǉ6腝ѸR☑8*\"~&~m\"~{&G}8n%qR/qqj\rqjN@q\'N$\\nEiK&ZuG\\B5&:L2&΍k{aq~=\"\n\n\0%q@4P\nlT\n_@XxX	ŜFŚux@}깿\0\0͓\0NXAg\0+N^\014 ]\0p-\0oa\0L\0)( /m\0]PLz	!{g-ԷhszF]|Zi\0Sc#|0?\0v5`n7\0\0_g%  \\\Z^˿\0j#\0,C݀d: sdy*?5K	\ZrV8\r\0klku\n::;$ظ/1/00g\04r%`kf`I\nXf`CCۀ]\0۵iݭ+س;p꜁˾{]ـ|#8⁃=Ma8<\0\'O[156wN8>A/0[t;}8q8N> X~.ρE@`f>9Lf@6ຎp}kp3i\ZL?D~\"gK<[ JMZ	zD_KnG5\0d Vu%\"8% nj17$@$;`[@J g9Hii@xt<K\02a@m?apW	p&\0V,\09N\'{!@NHu|_\r䙎\0a@m`P|(<	P<%vR#L\r\'\0Ur@՟dfWPs#\0]C\r@cfiw<DOͷO󁧞sfݣ@\Z3EhSZ7~v@5c$xk~B.tځ=8^6+\03q@\\0З0U`\0YK5`q;0v+\0>_h$U^*Ni<&\"t`\"0Li?oo9`;`>A{Ag@hGPE(.]	A7@]+PTI5@@*9\\\r.p\\\0\0uՠ&ԣ3@h9p\"$AR4Ha$D|@%>iAy($fL @6d kf恼ϋAm$(E-(}7Aq\\6(1>J\n@)PT\0bUj\Z\Z@cuxKh	=ہk_p}q7pqpch11X<n5*?3rƛVW[u]hn?9MmO:9@.pϗ󠃠tx,^w\Z#|eNS34:MQ\0tz&2@a!𝏠9虙\0z--\n*Ǐ.7ǻV\'+dg6}\0f^r@N{П?ZOg7(3`w0R^\n^P\0T#BAo{4B	\\^;\rns`\r309\Z/oK؁`	{0>=>Ld̂wJ\r`ҏ\r`rB0E7_;`&\0<uJO)oY ay03[̭=>QL\r<8029o{\r,|,pYFq``,\0p,,Z-p.X\r,\n=y\0Xq+X|,NIS`dg,Xr\n,K/[y{כY:XX	%ei\n`XN\r\r}u,\0˿\r忽\nBU01+l++.TR`E5X1ZV.+?+|_+*f*$V~č`5:VՎ`u9=\0ןR:\roaXsft`J>OەN.X?\r6>\r;B>Pl`C>l;6l5&X\Zl:4[%%f\'҄H\Z+n#*\"|6|5	ofi>;\ZXc`J/ؽn\0~ ?~K{LYp`IbUC49d\n?G[\0d_j΃_7_ͪׯ[o?og\\N^0@/pJN?r@pp>Nӹ	מQw:s/;UW_B)In;NO$$fbؼq8h3I/wZ\ZICI84\"$$.>iɕs$-I+inRA;$$MWN$JZKZѝk|7#`V)V8#8yDH&$ L%A~%:DɧZDSN!1-IS$OHo$΢i\'Sc\0$50ZDII%$\\KyF20I緑Vk˓V%ou϶LT]I&ImH$K;IeI+HJI:6*̨Hf1>s$s5Җ$z\"ˌ(ɆEUdT@Y=gvKH$W%B!$GDoͿ$$ע$7]fJr1Gr\'R-$֎&~I:Āt<-H6}L>>H򾌑|^\Z|\"3#}$/K:e<C:uӗt*Ft)p#$[IcIAy3FVޤG\"I.!]yNȂtM@\nL%;HI들K[I?bHnVD8tg*)IRޠT-)3崒tWN@>D/zOoQEV}H^I_Dzh]Nz}h4!ID<FR޵rR?TqTōTpTvCL*kF* [IǤlTdTsAR@^OΐO\Z\"5#5n#5>\"5=!=\"={l,y}fV1:5zR#Lz\'N\"!u.\0R;H]Ioz\"yR]RRER+i\Zip}Ҡ;Ґ+ii84>/K\Z9<O\ZyK\Z4:N\Z\"M\"{H\Z#}9BY<$M,U#Cv\Z%M?%r$&H?n~a\"|ҟ3ڤYG5Ҝ\n47E˹I[|Q?\n$L\nc!9CoH^~#$Zp$	|7\rb\nRٺR5kT̓+Т!G5Ā4CK@KZ ֍VegHMH;ܔ\ZVIV\"6\"\0f\"{S5 Y\"/+CgB5(kl!tCfļOX[!o\'&C|\'x w4Ԇ!\0$X	<w@fHPAC$gM4!hgЪhՐdmd0c	&@&a\0d5d|,͆r5kКuh:)Z?C6(6t6C\'@f7bh?&dP	YBFVuж!ke:(	?mϿv,v8iA6 h;dG\rwB}:|hZh~vh<\n\\\\@n+C Pt\nt6\nY6<A^!/.\\Kg  qOdo|Aq.C~L!ծ)T:ÆN3MP\'\nr:{?].X*CfbRkХ&ՋբP6\nՖBa(I(,>\nk[sz\"~AInL_A7Z- %+lp({=o\n?%ЯA	롄PB_\'#J.R@\\(8q(\r<Ly\Z9rBw+lN4`\Z\rA	|q{喤@Oe}{oˀ\nAˠ`Uv*X@rr+Ty*C$T<U]7d5BiGz!>\r^f@BAo^7P[1~u8OC闠P\'u~?ϡЇP+d$>eB\'54/h*hhks4FCc[EЗa۠^ZMT;AФ,4=M]Q~&Aӟqh&?\n^B_Arddcd^Y?Yibb$Yy;NV.*1Yd;qdKaojXdM䥣e&5dm!N;d]-YʔB]\"zO&7Udp8=N #h:2S@f-2V8C摹:ܴd]52\"gy Y8N-ɢ\",dim,k\'˦2dlwCd\ZW&2\")zL^sky}yӦ>9\"yGl1lZ	ٺ-y{9N񢞼\"!W\"_$^6 ]N}LH޳ȃƇUG\rHv1\'￙L>p8GvN{.o%#Zn$dw7dc\ZdMd;ȇɇ?G@~ZqT_x\"O#|~C!T֓}\\oɧ#6\"_B\">1\'曑rVm}FM7E|j6j	rH\Z?z#9D%]bk/Rr˿HYOKȷhM=kI=M]GuCCGd6CN:MNFݔ)ryr9}rƏ=̀k̩rV)a|]H_|xlmȏ7M,#?n$?&*\'ٓsItrލIrAwb!(%\\lA.ɥay)O  W;u1Or\\B\'+k[-ɵ\rz\r{trH9A~1# T&_{m-,|	b9+W٪לHrr[-3=wC͉BGA=m^5&Wkv{{3<X<H]\'D^!\nG\rǚzxmq/׭;^\rwɓ|&y,K!I !m!&,IysΏkn;؉\'ҁ<6C@S&jJ?ߟcFfa)X[G_7Lp^`\0+߂=	Rb4|V.ԆUU,``եBx^h`҅55oKKla1Ͱ.5Xgy,cy^b#5um`b#y^iy\Z&`WW0{\r	#0US7ܵ0uj3LiiR;P30IS8c^0;/qp9/\\La-	(,¢*XTd	jG`1hX,KXjOUaUi%lZ_\n5eɞSxc\"xc&lo3\n/1`ؼXzm3l>[?]|xׯ-0lV;ax! \n;8os~z`y	츐;K&a\'	ؙ\nvj]vAcصvc1xRدq>e&xgogSG8 2\"pPR[\rx\0_˟ކ/ހ/K7\'gXwpuCá06tt07V~hXVc>qqR`8^!\rNR\'p2M\'Qp}}8\0Nl3P^NslZG٫\'{OUn	5^d\0E3^pI)\\\Z..{.?]\n*&R᪦pڷX\rW_>W5T\ZϗpL~d\nn\\7.4&,_/ptq_-֗	pk[\')*_׋On_n;N\"uLsr\'Ak_ܝp?-?\\2}+~;\"<СRZ<4֭tb/x<\0i߀/cR W\rظ׀]ɇ_gxnHc)mRQ)r(({,leeeA%eE)<\"褨lܱT_vS)\rP>BYEY{RAI,1֣,Sܵ)Z^]roΚocZ\"Eo8sⷄ2g3BL5Q\0G&8ATR_Z(f\nB>3HAQ&-m1IaS؇P؞w),O\nm7\"~Lms(k0E$*RD4\";7KѷmЧZɦ=ȥ^b(!O)F~Sv|]Q֦l΢4R֫Gٰی)(4eӬ!e!gś`e@,G|y5$PNXPl(6w)vNQRvSu)i)%\')({){;z(vR59PT\\8_S\\L\r).M(3CɑCo_Q<R<4)6y!	g&Au+8?儖rzr2{5{IQ|E;(KRw)FՔ/(g)g)g/SVavsU)O*P.|\\l̡\\2*\\r7LHBOeZ|#%TpZ4E	sC	{rˣ\\@IaNl`Sn\\Jr%smbG~1B״p%1<UGIJ次/(ՙ]LLJHg% dJ\0ʃd\r%Jv#	cI5q9J԰RңP*ʋ:*eJUy:کRR㺟ROI 羣4p)\r^*F5SJq[ZSE_)όHg{RS(R^>|Fi\rMi<CyBimmDiKi\'Pe:M_ROtS(={)=])R>>xJ8u+Qz7|[)fVQVQzS\"((|eGz2fQ\n);(gocɴ󔩃K(?2C(3E_kc(6~2;LQŔ*DNo)\"wJQ`Ŝ/Di\"32E.dQN\"jGO\"5RDcT,q܅,y,۪,;h!:_%D7	Y1\"Q;\01--,A_꫏*|!2E+L=0\"5kF؈>CTEnA9w\"AF~3	K5DDVE  K!#C9b11?u+/ .\nu3u}M}$1uEֻT!Mg7d|1ETqs)ȶ?ȶdJvG׌ ;8#NndndȮKkhĎmAݍMJE\nQ9=<G!/|D\\/f#G#GGc-Khnh#D ^\"#6 ꢑq+VDd[xz ޙg3\'FS`䴲=r7r	<Go?EH!=|?$Vr.|+rE\\phrdrmrm	]]~ a5ٍYDXO.k7uz6<ryg\ZUD@nk[\"Y3Hc67\rF~Dݑv$4t:#=?ېHF5d.dHf-$ rw(r};BHV ;<9yIG4F$s(RȯC\n\'\"j?R)rB E)HI		)%BJYqHRک) !H9)oD\rjf$RӁ#R!	Aj+!uH4<\"\'HRiwy\r\"\\qy錼:WYDƞ\"or7EHZtH\r6->^/y0yPtg/F>Ȑz+sS{h|,|Cz\n޻\0Q(==nO䳼o22>|	Do _o/D%F&#ں$RFd&dv#3yώLW}7z3>V!sB\'\'?fd~22h*gUG\n\'qwLQ肧QEbpUhDuʤ\\TUۊ.DA¢Œia>jF5jTOTˤ2.5D:!Ityg-;p8EWE?4B(ք{Q(0r˞M&J;\\P8Q3_D*THiGT?@EW7grXxRQ0T4]%|A\rNk>Q\rXE]sv3v6]H}]5yڅو]nfaC4D7?~k@FG-D-P+Ժ:jÊEwffv}/Ծg?a	3}럃3|K2EAOԱ6z`>n3Cu8yR\rPׄ cS8q-Г7\\ѓn5s\nIG}үDOztt\ZdWRA/^pF/X@4/[ge蕠\ZJ\Zz;^ݐV4g\r?/G-ш+\ZF$7n7J/Q4j4*mޜMFo\rDcKX^4mahM\\Tqމ&mAkДB4sM|дh	401[f^YnѻbW\"uRZhμ19&}q1+Cs\'h^Z-pE\rHwZgm@%hi6nZ.߇Ve0ZڌbMh}A&Z2mPjChӗV*6}}q5m^\\B[zV0Z}힊?\'iEhن]}~+>bJ%h=\nVGlv=hϫ}GګuE`D-ϯ-Б5蘬\rZ~I~tA+DB\r:ɜG\')iGO<gy~yй[X!2@ɳT9RQ^.ܐC]8^H]iL]OGQлK]jQ*Q?jZRWF_vTPT\0?\nETG&\\|\n8I¹7**%AE5vT-{*͒J5TwTB7KvP#T}KeGS9(snfPmnTnw*?#*Nb*T<ݗ*V;@J`*բEUT)Ao+qh(jB5n]J]O]sĀ.E5{jNj=Gݼpje:uDqբ5jSmrՃTb-+E5ԝ]#TۆT۶/TeA=4ui˩RR׶S>S\\DuVҤmUS-(TT!-ꑅ۩/SP=Wzz6K^FjT6c=z\"zK{h\rG\n7ϱT[ܷTߗTTu~iOqSY4=gLQB<\":nR/?@lA\r6QqQ/+QW0=Cԫrԫ*\n*qkЅotjX&5<5l5Bz&5*\ZU\Z7ztzs\Z-SK1X5޺\ZBM0GM7&:P=gr)5T~j=.5~<54~FڮBW- eESL	\\)5?jq2q.]:57x-5=Z0?E-tzP\"TS˩S++\\66rP󩍕&CjSO.ꋒ\"ͱ\nJj˨9e꫽CW_m7QjPSL5jUwY|껗R߯lvR6S?5~GXD;OoXG4utR\ZSﻨ#_⩣G1qoS\'7ݡԩiK4ɟ:#w:TRgܮSgAU?*?osEs?ߠP/;:oL?H;;BPɇTh\nCki4Řy4%o4C}4Oq4o\\J\rMe8M-z\\(fmx\"m6Iޣ@8J8H,-ὡ-~N[|ELӊͣiYӖ7fLVޢim\Z}[A#M5kh4DHCQRiԬl\ZݠFwס1L,h.\Zsv\Z3i7Pa#hŷ4$}Ii4\Z?M&J	\ZhƓ44Q?MfA[U@3Tҧnw;O3JB5ik\\7vmD^6hM6L3if3iiilymKmK|6bf0f9.m[Cۖ}IfeʣkI]\\DىShi\'hiv54\r=W{u2i\n42O˃4g47V-h1}@;_O yީyh\nh|.VS X1<<vfsȜ$N;ww-gAhW]\\J)M^IҤEmeH|MSHV5-2vwƁ[ci	JZ³tZb;ڝWaZ2Ԣ<FK[@8oD;HҒвVв.?e}=)ܣݏReKhwhZiqhEhrhO\'iy\0?VhyVUC+|G+ZB+j@CišiJZ\'FVM+OG7EZJZVZ5/&2VsilխDkW5t=54=_9ڋSh/ZVZWrVhNڼ\0Z{Z\'݌9u6֟m\"Z76d,Ck-wNZ\'6>qi$hiUh_цChM:@ykHg;w\rо*ӾӾ}}DJMWiS$ڏ)6ss+CDIU)=CI^ACi]\nOnҕҕte=[\nTCWqBtetɗŖg\nK\'Zz|Get]}y	k\n]om}@XG_yl}Gm9t\'ޡ{tM9EGSԀ::\':}AEgT=3/YWM%ʢ$ӹa\":r:oY)7YGtFt]vnxrbsn\0}MVVRL_N}$\'dގnz }>}}}ޕtf_]m[-ӷfsѷLѷq_;wHl;v:mvMtiO.%,>ɫAJwʠ;Hݠv<~s\rSLwǿݻvwEOLЏo=m@\\Bz@?J{QtSbw(ݯ6M?~JJ?@M\\Փ@{9/_Sbt}z)=BIҬG%oңj_|z)wzbjzby4=q-=)BO+룧}4gllg3>$3,GcTz.=g?-|?9F]O˷xLϛI?]H/?-zQ	08J^|2^	K87=geƉ.z^UJ^Clנ\ZJz<vVGDJoЛ7қ?<Go	W3]ߩLSmlz.\'B`17zezOVzϕ~}}	\n\r~jz9}`Ck#5%/N/>ѿjп{O={Tj\'4=1EAdyw5_kwCh/}Lw12^272,fd,|,P;X%eÆv{%%=Z#bƲmڌe1-)c(d.r::kfD9PwAc&Jw2򌁼hfPG3h$.wAOAOSY<`/18]8!3DnCt߉!aH~0O.jƪ+O1V??bna1/?c-e0acV9Waؔ2TBdl\nalؼ>1ƖːbckgƎ:C:İ*;w`a+`؎0v-bp0:_g-ؿ5\nNkƁQo0<88c8XBnn4xƑ9#7Gax&So;Ƿgqqozۣ#\'\\a2Ʃxeq3rgs\nge\0AW_A.Ռs޹2ծ0]fk$sKW31B;9Fx$#ǈǸ.7MFv	FFXF|OF|F #aF;F#HmgAt9FrqƸf-+d-`ܻq,x	a[i`e,b䯛a(c3\n3-Er\'5eA%)fQQ;((_(?KfT<F=FŗfFep9Q^ƨYɨ	b0j2j\\`.hf4b\'gf(F\rV.kNk=w7(ӌwZW]FuѭѽǗ񡼅2W[hc|2>e^Vdv2<@,ch(11ܓ?5Dc1/W:Mvb}U.dLSS?2~K㌙Lo]_:?dluc31(d̹1ާ336t0112d#LR#r)Se@TTb.0#1e.TgX%0>061ɖ3i3u3u⽙:N1&0L=VSsy\rsœ̕L=TLx	a\"UL:&Vdʝ`2i.a2K=LLɿLLc)f1k3嗙xr&^q)JafsLg檀@87LJLC!4tg\Z0ն0)ILML%LS݋L.2͎0737{d3h2p_2[0-3-o2-obZran2d`IIfĳ;;\\;FLLok71w;2?`Jf:0ǘo3.c]\'\ne43extjb:[,d:_He_ldtӼt_xt0).f\ngzy/aH&3=^`zfzY3ڙ\'G3}}g3O2O<ty:y}yaي^f|ftcy~Pgy!rm+!̐_b0f0fI*,qc32o7afb2V36^Ws1$92()<fjbffj32L>Lg{t03o`fu0q31KO1y1E,b̿EbcD`1ʙ31K4?2K^R%5̒i1\\mY.ęݻc55Z%z8flHlf60Mv̧^}ߙ/\n u)}Vf͓|kq컧=p`<2GC6oV̑1_JsL%vMP~9Y\01֨1<ΜY5 ;9{N99;97G9ߛ mg)<c)Q5XJy&,2\"KFKuab-*b-^Z<RzҀY\Z<K#(K`	kIkv0K(e-tڱt߶Vo`YD\'C0^ubX\']aQMYc1,?,,,mbUXX,2ަ8b\r/>oqr,HK%4:YxKː%Q{h-`IDX$KzK&eɜ4Yz,E^j-k,5fXkd[މe4,2?eq.ey,h\rk[.*ڎemy{lX6Otnd;*cmg9[Xο/\\8@ۋX^^+Y\'|Y~c,^Rcb^QcY㝬&Gwϲ.{̺$b]e]na]^zb]\rNaZ	Ye-u7Y+ƚu++zQ7+z?}/u{9.𓕸c5+i)+JX=܃(\\).ʺzఛ(	a=*c=9U*fceYݬBV1x=*fg/^1sU)Uu0XUϱ/vjijWjc%kKYtV4z`=3Lg=7Sgp`:zώ\\jea=z͟;={_Vł[5h=\Z\Z\Z\ZdFYaYc׬ klcww&*XSZJqTK\'뇚kztw/5f̔~	@֯gѬY7kr,kvfU(cͯe棻19L &oS?M1yST)J\0[h-_-:[ԶS#aj\nf/ԚʉLC40́dlllIBuJZ-8NW?.l1уPVlV`+展.bDJ1  1Ҋv]hl`{kɰǨ!%+Fnї8b̔Q9cm݂-`<ƸAyqfb9L ~D\Z1H&։I`V-lVpQlu*Či`F:fWǌs;ISִa&90eN!luf4fn\Z3O\Za[aV#6fv^a;0?)ۥ\rmR\n0l;pۻ	s\"*ylNl!_U\\肹pb.As\Zs>c~\n^;\ZՂW߅ñ#}a;݅Zkݢ=ag?ƂaT,x2,\'vI9D]:]7Bޟ)Ǘ;[{X\nna7˞bY,S,Vw%\\BbE3׋ݡbwRcIW+X\n[K4/,oTe:7cKE,Kpڣeð{S`33p	{o=r*cO\'QX~+aMX!샕8c%\nXZh\r&XͅzVbecK`\r5BkTÚb$Si5{܅5aX+kڈͥk;Z5z.֡܄oðw۱&XגXfM`c=eGX\ZֿwBcا6wlHAؘv.}_9}?}zMObӐ6wοD^fb3Ϭ\"\'z45wMo%3+amg+g/^^p~qc+ͱ=cl+w٪ZتEEl59Ɖ-l\n=lm7yw[φk;:+Re%W\\C+K+^]ef[6a&m`-Oؔ8q|F?lʦyiClN2پ*bc|M6ޏb+8߼e]%Ҥlv-kg_\rl\0h$hp9b{imr\ncMßHdd14fo69pa[nŶVNl+#mK~ٟmƶ^Ķ-wcۙU=hυWn-{_h{:{1bZUZ2/}H}HU+cl}y}Lo}\\&ؖ}bDvDw2r/S[Tc.f}f$K/<a\'/68}d_WwC?!d0ȎPgfߚ5c6g߾Îg1q7#qWofBI/\r4+vvoBݷv{ގ-{j4Kuj؏(UGv$c)\'\'Eb9vq]..y.}Pͮ44`WUjT̮ZȮAVg/$L݊\\b\n#mn3bgZg7;[2;:G=+=!1ؽ}[`	[;ѫb;=Vqm-[*{<TcQb	\\,{.p{f{570{B#g#wǑw(0pܞs.(prWsT|!x<FsTs8߼8p	sƝ8ws4.lhmhĿh\"!%-Pβ\0Β !Ί8+9+ۣ8+28!9$Mh1zpd*9AF96)C>;q{9Ly3aY9[\nn/ßA0WUKk8f8#3S6sd>9^c4qo9Z5uuԥ}:-gzsF7`(KgSc\'gm\rVű<ϱα]ʱ\'r6sM>g|Pyq9qՔrj8Vs<Vqn~Up\ZsIhW_rN:x{p|:8VtVY)I93Ӂ󜳢PYwNvι0sΥ&՜tN(q>q+\03Nd%\r)\r΍<smù\r*[qbo|Ļ$hqpWr>$>YIoIVȟᤄsRnDqҗ&q2G9YYz{o8&J8$9i#QJ#Σ\\vNnSΓW_9y~q^Np\n+9EF9Ŕ\'8%cRNhNySNũN5lƩIũ}S~nNqiqq&pzq)l<[yyBbgБ*À-pެ8op\'8/8S79oI9po}:9}˜ne85&@7Oew98^1!a	0k3?+}8\'8_||$r&7r&9O8?Vi241Tș)yzUUgUpL>l.Қ媛gj*|.jor8su\Zqsu\\\\T\n{J{.an.K.u l./wgq!yw.%_yͥR..3SRWjqC\\^mx?\n\rsVsq\\\ZJp%Lqk0]q:zzPk\\Ï\\㼧ܵu\\g۷s<n暑p7q7\ZrͯrrTv\nV\Z߸r?xryuȏ:p:szrøOzm܃܃u׸n/pݷJzC#\\Os\\ϊN	){l^4Ο\\Lv)6|L9Sݦ܀?czGn%Mx])6uZ({ۄ*\r=\r-m㆝\r{{q#u}܈!=no.7ώyc{$7jK2Vmu{[y{;(7unl?nIWnpo	7\07qW7q>{GM&eM\'+qӛH7\Z7k	͊5Ykɽ/ޭp/ν/<N}@>\\q^}2[d\0Ɉ7-Nܢ\"nQ\"n1j-qrYsܲ~ܲݮ\nCSn宽\'SܪܚZ\Znvީpޚ۔\'>}ś<3y+B;=%H15)f3m??0vJvL[rԹ]p?A܏wr{Oq{+r{E޾>.9nt;lw`ʚIuk6wI/{pk/sGrG~]~QcpN~WǝsdTrql3bx?&s~=2z!O9y>N2YOo2O1>Sn)[--2⩩+/XSPS~[mu[WeUV>i\nx<g-|\Zx+PqUyzǷk	<ȓdvV\\[g\"*xF;x6yGxk	u!o}f\no}\r/Bx[6KYͳt2YV{,?<m}DmoYE3l+y;/*v^~e|V31Ϯ$ϡ>o}q}JxN\Z<k,O]ANyg+o};wT=wtb\'+dU}s<y]_v\04;ёph/ b/(ЋT;w}ޅL^p5eOx\\y_]Cx\rxWثxWsyWxW4䅬YW¼2y^y\\8v#u\"Myzȋyċ}(xNyޝ$N^/侇ǽdo^\\/3x/3/k	/$w!޽ԇożjyxjyMi|yEwTyŢS\\W1+}+sKn**2yjt^?^tWƫ>ՅI[x&^s8k׼o%z\Zxlry]\ry]>md^ݼmއ=/zLy}`^ߚ#~OOxν\r\rxCyB0bv\r>>zV2~ϛX&MXϛb)ߟ|2xN95UQK޿?1o~b-o~ފ/L_\0\n:\nJzbR\nPW1DUz||5jں2V=W2k\Z>|._s&_c7,\'_WZ:W,3>q>1d-.󡓖|X݈O⣄A>Jʧ.$`\rƧ]3\"I|Ɠx>s\n~~g~s+d>/Մ/H%{l|	=/5kK^|UAy|m#||?|_|U56V5שL׭t䛘ק7?=⛕fu\"Y}-ӛFacs/;|mr*mV|3ٓGB;#=l]|[~06<; |I>CC*a\ri[*s|76}WQ:*cߣ <߫lG\"4Tyus|XuOUV%ԎӚpr/S\rM@K}~cu?E\Z?b<IǏ?ɏZGio*ouG?_Ï0?YD~\'qIFiNӗ3Zʿwf?<EostfP;__V//\r?Z/䗾WXW&S~ŷB~~-\ZWkVױZ&~}[o2--3CM7n;;:~w?)?WlNE}h-GQg1GfRf/5#/_W:qnooos+\'\'ou^Nk\nύ?\'SǟuBssqP@a^_X#(~(PaXT9w^,:c)Py\ZCG{%Z;hϞ,@{.G.	V0\nۿq\0V\0|* * 	cogb\0b/@X:uL@[A@K06	\r,\0]/nRs\'j\\[I|#|dfG xg.ѓ\0{F ɍH~/\".V%0|(06kK,p:o3\r`r\rO6>:\'03\"0&t5A`G`\n>X)֔!X%~?7gt6I˦][wVS]S^Sn`}:,~W;	5\n/on\nJ҇7m7=/BpX1YpXpBp䬞eEq//_XQxV;\'纮\'IKolhsG4ierraϠ \"OpmI> Tp]\"DR}AUB-`ALAt{v?]c7HsL\"H8E$l$f	e$$AR ?Uz[2HZ!Hd.\rdrh@}LL,ș\r\n<-x21!Ȼz]}f<AѹA%E&YPt6LP		Q;AyFAe9]PCPՒ qԦXGB\rPAö/\'!&:\n9.xN*IК:\"x*xMGоpS ~\'.xg<+xwQ[ΐ]M/A7\'Rmp[ᨇ\'@sN〇7EYwÐӉ\\>m?s}g#yyѕ)q@^A0?&7\')L~Snߏ~L	?wtI.fM	fi	措\n*%\'X(vG(n {pP(^(/Ti\n.!\\-T.\\}_P}PsQ(ԲZ¥~ƄiP;M$=tBLx@\Z?\nuB	I7	ɆBxKb$5!\'U	{\\Bla(BNr+\nENBiE(sx$M\Zw	\r盄FDUXhd^hg\'\\+	׎M2z+\\8 \\7.*Npn<Rh/VZZN<nY(EmNhRh}\'B]pQFfUpEp]n>eоE^x@5˖FKKНh&t\"<lHx8YxoᑵB@OsEõcVyc{\'>	OZmzG}k?M	hf	ԯ\nAgJA%#s[KGKE	/^1\";- 2[xBxTzh0,S$+?#	o,[\'A} S;H3]\'c	5m	;Iid߽&PVvS6O.\"L\'Lf`^	o&	l[.|\">>$|ذ]_a0O(;	7\\_#̟G{	ƄQae5aڮ^+Յ56υ\r˄#a§.=W!״{7AfP]awk	4]m®JawgAan}aUa_.Prvqoϋ\n?o~;X-@8e\n(\Zj\\)up֌\';> K*\nΟWr{p\ZW0+=+~VU6?|oK#\\EW\'\Z]Ɓ|i(tr\Za[:rKuzKp\n8R_]㄄8\ru\\a~#ѥ\"\ZMé~.8]Gΐ&qeCߊc\\pJ;ցδ㼚8nqA{<.gQq銋]Gq)Ue\\&ⲟq#C7:dkLkܦ5Sڶ7q7z-S|=o	77;f-pD,l)7ۧ:ŸEYn1-͛qK)VZ)ŭv	qk*o?mM	ߕjwwmcp\"\'|r/|wF{5z}Խ\'c|_3V;].\rpWBh!ڰ??!ډ{{}{VN^pK\ru<@ƽ	-G܏u9~W,?#\0x?6\\\ZŃ^sv~H?=_0\'jp:~1/5/OݻxȝxtᲧ\"XqxG~߈9Gi޾oDѺx|?<tO*>\'˫)?<ُ\\Y.-~O~|?Tsz	h?ك;y3G-xQV^2/mc?O?0/>Nx)\n^D6kx7ǟ;?ϐǟ\0x57ڊqkiXoZWnGn	x|_6;t»LzU[xlFV>؏];Ue)|G_VR\rד;>ᓬT\'xŭ\Z> >m\0=skEN{@b(R6\"KEOu^fm-6\ni-yZdJ Yiݽ\'Z4.Z\ZATlhYnhYLC 	-[)uiVpE+|dY#\"<; \":ω@ܡ!&1TQ9(BDTK1*D\"Ε1g _UPqc\"\"oqǬ2xzD|==HU$ ,	CD\"H4 uuEM\"q-\"=\"΋5;ք֡\"ɜxȤhh1h}/\r\\\rцu\rGEn6vN6^(2#։v|m2	m ڲG%_dj(X\"%\nX-ڶ]dUdO.ڵJdUd\'\"R\"ڳ(r8-rHI\\+G[\'ڷh_1Ѿ)%\"gD<DkDEس\r[٢ejI;Wɸw\rA\"o9+wsSeihe31Qi9(X((S(\n\rѥSk.P^QX}Q<Q:kJD#xǢEnݦD1jQ̦nQL5QQ\\P(Q莩(!J:+Q*(5K$JD{E7DiEU4QkѽgE|EE,D4n=+(\\&>%ѣE	QњLQQQgQsQQqXdQ뱨**owN*G.Ujd?DjlQ?NԔ=0=/==ϖZ<EbD36:袎F;ޔ]_7,_ݲC[G\r \Z\r}w}U4b*\ZՊ:BDckD_E_ݐ̻E?EZdLOwbOѬhh\ZaX7Y,3\'^pCH$V;(Vŋċڈ,ŋ4ċ+8b/\ZLwFbX.JR2ҁa%Abm$ֱX!^J$ֳ+^%&b\r1,õbxMLqS41r!fP11C.fg#41[.2|l!1{xDpN[L wEZg1n*NK2Œ?b)rF,$\'c7]ū]TĆ[֊\r\r͕\'k*뮠b{bbxIxV.\Zbv9٧(yko%;Ll)m[2[[7;ΉwP;|VkVNlGJSl(sV@t;X\\\\X;Nzb?u\\UG vC]nćŇkG={=_qH|\"VO|d~{wػ0(b{žiSBf?񩩭ħx&&_R\ni`~FՐVqZ8Ef/?7[pqHy+T|C8ͬk[WYűq;֟A=hq|%qZ,N/NH/Nk=Jĉ;\n=;IIw\Z2չh8 \\N_*gTE3|gY̊3wW|5,_Bg͈Q=ac?X)}G8/y+NŅ\nqap@Q\\4V\\<A\\∸L㹸uqy\"5X\\ٲC\\P\\Q\\{kAyq3]gsgp\ZK%%K \n/[8ׯmom}>7{Tdq\\FNikok8_a^ÉqOac̨cvH<p[<txE<&lD<RK<6\'Mēf\n-?3\Z♞r1\"gW^ϩ?\nĳs5⿫]hSw:KKOHJqD麶D鑪DF\nDug\rC5_Jl%$g[$;$owJ4B3%%K%ZNYcm^7]k8FK_B.!:Ks]h=	EH`-Dӻ%5q	}waCºXqJ8k$͗$=ޜP\"+xIIUZ%hpww1qĸ)Y#됬iO4ޒn\r]&YO&Y߃I6\'J6]LlKk%f%XHtI\rkGLu7+$6o$%՞؞؞.J5Kv+zHO=ל1\'qo8\\s>!qD8[J\\N$J6OJNI%%7hKH<$|Q/KrBPrҨKr[_ 	2$g6^rJ)iO$g əۇ%g>%g+$$	ssII씜+IΫ=\\(	/	.],	%H.HJIB3$a\ZɒDII亥$԰$q$\Z-\rJ$7e.ђ%1Z$I:KI2Iܡ`I<)sVUKҠ	I$]$+3Q$Hr*MPᬚ$jFqEk\\}S H\n$«ђxSIaҬhRR{,)I%ޒ1ICIEx2礤JARm%.4\"J\Z\\+$\r㪒F$H8yRt)iP(|9#i^\'iQ%i)*i}Kv3BfI{佋}C)CI|ɇE)mD#*/{#齬/ז.JD_%H>K>u&JVJ7\\[NH>JyJ$c%I_0LhޔL$dnH?%O]PL믒AP\\@ߒ.ߩ/R9T*HtRptaDHiNQ.:]Cf ]}T}Die#]AHHZInI^K\\juIvKsڟiR|TeT$]~TWt,%8}FR~D\nH\Z)8)%tKI{$ǍRȓ%%WKa8\\\n_&+˥)K*J[3RZlUÖbR,kD\rKyOܤ{yW/JdT*#KeER}tR㿇knK]o+ӖnH¥jI7nn֐?MRsz\\`\"b[ŗ\')\"CmS]j*ݾnՕnGCYU$q5@j\"ue&JjRwYVMm:Y8J\\Ǥ΂R>Kp\\zpQAmX&uڤt`K_WRF91Wғ5iM?\\gHKmi陧ۤgJ_ܥwJUl/\r,rHz\Z^I^uϔ^,\r寒PixH\Z-/Ko|@\Z5,C\ZjP\Z#KzH^HISU.KSeKӔy44%C,͌%͚sfۆI\Z}>FJ&-ɐ\rI`HrŶ2tRZ[ZK+b\0ii%<!}\"ZIVoVHKkNKz祵IkgWJҺ5Ҧ$]җQi:ikrmFQڮ[ mwI;VH߾!}7.}+Z*&~F4Iڳ6]T*QEVIl鐲t[:tt(U[:N~~{W:B:8IǔIǯJ|_`׀5	gX:qV:NfKgHґJ)z&-KWO:F:/SmQL))\\)9Ȕrɔ	eʏe*.}2ՏeEe$LT_P#[l٥!*NLOl9D{fLO;^Bl$/[claʀ<xtPF(AוdP^yℌ-lݝ2ꦅ2:妌~HFv1e̓2Qe&cyreg?dG\'U(5wKewd\02L|#5d\Z2y٪j#3ӻ$[]$3)T6~{,3{_)3׵WY,bdKeΡmG.ɶ.(GeKdzem2e{0_ٞ0ٞ22ӷ2W|yX,;\';tzFC/ȧ<ʎzʎz<IKd2/E츪TvDO/m^&-|8PHJd5T>|I\"*VHV\"#	EYY	HJ\"羯2\"!!^:Y*StEwCe!~U\0Ðڐ<Hl$r;$԰*|	~rG6rH]/zC<H͐(]MHDH4-\nr:q\0r\noIwd\nI:4I$[ARԑ܃G2GƋGdGQ*$-^>yjt/<<-$z-o3o,C\nLH P9R6R$Bl!E i /A^=)\0){)[H62yR\nQ\nZTx6ՀM)C\Z.hC\Z<`i	HHklzw	ZpqX\nQ Om{\\=\r2\r2dL]!Fad.=ȈdT^2v2_\0&])T2LǆAST!Ӄ<Ȍ[,d&䇴d\rTYyCm,{\rum+wd\n<uj[Y\rBV.B8C6ŐCsg!@>~\rwoȿ`D<*0%d\rTX*ׂ<SnZs*ݾkT${g	U#@\Zw\ZҡhPPP!P\\	T\nTwT7\n/=ow@2	5fN@Ͷ@<:=2(RZk\nje	=	=$8\r=y\0\nIBН(\n{bBg2qTbB3P>(F;\rJ@A(DJ2;jRuP(U	32P;>qʾ!rPn@\'*|\0>~G#良PkГ/ԘvnP[Pۋ2PG|C蹓fsE=+Pg6Թ\ruQut@]Kz*KJB//LB/A݄f\\0,j	ƀ2S.ַMPX%2z<U454pY\Z4m\r6\rƞ>\rBC#!;лfw_F>l\Z4Z\Z}94f@\0\r?j;O&.hshBh!hЇhJ%#\0*}&4mv@!xL*IB	4\0ͥ`y<\'h^|4\r7\0;o􀾈BRwhq\"8h+q9$DZ\0-~}	}AFeh94h!7rw76кsg\r,\rK&oЦh&ڲ&C̡n\'zeh=3G]ڇ]W]Ю!hwOhOh\r훔~xyQ\rE~: :z\r:$@\\ãIQMKX:LօN<NBCtly\nUYtt}/h߰LI7L7LUL&=\0je6V	0\Z$L/L}&	lEKؖk090y0L2LQ\rYLI#|ZRy*uJ;SSvjvCa\Zaڒ0+7a)a:F]0|wLl;	;3PkT`FU{̳`uaBaFpK}0ni1]qӋ`߁A2`;08\Z̀!?_Ս`tH{?90R4k菮Ga0\rcz1}Ca=0jcoaxWN0\rLV]x+L|L|?	vn;1vN\rra!ؙn<>S:bzؕ0wװ*?aWuR`^]7	v\n\r:1{9|L&;\Za)`A8,8#,UZfBQ?XhM#,s6kXD8,-\ZRiݓ+_Y܅ŝ~__=0`	TXB,1\r%t\r`ðG7RKa<Xjc@,MK܄a#cj\'?aOTzaO27e=+²sXv-,/ V+\0$5XX1/XKX	d\rV5\0+~끕݃vL|`e-2YXyrb;VQ,{]~V)J\"aozaU\"GXU3XV,V\r;KWiM`\ruƙ[`q<{	\r؇c.XGn\0-X/~p#X6x	6t67+ȁM̙&raz)NTO<l l:l&z\Z쇽/Gl	l75a`~~#UV̼a+VawZ+a9;a&n%7nFc˚p9E<R\0oo\0Wn+3Zpye\\)+|F=|\Z|\'|\'<\\9wBf\\zwNw?5ͳᚐp-4\\V|O2\\۰#	ח	^響識h\r~\ZT^\rͿu.,[*]@?8pJ\rxx_\rG=G[nѬp[8>Nh2Cp~8%8:w\0p}I8,n]4h\n~N=\0?́MK;MNt~qk\nUI~9/Gu++oW~{$հJN=\rM0ff9[}^+sӇA3`+x(!<.քzNL#{#Yc3	?x~x<ixD&n]xyxox~xqӣb7xnV$<mx^&xއZx~xpx-^RyZ^:U/WUW?<ylƐEsx=/mr	mQo89\'~NP7oM?|Z;zYmη-xsx&7\r;r5>p>p\r.~\Z%G)uѺ{3|e	>V;)[?>\n|>FOAW,^JK\02|Q_[_|H//eB+Ng\'gM\0R4>xHgYe`˛ܕj@m7 7w=	(P6=\'=ؾPg	j\r~@e\0~0zI`W/`7xؽahտ.{>{{Eޭ\Z@_ak=4\0<;X*\nn\0Fˀ$``w̀;\Z0KUG\ZAe6X]\0\"1RXp|p!\0@YU\0R>?\0?@~(,\0`\0x%\0\0O`z7@HV\0 @>\07\rv	]<:h0_&];\0!R\0%\"8Y{8-98\0r\03p8_+	89g\\H.W\0(aʯ6?n7[\'Wi1xޱw\\%p=)\0_[a(Y\0@4;\0wt8\nDV16@Lp};|]qxO ~QH.I ~Hf\0Hk\nE\"Hr׀z7 M\0H\0Ș\r\0\"YT٣\r3C [F\ZȽ\"rzo%ׁR(wt/uW[q@P\nTo&T*N<PuT[긣@\r\n	C@j)аfT97МEmGځXh\'`t)9\0]k@w#4z>\0Hs\'_a|8|j K>Cٛ=V5`*005۸)0};0\00=m	.?7?5#c`H\rj<,ft`ekҷ5`!^\06HP`\0%4ċB\'aB\nBvNBb4b[s(BQ_x#4B$Sr/BPC҈]\rnc=ڦ;:/:5|nB/2b76boN:b_ā\r<QIIɣ QY.\ra6pq_0O@G@X(GX<8j8JB<<֋<+FX9!<U=.!\" !Aw 7$@=݄@\r#-*#p[1 AA݈ _-EP=d/(솠 7,}\'`OU!8	N	BB0!< D]c\r52M;)BTDT_\' a狰͔Gة3vu]\"ޢa:pP	G8G?8CFA8<@\\#\\?.	+:nQզHĵ/kkS/\"\"n7!n@,.\ZeQ𺛌:f ^#\"|S\Z#5}C5D_DV\rqgp>x\0y$9g\'#]EJC=QmB$\"NG$F$#I. R_!R<?i#\"cfē`_Sۈ4ĳE&\"H\"{*CE4/!rv!̯!ш\n\';o\"8{%#J\r#&eD^DoD%F\0Q2`16AdhqD4<.C4 $kMpD\'KD; _CX\\F@!Fm$h7BшN<As!\r#o\"__l_ADU5	U BC Fۉ.툩]͈>Y\01y1h!殧!~raŘį<R>bپ\0\\XA\"=@/ 6,m!)AWn7v)qm)53@G\ZHY6rKBrk)\'Bʹ! .8Hr/B\"w^xYTD*_\"ջFAjlnBj8!5F\"5/H#5_!! uMjzk{GKېH`^iGi\0i4\"\r Mբf_7GR.!-uG|fHgG17\"H9$43:v	Ӎs\0#DC_w!qR&Hi$.+	ƞAdm$y&Iy;}BV\"zp$Cɜ1D%#d$ v#9HN7$3͑q)<);K6 ŔyiTit$v0Syv	c635gaHǫL9\ZEy1zRaFyyYyg䕯ϐnkȫ9K;7\"oAތ1CJ#oMEz =\03Yߟ ֯\"wBu\"Cj^ Cc !#@F8b>*LdTdTk2\ZMCAޛ|e%!c/\"d6!hG&X!⺑	}ڏLiD\"S#S*/ 5^EI-#ӐBdZ12b|Cfބ,z̪f#ۜ@~|q|Q\ZY,<,FmC<,iCYER 2YB=،AV#+R*Oo5 LCj1d́S_w!Tl7l2FތlyzWA4\"5C(L=+eǠȏ_w\\Ȏd:Yy@vyU!אw#{ӑ {j#|r9p59S[*2@C؃VA~7G~lC܅#g7!E\"ՑIsC:r2#}uS\\cB+{Q%wPv<Em2CI:*$K~FmYGmN\"dCPR(($jm=xRHG)Yv5vr`(@1JyR!!P*(PUe(͏Q\Z.u(Mh~V<Jkes[ێS5FcPzQFP6I(+(E>\\ԁ\rT\'\neh2k22=2g2F>@_GRSFjD:pR/C1/e鱈.EYQ[PDQL#5J$\"P>(Tm7\n5B/H0P(\\\nD]ΣqPR(Ra\"2CRTPR#t2@q2tP(hpT%9uC*EY@8ġlhn(\Z-(;Y=ʡ:3n:+:{rيЊrZD9.\r\\\"Q.}(%rAF]`{b	uu3,uss\"G(fL*3u}[yצ-UWzkك5^G>CtG?,D;QZFT*u&ChESŢeGNA_wF:4D%HY\ZuPwR֣RPSv(Q\'ԣT)T鞿ͨ? *Kzfz6<SN}:*[&*;\0#ʍD%< *Z\";U3U]*Q+GtAjYJ2Q6Pe_Q\\T |8CUZC&˨ڑ:W!^gagu4zǸjBpPQOjE.\\TwQ,STfoTߑۨ>c	Tj@4\ZgQ\ZΨaᦧícQ#F)gPTPcSqԷj\n_	5ueB>WD-MQ{Ԋ!ZcP+)K y;?Kh>Mehɜ|]h)Th(Zczj4ZֺF8z+,zhuZVЉVX@o[>VJB+]ۋ\0oNrt;Z#\ZRV龅V=~&w~5uSq1=ִ%5Fuuh=EOЦ\rhCWCaqڒg>&<FC^=CCa\Z0\Z~\rĝC)ЈP422Fͪ1Иhl#\Z&Jͣ\'4I5M*BTKEj.nhz4Ds@ui{%Z--ο>1GA[k@[jOZm6h ]oh;ZNavhy>dv,uC\'E_\Z/B_=vv?vB;/D]F_v~\n\rnv_;倾a7&=^Z^;\'wo[#ѾLoV-2: HG<َ|U`DSP4tX}N^	Aw=FGy0ta:*:.~B\'9NG\'->D?YC?~B@@=+{O>)z3*g)g/9/ߣg9*ѹ>t^Eşt!]hADBѥ24]FofЯѕkJqteirTt1*\n]UEW{H\ZQ8V;v*BnF7?F7E7YD7z!\\~?n}\Z%F>zݦVdno2Bw\ZDw?	П^Awv\0GkE,<FKa+>zxh===UA]F[\Z=a\Z\'Sѳ*蹪NϠIϻ?z0^?^>^C/{@FA{迈(_i1fLfSwiT̆\0fC>#W#Cf[fAL;Fifg<FvF+FZݎQW޼b\ZFS\06т``t:1W}G0\'11́,ḰzUvc5cx1[1rƘbL190N`9݃0ga,\Zl0Gyn0`Ub@$0U(nO 0J 2T\"	3\"apcV\Z7Lb6G1`\'CZP\Z)CG`f2EY4eb1- J#<2}XÜTm?r`la;.C̙A̙9>Yf.WWUk2-n(X=\ZIs^l٘ Y0yp\\xb|<10_@owLsyc\"O`>dca1AZ2L(J;pPDNc\r0TLܿ	L|Z>&*rhxx6\08?Is<yRIy\'I}iIa24IWIOLaS5L/&!&gq\rW0y1yBLnŐ̋0buL`LQOL)Sryq\'SՊ){yc^wGc|lƼżJԊc:%c\ZјlLR2I)}/Rii]bZa>6a1=%1}7\'1}g0_*001%o0_ݛ1%-̐	3\r3\'f(0Ōw`b&a&fr1S\\fʉ؆Ml,c~`~eaJ7c01KW̚Kif=\r^׏]lts+y\0+ŘJ9J];bTKm*z۾*ʝ*<\n&v+U	Īê	X:UvZ4V?Vv!L>v;֏Ww_bZ5\ZAjVXkXX籦Uf	X%-]?XWuC6Cg5ܰGnaa+Xx`^,fafX9,2Emvb.\ZbXl	pyKpK\Z~~,f&3WciX6/,J1rrMS=X0E`|P+|cEaEe\'Xk dd֦:3)FP<\rĞS={y蜍utabO΂`ŌX%c)u0\n9\"q`&r^k>XLZ]>g{;;{B\Z\rt```\\!2!ؐIlĶHM,6J|\Z	(6~GlK+؄\'\n6;lҏ}d	l656y<0}tSzĦ}>f[o`3We906\'L	r?bk0;dlB\n>|[>[؊-0Ėkþa_eIbX\n؊\n[1\\V6V`{7ck-5]l}m+~\n¾\r6\\mh6MUVwğw-R*ؖ%^/lK:g#llkKlk3MmgVc;WlO@;;x1\r;Xe<=a{b7R/%cͯS۱Swag6!?baga缾b>.bS懰Kؕa\0*nK\Z\'\0\'/\'y`\'q5F2mn;m^msm)qۧp;q;GqʇTT{`8pjqj?8s8=18ݸ]qup{>t0n8;pzS8}<>N$no(n(g\ngb~gxę1paXu;Ew4w+wކ;wA\Z/`58=>LlqZQrqG8`Apӊ#ٌك8Rꅣhkn8},2ı~ǮpƱpA88!4N8҈)įcqL\"\ri\Zg;w&y$FmV!m}c})\"Q~?Α觊;G99qNo[qΰ8pW[[-ቻ[cpu8=ep~8N.@\Zpb\"t$aM)`\\0:8/G\"\nCpsMM{	{,%\\܍~\\;dz5.n	ي{KԊ{=Q==våA\'qongqߍrr,pqqyP\\9[qZꋸI+K/{]qjW7^^%|+*eqٸZy9k]4\\󷓸X<k{=׎ZõO#pb\\7N\\׹op\r\\=\\/\rډ#9>=[-nPY7م>Syiىyw7^/n\\+7>1}}p.2f)dܔsv5T17Caf(f!_p?U~hqFqɸe&g([\0Ec҇Vܲ0n9\Z[~BVA/ܟgŸ0z8m866fq_qfozp/^f/㏗.PRͪzx/[jrM&ea3xoxA0:SW]	^]($~R]n;m	^*9^-ﻕo[߿T?47Tqxc(\Zo|Zo|\Z8o	\0o	o77ދ?T?do>?Ƥo㡖<a\']_C\Zx\Z~\'IE9xR[<l+⤋zi-x{?6gN\'|P2ؔnD7xSAdi:6h3{x)R9®k619)\"FŻy݂Yxw5{`9v:\'\n=1435yMxP\'9U{}_+A$QWx|p\0Ysh;<Ћ5G!yh1|̏|o|\\>|BK|\'ÃFA\0Yc7}gNay\">k9ղ՝0/:/؋/~/!_Z×\\;O+L\r<oަ|U՛s[\"Փ\Z<|9|\r)f3`|cyk;Rh1mb|k;u\0xm=%{>{k>W\"sa\0sv/P\07~(?ڑc*c\rqbG\num&\'Ud~~*D?x?=gXe9I&M\rgy\r~A>}mDQů?}\'k:2g+zV?sM7n6Bkfs^W6U¶iAQPFPl (NCJBR @P\n\"\\C}5@P4Of4n*p6/ %hoK\r{AЛ#WZ{/.}%~F؟=APΆ`&f\\\"f~<$E0W$T%9F+%	0\"ȟ# vd3c!`)Jgpʮ:oH+Aq/(5L B\"P+h#ڽVG|&p~Us? w$ęLJ!Q+Fp\nM8Up:*`M`z`seF8A$8._	._.Ğ#8EJW\\z >وpu9՘buk\0#:#}]F|.|/<	AƄM$RjBfR	a	ws	ubB\\!D&b	do!iw:!@HzcOHYNxԲBHmxDx\Z IN_&J<*\"d	?\"As=(5BtBoB^t#!ԗ߸P͖PdRG(*&p&%+vBOkm#RAB՘)9ފиExw{Ox(KhuAh)\"\'	mTBۥ;v,S+Kè\"_	_	&Մa\naa 0jO\Z\n$L	#Ƅ|M0Jo{DL\"0ٜK>L1%j%em%A%,(<Fu_u¯&[Y8a:CEº/\r9+0yI7\\GpN%n\\#JY#$JGe.D@}ll?qˑ-D1|/qcQIzTqqg<Qx!QUOewZM9GAQ?Ox`@4DFmDM2CaCMXo_GJ{GY|oD`%N:CD/g}D\"f9?Hĸ|\'b\\	fDB6(@$&CzDRq\r\"\"ҰDQw\"Ldc7Db\"&3Knw\"r\"a7KCD!hJ<K#\0KD{%DvOU3O#Hӵ=D\r5k6!ExÇx92xqLLt^&ƲSp9ѝJtg8˺u(ՂW*DK\'YDω/D/	+L$%ϊAS3P0b裗İw\0\r❟ĈC%Fޯ F)3Q.\rQ=bUiCb\"CL\\$&pI_])oƈ\ZS^*3?׈_mz\'\'Ww> f]#D0$GzI,(/ }&1%T~%!t\" &>-K|vʎ&)Zfr;X@\"֍%ֿ!NlجHlU\'|Ip߈ئbOl#Il#~<dO,Gh$~R{F{T=<b/&ΛŽدJ/\"s#[Ó}Q|6ql-֋3;֒i}		D<q#E2J:[La,T88qNSH[&,HL\\I}#5q\0qeq=J\\?FЃ7}d<MwM7M٠$	J}@YbpK\"(\Ze7;Pqh\nl@%׃%pp_P9LTyՒ	ZuPFYP#Xw_154PԶ}(hp=p_6f&7;*\rAC[6h\n\ZdADxc4)w7;@QU`h	-H*X\nIB70a ,o+ B[\" \nB \nĎXAb1n:dSI*+RLT\0vͪ (A9d  Ț\09$+8rW  %ȟ\nl@S5(4v\0Erh^K\0OXSSN~W633,CA{\\ڗ2@v1p?Y:x-[v3!x|7/\rdl(x9\"~\0Q^757cgM7*;A<\rz[@o\na\0kzv\'3k`0*0-@w7O`aY0Z9.[cXc`50^Lx\0&Z]j$0)>/|z|H7)r!0>rO-L\rN7i/\Z:i7fYOۀO{LH&Ep0;(e$9`0#\0v;G9IIPXx\n,gtXs,Ye/2RU#	,D|Vukd5A`m:۳K=~\0|6\r!``\Zln?\0[;΃(X-?vAv\\8~BiJS2_=<5x8!g88>}\rS}i}tp]N\0Cs~8\rϽYbA\\.-z[\rPD]&l!4ڑd/䤴I\\\"I~LDR$)\"),rHbI۩XҎ4%$ej4Iy{DҴ#iI{H%H:\\.K1Nڧu/2tO:PL:0D2t&GL#F2?tՃtt\"d8\ZtO:##2&YB<I	\rJNd5J:~nt\r	jϭ$_HN\"ȉԁ$	V/P{I$\\R	7\"\\$ұS$8u~4$L${ؕĮ#qIK;H<)0$I\"~#IttB^t\"ct0d!tdG%V(\"SIclo_.X.dM.ՍHoIHRICnJ\'n#y4Z:X۷$	R$)42F\n#h4HQ;HҽvR)vn]R܋bRR|%҃ěDdR<OzHDO)J)gHJGRIy6r_E3\"R11)ە@}M{Lz 蚐\n\njIE;ߐ\nHˤB(tYTG*+Az}5u2T>A\\+$1$醑,FHՏߒjɤkIukӓt	RoYjt#!rҝJjY#?@j婓Z>lCj˄ڲH/HfO> u=&uCIqOI_6̮dIIUHao!&ҰUi8҇41;O4w49$M=\"M~L&͜\'&%<cEi^	i>thE<HAZIR*ՠRjz3i_!WIݷݷ$K%\06yddL?,;BޒPGޒ!ˁd9j;Y^2,JV +\\$+>o\'+ْ+KޞBVKI#+W4OUUUU{d5RnC&Y2L֌eZ0GY󸑬;F1\'5Il\0K\"\\Y%	[Y&wk&&fgfdm>H\'٢<|w|3J-ߏ!ʞdm2d!#ddHFQrwh\Z2Q$KdrL S6Ȕx2Nf92g\\u.\'uc2d\r ރ,̸EN\"k>O:gudkG+)g46OMF- Y)䳮4\"<|!}{Gv;IO8Cv\"4\"\n!rȮt\Z#||Yv|~||ѕ|}\r<|C&{溑5\">`\'٧B\'\"&\\^!fw$OCɡprXl=ΎEr̵o䘛S{Փѻqugƒf+-I,rcgrrU-&f8rT1T*99êd/IhKdr&y?9sΞV(9_Cή p9ȅBrіnr!\\q\\|N~ҙ}+Ce7!z`C rUf2ZZ҇\\W\\HǐkT뼤o1oɍƯM./MoMyZ{rkO)r[#rG/ܹ/_ɽGB}}䯼&䡚3Í[#x	\0<:\r\'u~{߶$O\'\Zȓei+yFN9MM={<5<\'xDZIWEoU#zMenA$ku+n;)/4JźYŭ%4pE1E\"e&sK%7EUEZLQ_ʣGH{JM,.vh8R(:u딽\Z&6ʁJ8p%0b S)F14=bNbFR̃b)e\\ʡW#K}?)z̗ȥ\nP\0#|\n\"P(#(i\'\n	\nl>_g/QhWGi\nc/\nsHapLa\'pU	EՂ\"TDPNQNPl8\\M9r%rVэr|rZr66rNrݓr>VrCԆtԑlt⺓pcp\ZOLERrUzrUmr5OvHr|&Zy\r`ͺmg(rO)pxz)^E;/NKJUJP4_RBj(!#є)wQ¹(w6($JtJjJW)%ۄ\0YMyMyK$JR((Iy\r<%E?By@y0%ˤ_\"PKz)w)R$WNɼƣd<HyWϠ<(ARr:Sr9a|PJ~ʋ.+BD--J%!򒺇RښIyuRvNx{DRGy\r-ƵR\"OyJOeSjۺ)ur)j(o)\r=2ffʻ܇(~ʇZ݇(m(g(m?)NΙ6\'J#\\)}PJ嫾e&2ZRm!N)eH2t22*s*QƶQ|.RƯHQ=@|ǺQ38T[eʛ2#s27âj ٪\0hJg||e9gϙgM\ruĕ~*!@Lݔ@.UusZ[d	m]-TN&uTTZTUwTU(WTՌgTMX:Z!U-=uV)&ى\njPu>Qz!TKTQu2uMTTH5{j͓j=jvLj=୿T<8Оa]%a&U7\ri-kTpѸ*#\nM%SaWM\0hϳTܖ.* 0H4*f@HRR\n4g*}$2PY=TA*R-v \rU;O})Q̩S9bU\ZաXz\'(W`WTGX/ܗ!y\ZڨR;N_S}ͩ5eAT\'T}ԫ{cWW˨SEd@TOy%zpǊ#K\rԣ*yP%jp\Z\ZTA\rv Q^&RﴼwיԈԘ-Z{hXOԸ[z$mꣷ/vRӆS卩LRAlf:QW>?5+zǢ풧7GP2ԢWԢu9jZ/Z{/Z&S\n(jn>\rzJZTZRk,j=}VO}r1{t@mI}B}77B}J}{_cvjjـR;cjI	ΙOJ.\"jWZ\"UkhKosm)`-uXut::^-ʆEHD:!c:{iu:Go|H]Bw66.ԥ{+QUu5R=}uu}#ufu{׷=O#_-HMs݋&;L,1M@&#XҶAѶж>5h\\WhiJ	4K4Fm\'3MEc҅Iv]2t.R*MSMq`h{nPi{ =σh{zhڨVW	M[a,M_!W$m\"m%ځ4eAOa4(\rx\Zd;fG3𧙥z𴃘4s@a\nڑy4fDYю IT\ZH[Ӑ44\Zq\Z>M:id\Z9nFQQ`h44<xј&\Z[ΧWo8tƣni®4:&\neN<>H;yfs=vY.ɍrv&F#܀vn)v.v]څw4\'_4gIsw\"b(rn+ڵ6苴qRin-nyd<Qhޙi>|[#i[iWe:-fއ5ZZlC-g-\"Kפ=>%/%i}ش--AK+@ˀgўߣeIhϥhϕ%i9KZr\'-ϨwN{Fˏ0^+\n|UhiYB\Z=>Z3ZeR>+Z\')Z̓&ZwZYZ\\Z,V~V7V%@h\rBiZ)ZSGF,Okڮ-@Z{@}ֱe/#1Y@NӺzGz.e+>JӾ֡|H8Iw6pq6ԡD^ʹew\ZmؠM>qM\r7f\rgh6Chshd)eڒ5ڒ3Tɤ-T)VշVwV{nVi_h:?_\\cʷRh7T]n_?]*]d}](]1YcVtebAW\rOWlBרB>ZN~M~~p;OѶqnSJ7.쥛=Ч:N7L7ϹD?O[pbgV8kUP-ݪ}vCgp#Uӑc\rtT:f\ZkEǆܤcӴZw:nLM5:N:-h_I3:IN3ktƩY:#zΖDg9t̓B\"yjKtލB:A4҅~?1ti58=.ΏO<$Umu63tGMo/ӝ_/x]]t7U{y3F)7qc+c)}u6SNEߤ( }oAA`9z6z=EG.xУNc:zܿez|p]w\ZUzB)z/z,==,*%G\\?nHO裏3v;Yy^ZfRyzi^I/	aDEC-Coť_w&?\rw_w{轂؋ބ(zo5gVzr(>7GH̤p[>>E|>>^x>ިAm@F&A8y>Lv5[\"G>}_}n}.בhvhM_tܣ/YW+髚UC{2u}!qi,!Ɛ،a`Ȥه4bcaCn6C>&zPt-`(.80vj1O0ʕ{*eZcc\Z)C힘+%{4ihdhY3Hz%MC=`|{R7c{)}$\Z@Va0\Zf`dRGA݌c*cDmЊ\\5x0#&qǞA|Z\02BO5|>`32!֡ꌓxbɏrp㴧?v>Їᠾ\0{pd8|d1g2ί2.f0_1:*N\\\ne%Z&ɸ¸L2g\\g\\2ܼ2uv0s AUra\rVcڋ=uȸX~e3363i `F#4ZZ 3b?b-0\"TQM=F{_3`Ux݌ÌFYF8[G	Ͳt|	#Y7#{l1`9\'yRygz͌{\\\"H8.Q#JFSFE6fTtU0^92*eW%?op?Ui\0dTz2\\6FQg}^`[2{o)1z2o߿c463\Zkjw5Y{\r{>lcú`|d1>fJ1SNSs?ˉ\nxMbD3z=ջ}O}zWR\n1.ng<go1÷wI\'[ƔQ+ca&<cmke<|1Y<Xb,\Zb]Ҍ??kkU\n3\r9ߴ<?{\Z:)ܔp)u)ّ܌aJ㤙2Ԙ[/13`a1宾c\\gk\r0d/3\\ƙۦG{Pi4s:Sr5S7e]]gf1w]f&ܕ=SԼ|9^ejeOdsw2BN0. 4Q4Jqb\Z51c&&d	+Y=Cs̃=LH}桞8^aZ\" ih<{<<ڢʴ6dZleZg0ckLL`&(	xL&\"܌,bb\Z=;8*_}IeLe&5ImKf%LzI&[,ݭU19L,S(a\n1E7iL\r^*ȴO2vL{txt9t<</f^hztBW3M̋͘LKbMhLK;n6kC$_׳\"7dz8D1=1=	W|^AL^oOV&w/wQg\\a332̀kqf3lhyGN93y.3BqQwMbF>xʌd11DCz{\"flk}]}rfg]̌s`ƹv303Ĵ3fSfrWCw3IMΈ1|bTNef^af֘ϰ^3̜ߎ#̼Dffu	}̂t_f%,\\gh3K1KL\n>2_aZ[cbǜf)0\'0+}Go2s5Q̷Fon1׉f\nlcevR2o>fv?Ybvya9_\"k_=K̯-j!S^s-Зg̡T09b9HcECceLRCs\"J99Y(˜vǜe?aݙce΃\'<KyF\Zsee7ss͞1np\'\rϒΒT.bIYKdɳd<nd\nY\ZXn-,9W,w?Xz/m2*mjm,\rֶHr7k{CrqY\"7K&KR/fz$diaHft6lXzYzpޠAp־=XoX5AC/``YeeQ2jmcC,+,L:`#e2Ob\Z`qŲ:*`aYM&5>a[&7/X-*,K`!d3,\nQBg0,P\'obYd,JQEYo\'X,\rא{7$Rv%a	Y⚝,əK~<1֩[{YMlOUγra9]aJ,%֥b֕7,<e>*5uu%uquC.uR\\dyC|^<f|+g&|JYGX~ҫ,wY~x<+Pcf}\nwa9ʺ\n/8ºafˊ~bEt~cżu˝̊?e{Ya$Vr+J$d$eldRgXiv4_VZW?XOUa_YYrXy>VYV!V~N<+2U4Uc:Lffko*XoX5ze_ViKV;ղ?HC1ǗծjOcuh:9ΑJ֧ϷY]Էn3GcLJ!rYW~ kb5体5sb\rߵg}n`M)SY/ر&YSXtxǉ޳fdRSXs\\\\%k> 5uXg5d+ZalFVbwVYzGY\ZY6%to7=mdKdKR!|Tqv).&-sʝ-s;)Q|[n[^Ǝ-2[V}Vzq΀Uyll_*ljϗze\'>fc(]`uٺTH{_]@m`6؇<aa	f[D.>gC?`CٰZl|3gQҹlt)`qil#Vxe6>\0(\rNlR+\"UeS9Zl=wdFlp6*W9r6ǭ͍f[O|E6!-HXb{٢$<[4Ķf>V}mk^Ͷ]̶Mde6>cvg;4c?g`;f\'f8lgf29o7ۥvc/5d_ַd_/;e_d_QWf_mʾr2}mҎ}m}=ʀ}À0=[v=Z7^cW޻3wo>3l_;;X;;DfƳ\Zzw\nwOw\Zؑ4ّgّY$vT	;S1;	;:4}g޼};Obǟmbhc?d?hg\'Z`?5~ځ8z7;myv4;=\'?ٙ<v윁\Zv\'vdvnG80?g_~Qu]d.lg6KnKOK\nKo٥WXvs]am~ӳ]e6<\Z=ew\"]nϱϟ_n|bMg#ϲN8oes]a{=6Ğ@\'N	\"{ {+!PgO@c*{7b\n7s&{i<{i{0\Z{iUd鷱NE9#\r	F**g3GÑ\nlqpd{-9re\nu|b$GeGeGmQ>1h_Xpt/ps*]쳻g5.k}\ZǠٟc\'LscsСsYcn㘟rsC,<8q=ut{0z@>q\09\"H]\0edAg>`x%<݃pR\nLJs{ÝCrHK6r{>ΡX19oFQ>awqNm *p,!sU9\0sć8*.kJ5:s2(t\r2>Aqa99xqX看+\\H\\xJ8<8K^8\\Rqr\\*s\\SќKz6k-KS#IMx\\pxws|n.qnr8~\rDN\'X\'87\'=\Zz߃ȹ	qN.\'zsυɉ8˜xe\'X#\'E{pK<hsqsa#\rUN*IIs9IfIW-_ᤧKq2kKga,]NVSNV\n~N6}ґTɟ2H9%iO8/t8(NEn%uN%SMTvm]ͩ/xrގ 8\rw|8\re9fE\'N3:9-*8|NkC;Ca-a7ltv-N(to`\n8=I9=ʜ^0!NoNs#Bq[Η~ZNǜQ#gXj3{3j/-rƝqsќo\r)\nQￖ8bTI:gUg&ۅ33c3KP,zr~5ks~\'\'qdĜ`KG󜕟Οu&οx^HWre4V2-S\\-B\\WSWx*}e7WwW\\\\>U-W-\'sKD\\\r\\̀c\\(_v\\4W{Hk5ݿ{VO5l\Z|\Z)ypʑ\\c)qTL	II=kjr%*3lmvG-\ZM\\\\#;V6cc(.B=EDn\"os1JI\\)sń^b̸R\\\r;.3KjԠ!.mY.3/udUSe7*r9>\\z{Ą˽rg,B\\%W8W|\"׺\r毀{*2{+kkvkkG\r]:WܳgOrQָºNT맹.k2ҾK+w۹\"ՈܫosEl^`[soTfp=a\\B_n)Gn@n`n8\r9\rI↶<I˽v{g7<6n$΍ʖF}FqTn)On̪	>{9`,&*&&{pS/sSfrSfn\0nz]n܌\'ܧF\n(47j5B͎qvB~qsӃUJܼq\nEp_\Z}7nY\nnywnuk%\')ܪn*Uͭݙǭ|֯r:666]6ppM&vi6r2{ݸܮ|n_~#s-e\nz1Ke<v7Ekw|u;⎮厝IapǹFs\'q\'߈S^q*qgo{sgsܹOw?}ĝ.r7up?>|w5]WuSC0i_Nߑ$r<	7OR3OXJ9Ϛ\'-cɓȓ=S1<<ş]<hގWry^<՗<<:OXNힼӄi:4\Z44xZxZwx{nxxK/	ydy5|3<<1֑gLuG}GL<<$[ޡy<q:J,J;&?;&<;v\ray<}l\"Uüiaye\Z×kH%<2ģvJ<*=7ǔco]q-Gx[<ᶝ<q4D,D-Z魯\"fK$\"x;lZmϮϳs;?;[([s$\\9>LÕ5$ν?s9Ÿ<5z37,wYwA/[x\'\'ɘEyh]<DߖB=}H&/@//p[%/|Bgyah^8wWREfyQ^T/ڦ/ݗH_K#Uy߯Jx.xw2>Vy4	yϊxLx9]\nE_^i3Wk?xĸWbb+佔+:V{U{W+Uh]tUPyof\Z^;ּzhJ\Z5n\Zpek{g{|עznz<v΋ֵ>庛kx}6!b/:\'x_O|\r\r7J:~|fțD(]Mf	jo\'xKxKo>`yKy	\n7o5[[7 y#n7,%kjRD/o>ȗ˛xl˷4=Tyk|ŚRWJ|叇*k|u0wq\nk4w\nr|DK3|mp6-ͯ:~_\'??R7zo@@~MȪ|Q(mAEݭIPձ|ۡ\'@qG4ck|7UOr{O|%4\')2|J,O+齉|f>{p7k7&|i]2Z._T2η&e~|_X;Er.#p\0/[%SZs֑|Z|!c)D-=|/bWqWs~\rB;A1~!??G~oNe}]~Ϗx\r?jGqQm\'L=364p7\n~>?N$Ǐ_G<?%It>~::?C/~f$~a~E~7܆6~SWO3/os%~8K/KWGe3eN~-Jsuˋo#\Zݯ\Z2~V~x5k~/(o~HtⷫpO~ǈ/sܔI wM𻊷{S_]C. m\\)>?;AsrOgRS~3o/\rZR_״--	0[Re(\n@뿜y\'@\"T @@@Ѯ_(PC($v\rT4i(**TjO	Ԋ]ýLJU#莬	E\r</<\n6fB`n[phys\0.	(\"VY	|(yM@2ʅPN@P/\n\Z=[@gx@NR+|p6	Yմ@/~\nN8=XnX|\nNil/\\CF}̶rV[p^)PpnϐIF,p#.\Z<v.	.OOx!$5Ͻ-4G8K*\'	|\0_B t :(Uz`*^~RMpj bR_H\nľQ7\'$&\'xoC AX$HvO<n,H&x$x4R H}\"H͑<F_A6 W (-	?\nD^ŝ$^BSPq_[3SzD$xcTZT\nj6G궤	/ԧ޺!\rFkAh/	--\'_S3Cv<A|󇪠v7CзJw W1؏\'C3潂N(:E0,|y	-ߵ	_y$8-hG	<37	f*?rٞFBi|\'i%5%zk\"oPrKBi?B8t/Og̹[B0LpZPNPE(ׇ\'	_8fBڐpsBx pGpgFPU&T}rA.qS8T;U/.4r)4z(4\ZpZ8cPW!hBM0u\'!x^#g	BE?)D	n	QWJ!\\k{	!%2i\"!J-rB븭BI3\rᩲ0CUhExiQxUQ,#<\'8.<׵(<*<*]%\"(Be^m\r^bo|)5yE1zhztzˊ+~0߂0pG.ECQ9pSYao0BZuG}DV\'y)G{\"?C-N\nЍ|	Ħ(aIl\'L&\n7~\nSUiAaۜ0>\\-T?&̌$fH\nk>/x+Ff\ns}¼O¼2mEK(aqȐaқWY6²2ay7߄UU_Ǆuxa=灰^\"|;E6>6|6]66m6PR/|VR/*;m6O_a[oaQ-쨶vN	I?#O~=ElF\r3L##Q_P8O8\Z,&]-ֳMmM<Z=T8a!*Ip2p*N8sG ypp%\\g\n7E^ąѦ2?drhs_l}ۣ\"=4\"%Rm)vx8v<)1%)I,TD^\"h+S1%ڍ)ڣIi/	E:\rd~!*wP\"C\ZPdNdR?)2fE_\nDEۊEEYEfA\"Do\"x	<3MDUa\"JaZ-B_0/E}\"H#Yc\"0FGNH\"o5QD͚\"C\\PqԊ~P(^YYYԊN:Tl5EsE?GEJs y7?B5eG닢[.E+t[=\'vxMt}և\"ȋ~AP$ Jo(/MLlFBLE(]Qi(⢽(jo(N>\'Rŧ=ȋ%6\rEI.ҢK4ѣDE鐇F)Wy(3[W=R@e_ȋEٝQh۽7JD\\QPQpTT+-*.J^]y.zuQ&&){(5\Z\ZD$5ѻQQiIQ9QlĸQ?U\Z\"Gײh\0Y.\Z*\r\Z.KDcEcѸfxNWLR4q\"D?DvEEܞќNhiY4[RV$Z~M<Ѳh5#+doZ-o].V˔eʰ[;rpb,/ZxoJǴ;XwX̉w\\?#ޑuJ(++#abyXMTfK.5Pbk\nb!XX&=\'~\'֛mmŉn={V|ؠAlԵKl,Rl|]l2IlV&6%?;i\'p\\|+C|l[Xz,_CNZb`\'FtxC\r1+w	*Dg1,&%%T.\"f^Q\nb\\	me$0-|->u׿b[)-onLZlYlo.+N;xbWbG{=ߥ+JScKy+e+@}dV|M.v\\|i(qX|m*xM|/]|\Z]|랬أMi-7{\Z$ד(WNύ1\\XQ\0ea\"єd\rг{?v+-+\"\"Ew9w\0H\0!!;\0!Ol@x (?\"6\"|\07z7\0QJ(u@ԛ̀e@4?sB{b>*\0b?S^ H(\\\'\0n08cA\r\0\\\0/h2[yl7799EI)@A@^$D|P2Tl\"\0**e*_|<x<x	xJ<MɟԬ%]=uԾ\nk\0\0åuF@C@kV$c%EQ4	xu$mmF\0__(\0zY>^@,	vc00hNN\0C#I\0#\0z\0%ex	`,Aex\Z0L+&{ɥef0\0==R46\'&e\'`3`OsP{(g\0XXvXAVVϾ\0v\0֎\0\0֛&DFm(ߡc;@9(_ ʿ\0*\0s-恛Հ[,[-mzwnjIZR\nPPi(ШШ_h|84hhv{P29:phŎZ˅;wm_,M1@{tࢁF\0k~*:h:uNI-.gI@7@s@wR8oGO@ϦC@/6[xӷKڛ<Vtve`sm=\0^t^|g80H,0I@@M{\0@h3 f)aQ bh Ļ|?Ӏ@@ yhHiJ7XK m2H[2f*m\rd_\0-@=g#?@K>Pr(=J7!ao!Jo!c7>C߭+>Wg1$0z0X<\0L*=LI&C7>k9Gioc1߁Yp``v0q`+1yIys|_{Eཨ5`X\n,(,L,l	:,\n,>,\n,V2=gU\'jK2\rXNw\0\no\0wo;\0lG[lKSؙ7v\n|	~5M>\n||kD\0D?Gv~}$o	y;\Z8pb&8Y\\2ni~\0~ٕ	g39$Z]Og(G[n_rz\'ߴ?7mׁk7A27  \'ͶQ͒<}&-%b%Zzu%:V~V{H\0q#HwS7Hwg1Ha\0\rO4<\0\'4dd&x2/ev!A K.%\Z}csEgdmbv\0S3U:kB~wIAN[UANAΠ%U?7#e@GЉ  bB\0dqd=ȧY:#ځV7VAmt@@Х^((4S$S00&BA_$AxC\rD!I `ip= ܭn>g_DAS b,bW8QATW *>:@1ib(ػn8Z@ m\n$LpIr@!@@ѠVyPXQPd8tuPtc(f(V2C/@	Ar($z\":	zYЍ<i2ʼ5*leߺ\r\ZAyQf|&(PiPr7^19P	PTPrtt086TR	Tje*>N*@QPУSm*u 艷w?PSP/PQj\\	jzXj~jj5r&Q P|Jjp;j7ԕ#PO͵Po5g{n|_V:h0	hch*4\Zz\Z~\n\Z\r*hc8)h<\r4\raMGBrZN\0!ho\Z	Yd\rw<V{Zvm|\rq9%ɀe+`RX1\rV,+AJ5`ehxˡO8_V:x[@x[#x[jxifV?\Z5>k:5Z``΋ΛxQXقR`}I~;Xl\n64\r.XOFq/`\'`{TsdO`;`=z!{_YGߒN{>/@GUر\r|Ķ|4	 d1),e9l>^{|B{`΀=-^jf`wyw/	|RӢ\nY	\0&ڃ}Oi3:g&Ϫ#wχ˃/,=!Yp~e\0乀!`(b;GZ50FiAo`|@+w^dD \\T0&̔E0\r<~ywl~ž?%`i=Xڎ\0KǮC^p!CP:p(8l8\"b\r4GN.*<_1=y/~N\'zn\')8\Z8C\Z*Z&ECS7Eoo\'LoߛDS1α&sݢw!໘dp>\n\\\r\rw|r\r|.>.r:.feKepwpm6\"F+\0?֚W\0?\0?9~`-^?*?[k9)SK5)pmpC[3\\ibTn=ܚlnHݬ__=w}\"fGwo7,pOop7ྀ;3&]4xxf+y<}\0<ڧ\0bxX<v<0xb#xKOf肧\0_Kv,%(R-<zx\0I]փ_(nB4@#_BoCT *BT~@x\n![ll	qf^QAJ uS\r6&2BH :DKȎA4dǧ6Dt\0W\nR-dg`i\'P1\01:1ꉅkUBL(Ip4tuY>9bNyŇXWA,@ݭؕAZg[kدBC]CC>D88y@?Bߵcs5=q}\nr<<DjC<5 \r\'!3w|\'dW:\'(Qȩ֐3\Zː3 gm& ~{ ~V$9m6K!UZ R@`L3!D}`\\ eOn>/@E;!Cҋ:B眇05f!L*W\ra?AC~6D	q_0PDmDi@>B\rS!ѻÓ؀w(H\\7s	y?$l\n$P!r$HJ:$UJ\\\\V6  hH]kH<$k+&@!w6!9g+ yv|Ƚ nC\nN! J%HI-t)H:gGnVLy UlGȓʐ\'v\'ZTH\Z33fHm+H]/R%F\ZHKH3HB>yy\r;&1M\nc5q5ygC$(Ȉ[	d\0~$3\'K\n\r2~d9\r2|=LC\Z숀fdA~R\n ?yB7!A-_ EYY.xY?YK!+ݐӐUKU*$C@!!J.CeP}rP9ETf$*gBPPeeU6\0TݒN·:)BU>@4EPFT#Y88\nAuEwzǡzm>PHH0|7ԨԼj.ˇZ:9AhPkPk>m\0]7c6`kC?;@_A<@Cҁ8=cu:pC43.zPs4kSnu\"Iz2=9q\0\0s\Zԏ>,%\rzg;K%AP@M=Caٷ,(E܄\"יP)7C1CuP)%B	(#JJ%RPPft\'\nJPPqy<T9*)J&5h4KhM\'hhahX?\Z\Zm74R\Zikx߁FUAl^EFhCG\\hb4	XMEC\")k25ntYUh:EhFX4cfiiCQmhL{4/lZx-hXBBTGh	ZZr2ZE\r}B\n}\r}~?XhMfzZ{HZw6>5Z<RN0m>\r\n05v@;B;oX@_݊\rj\0}5\Z\0dbCBdݟRo;=mоi/[зϠkMۮA?8\0TmBǺ77AD@\'O@\'	[O_=~|\n:sEҡ?\nA3y!fbX%t		]>|\'\Zߡkп6<\Zq+t]&#m 6Y事a\n0ū\Z0\ZJql˗V6lm#vb5Lz\r+i^4i)tazr\0ӹQ\n0Y#&	flS3N<3`K`f\ZJ0>]ưP0V=E.A%ءyvs9s*srVy\r	7VNMD<a0st=EKX;\rD\0%0`\rCV`[0>öl(dT!\\WO`w&n	?킉tak0im\r\naZ`ᖛa\0ȣaWNîDî1%{KRRG`׃6înt2ej>eұ,c,}X>X2,p{(,ސ+ 8еV(	++,j+2+\r+	V\\\0V\ZVV.K\Z`:0X:JuJ	ONThÞaOoc\Z2{\0kkh\rkxku\rb`>q-\r9zS\"lRcwh؈{#5vfa`N>ρ}t}y<Mþ?M<}n}bf=as`C؏#|\\:w\0lѨx2JumؿM಼Ul\\]DWqŻ\0\\W@j~ p)_M\Z\\\\7j7\\\\oA׿7	7R=	7J_71>݀:M\'p3SpWp)|ܲ_qR[mv8,^no?0Ww,it;=\nwˆ8.퇻&ݷlJ{1~pl~M~	h	\'p689fpw;8FCNIpWN3j\Z8{οMb<.f%kprxHixHxPx@x,<><K\Z\05,c/ᱍn8]:x2<^w?O8O(<OL҆\'!7ko	~evwz#xm;<./x^(Fś5?xP+:^>iX+MQGǑsj#A?6\Zo\\7\r|7/7[Ԩ[8V:NU8\nZz\nz#mq@F\Z3BLp|$\Z|\n>\Z\"h>\n&ÿ~g@C9A\'X>|z\r/i</}W3kDzKFP)!x-;ߴ?R_ \Z\'JE^o[T_ P5CC\'\ZBDb;Wn\'4;ë;3m+&C+maD&eyQC\n¼VaveMu,X8Vm?ػֈpPA8-D8<GE!]݊88$\Zp \"AF#\\ k#%3ǳYRjC~\"NM!μB%ш@9\"RQ@C\0\\J@b28䇀szt>f\nUűAIf!(T\'DSES<j \r!\\Ar&D#\"TJGBW1W1F1.!b5DvDd=\"\"	{\0XHb\"nC$w^@&#R\"i+g7n nܜCEƶ\"ҭ)$Dz=\",\rȞڄ!}DܕFܝSFiACy#\nz^$#J%\nM3DŕycD{O?!sϫ\r+F1Dcd=h\0wѤhr Z.\"!uNUī W]rO5oA}A\rtCWF=sA1TkxcqvĤEbj?\rb\Zލ9?CN#濔\"~9mF,@~X<YX7 V,1KU&GރX׹\"6m_!X\"eT/#eʔvJHA\nrN䖾)X:r	j\0\nnT\"5\ZSH7HH	&H=H}~rgz?`?/uih1X4\"MG&5H3w1&ŶdE2ri$GGZ.#Y6QH[}{!!#N\"̐?W.9HV+_fOFz:Bzũ\"2#֍޳>sHz1wmy&y<y1,\"o C79<y^\0E^4!/A\rHH`\0	#A$; H&v	WCB͐0D*\"HQ$\\9 aHj	v+IS}HF^$\r׻[{#BH8)xBJҲmod.2d:\ZEGFAYȈ|dȨ_Ȩ{6+Y+OȫF7$DƽF\"&2Ͷ\ZV62/L\"A pdV5d2WP{H,E,!lECE$5yd,\0x>t}ȧ59duKvYKEJݑu#^ _4Z\"_G6=kF66 [ [hQI75ٶNGv\";a{#.C%!{]!}o咑oC. 5ޕi],rd2r46idTGcg,E+X29֔|FN22)(Wow;1rEB_ sqok,Hى\\UF.}\\q>;\rB\"׵\'N\"D*ddɶ(y\nJy\ZRRF4Q[~GmV\nNGQjVQ\Z	[QN(^Oގx.K2܄2.BELP\"PQV!=r\n=*((c=>Q=P6GA9Mw=QǶAsP\':-P\'&QQ^[PޏE(VIG$=\0BPͨj\'PG]\n)~_@(\n`(&A:P=Q )EnqGQ6Pb6v&E7@љWQ*(gJ|%IAIPҔ/(i%dBڢ\"\"b\\mP1Qq/\nQߨDpT(**JCB]IP	PZP7WnFE؎JƢ2VT	TtTZTf*k[*-ugDgW+IB?B寞F[WJJPeP]P* Zʸ:ԣ8׳+QO\ZbPOe7P5i*ZgTUc\Zj^QM;A5ZZP8]Tr\ned/ꕠեסsP7J7AinwƝw!T7~6jf}&Qfn7P/>>\'E}\rPQ_B/zo+Xf*P?kQQo#QQP!?OQ\rPQ_P?qMqЛrg\'r;\\wZGG+c~D[8Foyy\r5\rꞀV:QoB5IEhe@fmICV\r_@mE7ffgsܣmqmQ(އC	EL\'zg9O,<ϻ&9ɠm./n[΢ݎ~hoj9Q\'}rG:g\Zچ=>>JAFEA_<iIG_A_R/yT\"E2tߠl4`\Z\rA%Рh#h\Z\\胆|8)lEÕ2=hx\ZF|4NpA8hq4э34ch/4}fچfz!̌}h+4F(_o{\"M*F\0fh&ZPEhA=2:4PGG\\\\FG7q1]t\"\"rj:VNB_WAo@D>N\'CgUCg:\"tn~-n~:OE/g],@SХ貸Qt]tWtJgG?xǉj\'nSa)t-t-!]gh@7$_ԢMf\\t$wY\Z53]݊qApׇFAYlA+g1@!zgnCAfN:m9=d=\0F| =?s[+^W2+op5uid/F߼##ۏ̮bd~a-0(]bcvbcڪbtcKOb?l_wǨ]Ũ/bn`zoaԃ1Zg0:Xn9F7\\Jcm1#,c*AbLG]}KKMuUcl!aʜ\n1\n09ӯ1`)a[e0GZ1Λ1];9c/%M}9ǜ칅9߂99=vsn;La.Z^]>c.݇cb%qUSKb1G#l);׍Ơt10\rA+Ơ1^\\sCrÐg0w1܏zC00c%*5pbx0RHF(cD1b\r	b\"D!a\\`v`.bc1Wp͘xL?Lm/&6IǤ&R1i#9L$V`0#7)3VĔ)La08ʿGDS혧\Z+0SkSkԕԽoیi`^0/1MzLK**Ei}ƴmiyu0tb(a(̛vL#Yb}}yky:p[=ebüR0~0O0cc/0`&1MI\\dfmf\nUZ;zZ\ru9L<fzff33례q[3\nkfo̟&=bFfkb?fY ,gaV1k&0Z#fِlأ0B2pyM|VH>V)f\0y\r4v#}V5UMUj<\nj:\ZauTc:o;awc\rձ>X;I\ZdvkXݵ8<iBbj\rX^W=^j{`m~0w;CMaXg\n1;p݁uĺ`b	|w\r֫\n{23r{%E)_slֿ&pj+6\rşρ3X,\"б!,|g:ᨅE\Zâ|&-Bc1[\\X}6c87,,\'be²Y,;PnaeXw9,2ñ\"TJ~b%,V\Z~8Ćf\0`ÆIذy46^P`#FrƱQi+(}lBlL7ՎM\'aɅؔؔ9sl9׃M;y\n{#{u؛+؛\nfdc3JYav;^S؜/&ܽlnNl~#^`\"\Z-6cmؒ2p2^}x[[ލ>}4=*c2\Z$[[[j}m4}\Z׆m+¶bRmKZA؎l}·.{lbMb{w`:¾`Ya|_cvCNؑ5\'ر8X\rHq+KT#vNv\r\"aZ~~}׀M`g}Io`8b8x{|vp\0`2]`ҰM}\'Gc-oɘ+6dqʞU8tܖZVEp.)oRvqj9Zf?N!^Niv\r|ǷvRv`q&Πg003ۍ3c?bqBi|, ,i3Μb3O<35Y|(\n8$mգ88m26۫e;gOҌs\\z;xw%\0t+\Zwn,sI8s	on?,ɒw8_e8cW\r_G]hػ,^\\]\rwyWTA/ j8+jPNq0F?qP@>!>2p}q[xPNhp8uW~:\0#H_gpd\'8rEG9ꋣhή8m\\Ǹ3cUn8@%\'8z.88q\'yJ>pa[4q)pn\\Dr.r	U=RMͭUmŧlp	p	w*N*jqaʝt\n\\u.#.O=q{A[p\\A>\\v}\\	`bW\\ր+ggqVp1={zW=Yz\"uW_ksxy\\ǵZpmvp\\{g\\ggzW~^͛/\Zۿ\n}<o\07{7)7w\Z7q7\rGoFVq=p!YO^,T|=7޷fиYSY)sy܏Is\\HϔQߺ2܆\nnu3CmLilmG\r]W/*S-[[Y«Ujx}X^c\Zהy)p,uV;bzz9x}X^?+rop7\n;7FHSxE:~׾l~>-L=Vv~WwH5;/;d[GvJNgeǐ{n^\'n}^\rxߚ/xY)3w϶=ikL\Zk^w /AV I>zr\"px`c(1C\r}xOB*pg	qQlǣRSf3<:\0*mc\rxT2O;\'W񔃗<<Ւrxr<<#gMNlc<ϋxkx\"/z+K]6|,>Jϥ#Sy+7W	Z|\0>!>O>q,>%|r\"8O᯹h\\9EOoo!sX\Z&>>>$^_8k2_엍/a7|ez\n-|Z_`s]c]͏-L1|<|wz>w[3h~,p?Q?OOIO>__\Z>ώ4H*?drsu[iBQW僋zm~QGtKPF&(?Gج_IpRpݷ=*a{\\CPM#9Tj^A!A3bޟ=J	L\'t/v\Z~s9a[=B@$F!X5hl6yC	{{2Y}6\r?\"#8~\'Q&A#G\"{	G߸y^cL6\Zݹp6p<1Mh8K,\"x݈$x=3!xUIw	%`S0	Ww	߈	g~q?)vpnxpzp+upQFp\Z!DBB\0iK\0`s\n1! իȷk/[N%\'	k^b@ryJ ]#:,	d<yKv	lH%p#h Q%AbMT&D#DoQ+vܩ&\\)9OaGڙNK^\"{+<2!%3!~p]őp2-pV^	!\n!=-!N4 d&-١;˟	w1s=\\B~L(|n{C(.E(5F(dі\nRȾPYOx2Nx\Zut(>PJ+i\'<?:Ghd$T!x%%ұ\"Q!.yM~&tOd <CzG_o\Z	R`z:a$&aΕ00:L$|8M~u§)8s\\ѓ%nd*%7e·U·j6a\ZI>[@K#z\"_܇y\ZBwGE GXZ#,&6@2\"D=`|9MQi>qc-DgmH+m<8QQdB jA4F<In\"j[SDQ<Dm!ĝW>w\r\rJ{D0ɘ˗I@n\"ZGthǉh}fh\'ZmSv-{!\\\r}.oUc_2#OtiHtKt{Ety@tHt?G< C<-x1urѳ՗}$8\\,A.%aE/\'^TGU∁D\0c\0A:D4\"$	d\"Ypʘ$uhḎD\\<H\"R;\"tHkw\"2m!:$rglDN\"[Nvy<P(\"\'cDq.()X%J!RKbZ1bbؗQI<=CG%FEc1Hb8IEn!9 u$&>%Q\'!҈ijĴ[.o;oۺ3b&exkC7\'#wsb^n%1n1 X.\"<\'>xO,~XRM,$V޽L||0C%֘7)!\ZшĆ⋼Dbl,`eb˽XbkKbF# ؉\'h#;Jfz=*=vψ=/}iaľ%4#ۜ8gq(:8+q$EGcG87q\"h?qG<A	!N{#U~#7!.Pb⒊qL\\ Wv&k׷בB<\"iӦMHE$G	IiFRp\")^!)\"H\\Iq,@RHp$b+x#i$DzI=iEҊ\"iՔ\nH;$C$i\ZiriYdrKB2K2[M2P&!.veg,о$b7iwXi\r%Hz&	;EL* 9\"ى\"Iv\r4+i@`0tD=tOr&4ד\\}_<y$oݽǵI>|h|BHHƓN>$q\'P ]P#[%zL\nF\nVL\n]L|ݒ{<pF)@FI} $x-	z	:U%H1ĝD2H\"t!a$OԛDG\\%=#TAb\"*VGHygfK}Jul$$I)IR\Z7D\n\'_\"XRDҕ@\"\nFr\')ܖCZb~\'e&IGII/H7H7I&٤%Rf	}{t%rRn_Iy~HyUH&kq֝T`T|ThGzp6 \"TC* \'J&HegHeE2\0,GT>TqjTX%=TEIzOzJS$U[=$l$,&=>Mz@%=?#ɹyO!+Gj^ZeVI!V:=N`q;.\nA\Z\"zLH}i\rWR-Կ@\Z$\r%\rm]\'\rN\Z>r4<PA\Z&\ZFF[HP\ZOˤ\n҄O%ik%iO@.i6in7\niY҂1i=ҊR7LZNZ-%hCZJZ{HY?72YvSYn,7gG0	,ҞbdkmCdMd\ZY;Y	YoBHַ%룐dK䝤\"#86l\"ZMf6Ls.ټl [$aw6^6c&dwȶdۉlB ١i%og%Q/䣟`kcQcdep7uM>݊|<ŋ};C>9F}}dOPǷȧ{wl{@> EZN	89p¡MKGȗo+rp_T2S1!:24i}C!c؇d))1NF ިUzdL9r02*Lf#FdP-}?QGfY)dVH85iL\\-d|8Ckdioʚ/9\r9|%DRDvBY\'jg.Dk\"\' )Ԑ%Βo/%g\\O$g3w3䬮d`r%rȔS GYLy0r^9<94/rIQEʎA:C~49iVZޙ(\\ۆ!yOW|\'7Lˑ!7fGMh>ܬ`InD[ޑ[/%fɭ+*Eo*K\"W~׽.`5M\'r6sg߾J\'n%Ƀf\Z(RmT?\n<QAQSKnH) s \'/z-\ZˌciA?\n$y#m/_|.Eo%EN;\"nF(Ulil3~ʥΤS4vP(;St1->#PAi?s	\Z.&bLI1wPLQ̻:(߼(V-k766fA\rt؍nSR~@9\0.F9,rKh7\'c{c1[/<C&yq\\F9irdC/f[E9{rq0*7	ݡPp(&s%Eʥ\"J`EJ!\n%%X^j@PG(0v(>:JA}k\n=Xk)\n0XlL!s)J\nU@fRwS(̗֕N\ny\nt3/(&lE\n(a%b%_J8%7%6jw%d谛8$הSRe()]kk)<G(i)i)׿ZRn|\nQSR+)EJ?(y(\n%HwbRM)ͣ<\0lO)mYR҄{ޔE<|\'ao6r\'FylÎR4HybmAbSj)u\nw(u\0J֎R+Q귟<8$/Ki\0)z(?(c)mΙ\"K,.Jsu΢۷2mKy0~Cx{-eLHRp2y]2:2U\'CB|@C(3)?,(svU_\r_)(F\')\')&=Uo5ekn@lS6Xʿ9o/(>U{*OJ*ظSpT3T%3	U%ϐg_jj>NTTMTT݆cT&UtU/#U/)u\'%5UTӘj:>L5{M5o8LCLdA,9Mljӎj}7j}j	ږ8S,QQ,DR{P]~n?^Cu6`TuzRSzZdM=zO0^P@@٠^\n̥^B[ylt*Dk\n}GE%QGT\'e*j:b.S؇x/B%\ZQ^1:JҊdvs*s(~b:JKP#AT\"APP2\nGB*V|B?TJTIw(5ʋ\ZzN\rO}K\rI\roH+FWSc{q`jA25rJMݩOMRӞRo4SoR3SY*¨w3洞g_TQX`jI.jwCj^F-mZVvS\\>S>}B}ʐYjmC=#6/Pjܩ7m>ckҙ{_dM0<]_S=ԑԑzZuN=:=u|1:@~Eh~kPg39L%>\ZmÉ:WLGܡ6u.qQǩkwP׆R#S\"?cgip4YSM^Hgbi)4\'4o㴭rjirBjB!My\'Msl|Ek~DD38A3\0h0;͐fHyь\ZvLit |s*m5EZ4e4W44Ek\\?nƘfϭv`.}@I#wtYÊRHs\rNsZ_٠yJ;:Cy!Kh34o&vr(L.GDY|,|h)\\ک+^3:ڙ	(\\J/<E@;gL;GѦJ;oͦ)ӂ0MQ˦i!x\ZL#\rsm1iHY\ryX04\ZZEíw1_hD\0F{1ui,X\ZVع4Ε\Zh3&	74qtږMJEѐ#idZd4-jԆv\r8\\F|WiI>bZckߴkJiih_n`VnO:IKW\022)h},-{cvgZN-=TG1C\n6li[WfZv/Zq\nDVJh_io7{CҚ=?AnI=s=ü={Eʥ=W|Ek\Z az/ae!o5m5Ok\r伡:HZT\ne+UګikZ>>+ܚ](G{C:DO9E}}wJ+L{{.F{glK{w\\.|3m@ߒ6~6FKi+h\'YϿhXh{RitKi}}~Ia6XKH&lЦMcҾAh4wl\"6[,O}A~]2~-=9J[j}I[>B[yYhkuzșDh{LXh}u˕i+t%jJQ:}+	D4D_GhEט5lZ 56Lז*u{\'	tCS,hk+˶ۣneOB\ZGL[~mT#]8ݮ7n7J[G+I\02^uG\\At<So	=h>w~({N=)w}tύiNdLe}۰t?OKE3=t&ݿHP\\M뢟d3ͨ{+O/);/%/ZӃSyAt+:N#7ѡ^tLP	3xK>oD:7/N~ZtU:?q-(Ρ9tc}pAgWŅtaT).Lӥ-9hzz($=nrζ__I_?=\',\',{ӯiA6=\"===e=W\rN=f[\r߽}wp\'=OqE>ҡ(d?z\'_o3\nNjmjt&L<٩i3I=u\nGo8Eoj__p/[-Vjz?Nz.seUF?O6׬_\rf0akNw,A>	m6/;~ǝ\'7\'P}^vG\n}|Ӕ\\B_QWWWW^5\n}hzSJXfx#2\n}w;r\n\n-RbIRbC9+cs\"cM?c2c5e܅yШLeh3t61v_g1F/3HEivl!cWòc|êna}}aúc3whwÂa%þ+áuc~\r\04qS!G^4Ƒ$QJHKƱkW8:G2|<2|}13Ζ1䯌KɌ+&ی=sAƹ<ҹ%F\\(#>JP\0 3Q؂3`(ST;9~g_=d?3NQ|AfV14=.`0>1sGl-N#,C<q!mA3B/1\"3\"팫Y|Fˌ،FkEFJ#H\01T݌֌w2nP`,Ke,fjezH~#ʸcg_b8WF\r0q;QQԕxQ\\QqQb((me23O5J-N1!xhf4ƴ03Zw0Z]\"cF{wF5!㕎݊fQg^ceu2gCoI匑m!;\'	ZrތO?1>3c(Ƥ<c:P1ɘIƘe2arX|XYzʙ{Vgl@v3eϭr3g*V-{>3F~enfTߕ`gjT15fjǙ:\\<sǏ+L=_L=$s\'`f\ZNc\Z+m0wi2vgZgZ_ 1&\Zr;\'DC$<yɚh<rǜwt><&c0]_LoD;N{<fx>>KLߒgLӿ*®l?$OL@3	ĳ`n\"ǄJpoe&<KX)a\"}ҙ\'MLt1kLIgRәE&f2HoLde,S\Zb\n>3%\\fHyf(3;8s`̼\";̌Όy{3̌=deU3q;]}$,f93ofm&z7\rs[̌N\rf6]N<ͼby fT.N\r-ШY8̼1^g>Xg3K`̒rfɌ-Wf{1R\nr)11Yʬ[gVf1މ`Ù5?5GJϝh&o\"eYv\'3M/ݸNrgv\'1_mQbv^cvA]YefKb_OncV̱*o8L9/a1L12_0^̿#1c(kS-K;%wKZ{MV^RRbim$,m2󧏥ڑUa驯XX;ĲfϱL<,B&هedY\'LXV	b!u,;(^D־UX	֓,/YGVNXǰYǾ\\R+YYì,7tߒ:G3aL.&gಂ;Y7e.JX\0S] x6f,ts:B\Z	wY*\"ճ޲19ÊEE]bqYa,VA{;Źx;,v\0%tmb	Y\"K4\nteE \"wڰYWYW5ŬIXѵlVwŊ;Jֳw|`%hRRY6X׺cXi[Xi*٬[ڬ\'%ÙL^V֎V3+~#rmHV^6`+zqUlN`ֲJ.γ丬2\nUnzؑzĪ8Ȫxdz$Uuͪ	Y7j\rYf{BVKBp7\r5jcuDmaugO.zY=\'Y=&\r;b?߀ꯖkYCvyì6wֈNȡd֨F\nkWC\"kބEF_/k5QYǚXA4\\XSYo]mRiCUO5֜<k755k~Ŏg)֟x߉i֚dk=kkivvVV\"؛77|*-M9lS&ēZB-;vwVe`ay	٦ƛ٦l3ll8۲;mczmpmgv	f+bb_gJd;	lze:y&w}(a{v~e{)H^;lom[w%wNig3v@쳅=쳕g.QsgKrcK:`b&;sv\r?6`U\r![Ply6F\\a#U٨ltG66ZWb=β(96AuM\0k	Ml16YMvfSj,i07)cllh[-1eKؒslH[Z͖vCɇءaw##oQl/h옿eGqS+P;CvfUvA\ZN沯[\'m7WmٷFw2 |o);pފ}?~v|]br]Ƀ][.Wg?Ե`?l®sgW0&UXv~\Z]c~®eE-U^f7_fحZvǉ-.!V9S~kaNLnG>yǜa~Ö c26c\rG\'ϱSo1`OQ>w6\Zϻ}_A_Ir셳7쥑액0_eSc\r\\Y##ˑilJOerQ8jG!P{|6GRl5\nl}l{0nَ|Qas48Z~qstb78z?Z9679`Tg\'1f8f9!:+7g\'c]X?0\0?slq4g8v	gg?wC#E\Z`/ǹЃRqyqlad9ne99\'9N/-wu9iYK%笧\rl ČS#8pOs\Z9N@o/RP=RL\'<\0Ɂɐ8G8\'[!yqȖ2*PsWW8uWM5C0iMsOC-9c_9eW*GD7戾sBgp¤jO8g8[t2\'G3\'!ǅxI>㤍s97-8798Nz>((zNʹ1prZq_9\n8U\'8O9E41S(勜ǲ9o9\',95:1N#yq%OņiB8-ɏ9-7z8-VGNk\r8i+}i[t9b9\n8/99]͖noΛLΛ_#^ӛZ~3yk㼍伣p^rosr=8CӜX+_88c!!sGOYg98g9e΄53y:[\rOoIzʙ͙=ę̲_S-8oqs9K_sV,sVNpV9P\n[հ35Ά9p)+Aެĕ_ʍR|IWٿ<9Us -ܭ	NBW8WՎ8rups\rBVF\rv\\XIB%<ĵZ%qmev_{)r~rpE>krBXMCùUkHo#ܣ&s^.\\Mo={?qCqi.*\'^zxp=͹I\\?\\o-9Dړ\\\'?qzr6qq\Z\\Xm\r=g2=׸=/P^^GFp\n?`[\\xcи8. \\l_.a.]Q.ǥSpl/. &),r/	F-^\0W8QͮqydD;+J_irC0#7$7rĽBs^^} #(\'rcǸq?qs?s 9nrsnnʸ=\Z>{mʽt{ϽȽՐ̽g½f_fڸ\rYVmܬ	%n!nP7OΒ[^-<\'-[gsm4neF[)}>\r>1>3Z>s>W\Z6!r[1eBG[r_r?ss{κp{`y]gw\';bmw?}`DL~^+!xE7wj݈s73[a#w{;Lgq۹qW|f9wZwac\'_\'ҳ=sܿ\ZOy(ڡZw m(//OxOfoW|AB+e6t\'o[vo[{2OOtu>l]y<S<_]y\ny\0:tg̳dy }{yfxGdyN<W/xM:c7yy[\ZsyyU:3x^NN\0ΠA3Lv1û0]T\Znwòx&x{yGyP %Pby<E4OZ#<+j!*<bHNU:<btl1#W(c<CJL4wÏ\'	^jxB4OrxDO|1ㅾEE)EyQp>J_e^g/KLZRn/OnDh~Ļ5w;2//:/?ˊ*;;Kxw=k|;yw~wo xw+=H<+U^U>{<Ϋr«z{z0~^5WWÈժD\Z^=bi׬עk$0yL\n\0yoHh^o_H\r\ry[y1Wxyc/\Zx_xߣKx3ɏyƓx?2輟/ޯo2ޢs_8wz&o /TST\"S4_.Ć/Ϯ+xeOe`ʷ-l[\"[\'[[~o{W䫷*55=;;uwz|}6aoS77f;jdqo|\"\Z·T-/7F|O<Xo[roķo7S-mF<Ad!1X-i+&\nw??ōܐ?v\"y>٬?up53|$?\0?\'?\'>>6y#|@Y>·~aOZC|$}=ǟO36>NO)T|Z<O|30D3d󅽏|)	_z-\rԓaH;~պXE~?q7,yOWTN,\0tbyzu9y~C8?w/3>KwKFer?!$a2=_?j$/kr_:N~21~ü\Z~~:\"oY7iDۇ7_˾ww/+YL!spp0\'a@ٝ|?Ꮕ>ʟHL򿎻53S?nz_Co++CB\ZBF௽ȕ^ȕA4X@]}3@iX\n43MZ.w\'킝%?@mB\\`)0wFrFR%[`D`̇قݡVo{6}p>J` {Nu_z+pO8~wsY%8Z/p2(pG:.B`GN-Ix,^୺,89()T=i$YF\\2\"Dy.O	\0(\0fU\0=$x2RxA\0z	3O\0,\'%	:TW, ^NP_:\ns᳀U\"`8-Hg[W *@GN(@m\"t{U.D\\=KĊ8 N FCI|BHX$fn~ϞR!_gy?/\nn[NAZ t |$ANP  knA^1A>vfK`$(}ܷɿyf	Je\n뷂\nQ@a\nLT\n$ճN^\ZsOY&:\\Мp@<GK.x.,x dr]/\'/W?ArXkt^ c5OWy~A`#^QX	FGs>?|8/|Qco&>ɣ-Fogv\n\ns	߂NL\0]0-Tzf>b@Bh`፫`__,%&A\nPoS`P}VY4\\P[\\~QvX).j	uB\'	iBFKCBKyBcB\\	Hh 4שמ28*Uo%\0-}	Bvតֻo\nSIB6Nh]hwZWhwFH(O:xB}tSgdeΟ:^#tN\'N6B2йH,ty	]yB7WsxɞBB?=_?X\nV./^^R\'f݅A. `VBPm!.PBUnawBػGBBW$\nQBTP/\r_؏}B\\.Iz-\'V\n	_$!i!$\"dBLH~RO	Y.!++\\M&)\nBaPn/Cf=aaJ\nHxuQ!ɫv\n/	S}ׅig\Z7O;U	ob7soff\n:3;aIyaNj0OFFO6KZ	뫅\".aEa팰-DX%jV	kbgog+a}mV|W地i幡Ê\"x$/K}/_;_v?{v{o-	I.LXC8$%:?:m~~FplR8Z _-r$\"ڑ(*(ppvɊwippp\\+/}*ݭ$rQ,\\HM~#\\E׿	}=*Ԗ\"R85.RP0NxH1%VX1\'R:)R¶ʓDJ߶~mm5\0;ߞmO5T>t_E:\"|hǎsȀ=Z뉌{~L;̯͉v\r\Z,ǉ,-\"Nŝ\"+;]UHd[d\rl|D6,mXd,;Kdo4.YdhC@eP}Êˢèiѡ\0s?1ɈUy5&R&rՊ<@\"sբcY\"f?o>ul_HMtNJt|CtCQ,J\\-\n~]Q].ȊE@rfdGk\ZD`/.*/]\"9R.S̿*BGDTᔫD&%=CD.؛\\E6W%EFD\"HC΁\"dUeX%z5PSzK)J J%WR.NR/REiOEi?zE73onV-n>ݶ6meEwʈl4\n_/\rT;JRWQK;f\nvQE^T1@TeѓEO.=|Z!D^Du12?$yQӢEOԢ_&j]:\"P<&,^^PE~w^rD\nD=E}w)Ȉ>6%Fb$S羋>>}!͡hݒh1%}}i}+< NqE)ٿ4Wk_*\n_GzD&D˶OD+*kG>VՅvZܜhmH Z6&Zg&.޴lP\\m\\sX}XL PDw߃IbM/fYX+Xu,.4먿zb(Zl.6MMcŦEb3{%!bNŋUUn%w+xOAئPFl33(MtU-ŵ\nR~bxKuw͋?y+v\n#vS|`E3$JYf*v[֧O얈=vˋ=^nbްbhIWSDfS>]	s^šqq8(8G8{UDƅb/TP\\\Z?+t:asnbfE%F+GĘi\"\rĉ	AM1(&++by1q1Ͳ]L}+k.~@k1W1sO]j>6۾X.Žb-q-^敋öő{QWWq_\Z	MHqR8SY\'5i\r>߲[z3+6sg{~sFNsstyqQz^\\|[\\\\9(.&Kω+ߊ> b5/gԛ:q}7q5BqeUܴb/n cmLqs#PGܑ w_s~{[}Φⷼ{WߖCMgC}L\'\"!\nDْ+:,)\\pO(>$rVxflV<{&K<*]\"&k}!kg]Ŀ6J+?qix9\'PW\\+^So\\&8I6I䯜((Q$*V/9G$[C%~ܓl -ѾrI8WwOcUs\"љɔ)JP};D%1xaQ5ObfhSb4.1ђc{%B䝅d[bGb8,5}Vba.mXh%6ͻ[3M^u/URb\\_\0KrdjFl}FZ$qH_	x\Z`$%>,uT덑Tu119DI)^גݒ?%${K\\H.H\0ƉЎ?+\'A)`2_J|	n%d\'	e..7p%nXֿ]v+a>pHrQ^D\0\0ID y-ԄID7$U$dO+螕\\i\rDm<DHG%qubI$yG$u~ڋ_$7F%InI$SrgAMK.왔89H\nK\nI\n%F$%l$ŲIgIY+ER<%76II\'${$y0IcIc%ɋⳒ3O%MZwIӜY%#i+iS59B%~\'$/K^}t\'VHlz#)\")闼(pcH\'%	!%d84F2h!T$gT2&|!|||)|5|$v.o*~hwdFddmdVdnxɏÒx_;e$z?Ybd	8/YJI%$H֔~I֎VK֮J־$kS.%cRiMRYATTTTItuTc-UiLn&Uǔ\"J5Zo:T{T/IW/{NQTât$2Skǀryn9Ut$.Ԧp\\j= uaJKI|̒r:bGcSc\rRnۀx鉕RFW{\\dVwRzʠJzGzLMIϗK/{K/ٖJ/5J\0{)cJ\nB5KA3RXƠn~V	Of/E?	bRlHJPtRluPJQ*%RjjL)sCҬ,ä\\ͅ\0<*QFI\"YDf!Q{GeSv	%\n!H</9{s9{\09_U\0؀;=\\{@n}@K@Y4 /np\0X\0(\0r\08\0\0@1\0L\0k\0\0>\0~5R1\\\00ڏq\0n$0\0Bd@b\n\\\0_\Z\0\"4=5@\"@ǀ\"P\nP,n(\r((3\r\0JVJMg@T7:v:>(b0ic	!L^F:N\'|@g\Z\02E\0;x{u\'-F$oaNGS3@o<v_\nhk\0PH:`0<R7q:{ӕ\0^	LL2\'S/׻\0scJJ?+\0]\0V\0V/TT\"w\"i7_n8xܤ^T1n>\\3TTMT_\0f[cv}jujmw8p9ԃӁz/;\0\ZvvFK%@Yc/@COn@w#Nm@C{.ΨxБ<ct\0YS@wcGcc3o]g5IйMہ籯\Z/6^l؟[+N//`S:0o`0c,dnf^k>^}܀	0`\">cI?)0eL[L	L(\03[o\n;ٯs^oW2ywl\0P(l\0z\0AsX COE r­lk@xx\"A\r@T^M⭽D-K 0H\r$bg@*h:Ȋk@%nrm\\/)&@@:)P|%nt&L(;:oh\n|p\nX+d3?K5GjϣZړDco!E}F́Ok{¹pfg\'`+ruK<H`\'%s9`W\Zkp{<{fgIG9\0)E\Z%9pd\'puR7p-kgTpy788N|~h:N=oXZNgn^{?#|끿z܀?!*-	5K{ڿ X2_hCeIC2D9v\0R3RUwy xzIV>9x\nҌiR@A:>n	ڡo\nu`dXdØ XDɩ )_$ho>wо<YIPy:EtЛ\r4YiYmzd:\ntg:Gd=tK 4ܠ _gAA<x /\nWI5hw(\n>u\0|AA\Z7pPr$|ЅgAa@ᛋA P)(\rVPEj\0%Ԁ7AIW@)0Pʵ%P`\n\0J=z\rtc,(3(1(/\Zɉ|8o\\Y-\0Y s+j>gA@5aa@؂^n/r@Dh]Aa\0]0I sCABa(#$$6P\06s@rS\r*(oV:\nAŧJ鑠2D\Z5aK#`?OPm)P-OԈ\rz|z\nz!([j_+un2D@YzPsnh4<hd/\n4\Z-j{\r40h(h544l}4}hƥ4{:\04\'=1#VM	V} X3T\r$:ی[[}[\0o/\n\0 >`l|l\Z\Z+O{f&\nA``q{+Vw/`[nmض.||=qgBÕBC81\0>iH;mO	a``7[{2;2̍`XR5K*> Ϻ̂\'AY ^ph\n8}	84o/UGz\0ςcN׀cXo*8F\'Z\0\'~_kf>Sid4QC~\n8J|8?m\\,8|w~+.VB08^Cg|\nQGQ3`}F;s0Z,&[`g\Z2`=`:\Zت\0s̭``AXi\0-%jn{[<nH:le[*yG_<Tph\0\\|\\HWǶ!8i$T\0nxn: \0?ف`p3\0T\rnk\0RQ\0w<w@Z:AIo5?x[Oʑ>x\nOWX\\<zxd3<-`m.kx\\C_Or.\'_lOzgY9x:/i߀ך!ޏBL$Ey\"XŃ?0i	QٜlQcMC}\'/A`w;M2D;DǱ˼[?3<wɄCu V {AL {CL-Bm?	1GC,^\0XGAϸC6=9Z=nQ$)AlC- }xȉGg!j!n{\Z{=#|\0⁫CtALtBl ^\"Fa@|3!H\\H^2$	)\\2\\JC.DI!_k ?C@;-!qkF0Hk%9ZzȵyuquHZ6ȍ !\n	C2r 7!Y Y3슭qHNk8vv?rg;\n-yۦC\0N@	@`ڲlA;`es!xC#(Tl!7@\nKA,LyAh t!Orj~	aA	A8 *D^f \"\Z42\"\"3	y# =!ED1dRRfyXy6lԼ#!\r>	\nix\nҔV	yRIXAZW!@Z;@^\'A^{ ]HW/.an|jS|	գ@z}4 OA!>\\H_2U	2ԑNo|9/L\n=!ߓ ?: ?B.@f~C暝 s\"OMMy[m\";y/wmȟᓐ鐿q?r !>d\nTq/JuFTPU[Oy-G@kc\ZPm-$TAQn1T_\"tit盫]HAb	559pwBAM<辣9-jэ8~z=!!=jEpZsGlУP-PoPPd豟iP;7P; ~7a!,		u:U:o>uֺu=\nuvƻC]AOuauzn|T#Bϰޱ\'PCP?.W;@dnА%s=sCô@A/]J^(wh-4!MM~z]z4?M.~rCoj@3R[Л\'bY[j.y;8iAAPp\nIjAalb+PB(ZԷ:P.32\\t?@(߀r<PI*ԫ\nrOx*\r*Q*JnhAoiP9z.ȴZ\Z-}m\r}ZC2hUZ+	Z=`uǈF5ɖ\'\'&sFmB\0m\\>v@@[|Z-Vy\r4:ں4\rm=}9}}X8\r}gǇ_d~~j\n{\r<:b܂cow@G#q:\Zh\r6.ceX	51tb:y\rXBgbB\rBzBCe@f=+Z]tct[[wlcl#si\'J^C+00m/`jϘ0qؖd0lK)L=UN	ӹU?(1>3+a{m!a&\n0۪}s0aG)065a`,,vh%vXb܇Y\'s0a7ra\';SaNoa.`^$|y^aAs߰`x=Z5;vA4\"k\'aтM`16X,+U`qXXyXCX(#W`I$n , Yea7eʰ氬\n4,;B\rY g࿜`G-G!a.0<ge*aa0?%	FVqn9a9%Fclc\ZWƤjX`{0ws׸\rŻx0Fc`s0r/Lu&IF00iuLL拆ɿS^K;}؇\nFaa\n7eXէ\Z.X]1\0\r5N R3nss~6<T	{io{y/1ֽ \r{7#>S}~\n,}޾s6|lT\'l_8l|Ol267\0!¦wf\\`3jlNs\r`zq\ZxV\r0i;OؿZylXw_?WlDr\\s\n\\k9	5+[wޅ\nn746$<ໃl{\\*lk=?7\r7SXr_̂~=?Z?VkpG|S9{ܽvn}dNϾ:wA/<B1~X2\0v\r<,	<@&ʂj	xawz?)%4<o˅gug^\0fKsZwx+<cT8/Oa! 8c$8vG߃p8N:xFp\0Nj3M02\\&p9\0؅,c\\kgll\Z9ŋv:W^yZt^8!^DX719\no9\Zf/W]O8oʊo ߉*=?,u.<|(|؁G~^~섏>|\Zv>*|IT\'|Z|f8>z>{p>Z pjyXwtPPG(:F(/!qBlhKAn\"0\Zl\'&1Bl{Ѓl|@L!¢z!v|B!v5#Xnq=xB\'\00C|0A؏0_~p!ȶ ,mHjIZQ#O #6W#DXDmĉ\r\'K\'i))gkN\nt;yq8Bxovo#m*Da.\"IDuDPDpX\"D#q.@BN .ToE\\D\\Ba^0\0V?BĜCX#CIEE fD.DiDe\nqݧ\Zg%H#qDFq\n\"L\rq=&\ru7q<\"FY_By#EwS\Zw)`|xGf#UPn6q*:t?E\ZD_E8~m]<\\`2#XȿN?n9Q7\ZBHFHK!*{K:IBg.D\ZQm(~=(h#J~!J!pDY&<\0Q^xXp\nQy񘨈x\\vdrTyx\rXHG4~E4#~; eψf|/x0m@tl@tߩEt%goI:=!zJ=0ćO{0g/eP1YB@(+)qĸ/xڏ1=E>A]GGu#>!~M#~;\"\rB%k_kANC*KAn<ՆTEM @\"Uꫡȭǐڑ{1܌D4LX4!k#,@&t,ҤEܻ4>4o=<=<!DDAZK6MHsHǭ-\0%骑<X<\'B@z!.#bllR22 !C42ȪZy~\ny1bV12F+Kdcd~g!_ ,9 czqs,dTdy]3ddt62ug,25L9L+!Gf#o\Z\"Gf5^EN2ACvG歗\"Yא@FtD0c$3عDv H)$2f\\CՐ5$t߃$r[ۑkHڞ$-2cdԌ#9o-H^\'\rFlcPf=R0y)>A!Ep4R\"R+FJ_B!eIH/)d|p|xY T\03,h@!VixdQYYhEh vN \"rYUIU#j`Ybc##А\rcRdU&Y-N]ƐAȖ\rȶ3vc)}%\n8Zg5yzEv+Boo#,#W!{!?G}6\"nB~G~;=X܏OFl& gaQ?-uȥ}zȥ?rr\'o*rmpKFTMOTLT5&Q[`((GQZ{!(7j=6(Ԏ(ڋ5Q((ݨ=!Q{P{Q{PNԠ(3~{j?\Z?e\Zu\0{Mu\'Iկc#]s(k(XMԱ|/ʶa+;u|DKd8ʹd-e\0^rDpPF;Q^VϺe-EKP\\T@T>KT5TP8**	*4:\nBG,*lvuI<u%\0\" bPW3mPwF?ǡz$߫0uǨk9WP7_(2LQ2\\QXԝDKԝ_m j@\n(pMxֿEA_Dӯ(䛛(ԡz\Z;J((ʐ\0E5D1zx(61(@qQ7(OE	C	JQ\"$J%{&Q(i%J[ @ݻԌz@/Bj:J@&J7(\"ԣ֨JT2Tt0>UPn\n@lzz\".C_P\rhTuƂxTc)y\0-ն^>@uN::ߠ^{C܈zn\Zg/#PQ}.D$V9\ZM[A?@M\0&ݭQQG\"TԌ]Ouyn/=_y2.Ԓ\"jw>_/)fZ[pE+\\VިvUi+zIz,ZH	\\Vod5\'\ZhM.Z֎BkCb\0h;9+^GLERGħ\r޾B8<&Fݰr*4/1\rom&ޟ2>hmzދ~>FE&C;\'\'\'FNQSQhKhWӱRB?J9#>\ZB{ڣ}ѾF.h_EE;\n~8$iD[ډ;]>`G_/./,//f[Â6K&KtĬ?}9}}y\0%Vc_F_-My]SDAM]i@\';Gߎշ4ZtZE4:m8\Z΄}Ft*Aߤ/o>o؂AlށmG-2@K\ZԜעD4\rDyhhb4*F՗ч11hI4YGƚh\n\nMy悦û,{4\"4Gs͹SCmG\'Rx-*CK/{Ѕ<t]Cm\0cM{fsG׬ԭ\rtM&tm]~]܎n݄%G?~vg\0j,UA7ۍ~a	!jnE,۾;CЯEn{7o&tA@+z\Z=Tes z԰	1z\\=5BEO|@OBOCO1FXEϼT@;>A?^8Ԏ^LE/DF?i,ѿ/rK+BFG6FI)fi+fcfH>f[Q1a]1[ۺ1[`40Zǣ0گM1:3$fGc^5Ff̮*̮]okӵx>5YE+\\1s@Ѕc_>jډ9Xk;ƦYc{c{cg2_9㠰@LŜ::qqqρb<v`<V00gcb|9`|`1H_LP.&P~7:`7+cBԯaBcmń2h\ZmbL،1Rm(&Bs\n&z2&vW~&L&&&r&5I3zIb2_c2Nb201\0L6u1@|)+|0HrI?u`+b\0CPoahz).İ\ru0l3q5p0B6FL+Hf0El1̽;+ɘ׮`01*\'LI%.SyT	TݱTTwcj:SI31UP̋SVLkUL;rJ\r#LGs%塃z^Nـ.ü뾍y7ߋyo)ӏbٝMC9ke/0#;0s\07Qf*3ֆ$fj3u%3!a~q|Eg9%ܘ.v:kynf^,>eI,Oc,\ra\Zc01+Gl0!0kSG\nwaCjaX=ưa\r]7*]cU\0Kjvv6v4VV\r-v{75cu;bwy`w\Z<\n\Zj`w{>~Ě`M>c.k5{5߈5\\=tk뀵{4֖>݃KoHlƞHHÞX):`XT#Au6vƺb΄`7(b=\rwcz۪?سNسسE06lPlP=6x\rac/c/$`6bFaH*6r{y]8rylzl]׍nf_$[l)6i{769$\"6C{#&6C.fZfh\Z،\0p{67\\D:X{,Ў{c![V`,b7i#¢?Ģaw%X\\a,xKo\"d;,w`6,Yi`y\ZXWXVx+Yb?>P_>Y-;-[secfLb>zSTLV.c2ajؚغbl]n{[{퀭}ɻ+31tlӡ\0lU}6jE-LlKlK\n\rރ܄}}?Q(n-)}~GacGJؑ籣/ѿ&رs<X-v\nfc\'v&\0;P7c)a{ұ۞`b׊p\nBxn)qnKh	S]ũmDOq^8e8S8opZSqZtqQ],vG63֝ov;)=݊3M:ۧe37z3>;hw=;d>;3;.;g=w=\nw4g͸`i>y٭_˧m9&vg5qNFܩG8i=}pRpn8w%{^,3wAWU7ί?p2.f.\\%=1Ev8.Y!._يԾw lC%sp	tqI⮑Fppן qq)j޸Ժø+igqY[{rJ\Zp7V\08P!z3pHXr6$=S?㰌`.Woß#n}p8؞#>dȴ\ZG*q8DKñ8]N(1ĉu8w8HpdX.8+qJ\rSU4k**N㪵h\\*v*c4ppO[o}=Mk=;ukՄkµ}ŵρp/]jq*n:^W^y2Su9d?}}ܮ5|-z&go`+7`&;⾤p#:0ܘl7+[?nxqc7]~v73)T͆u?\'*Rqqܪp~qǸ?\ZpĎ?OqiVWkx\rx/IīU7^ë>loWكߚ}אk,k6^R\r9uܼ:)VxL^^\n~sxC<xÎho֍7f=yk7	77i7fMkxӧx3ތ׏[^[qRax+GxMx6W=?:w0;Da\'YOUO^vN`;%)!&w/{H{}1~_?AA \Z\\D7}9ǇO/kõNC\ZZEH=Hk|	|T7JS4J\r/D+⯺l_}\"U	wF	3ۗտSx,w|	K>[m\Zϩo߆\\؈]=\Z3=4ǃN,ࡵxy\nO#NxC<:\0s`0OXނ\'FIxR87<cώ7.^X<{2.x*^\"k}.|e_o3t|yy4a!4\"j_q52_v_!4\0p\'lu\\\ZY/\03|ۛq|?U\r{Go=O޽-y㇎CnE{X ~Lt?n\r\r?j,\n(O ~gDoBst	~a7OEJ	6~Y_WO<¯^UƯل9Ep6av6&k!a<ANPGB44 ZC	ZI\'݄m(;^1^SJU6`\"v$	L0\'X,= X+	>G8d3I8l&\"~\'^~D8\"j	6:	T6$y	c	#\'Ip\'u#<BQ./I-!BP!J~~ܟA}G0F@B䛻;+	W+	|B,N=#1q.ڷ*״	L!Y@HR۟R?4.!~+BΎaB؋󾃐F@L\0\0Bp\0ND\0PtӉ&h.#>VZ!I W(QeB@;@+K_W\ni2}^-ą Ȏ\"HxizAZKD(#vrEn.N;Bi?B组2urVC#9!P$Tv#rBD TO>\'uy,቉IA\0I/p3\"!0-m	WկjB,S+r2d2^DBJHW!8oF̦	#w9alw\nӄׄi<a%bG飄?>e_\'6&*c҉U+**D5D5^\ZeETߟDTg՟&j\ZKZkGguCWD]ؓCVJ˽EnLܵqqWcAsqKthz},,JFܿO4D_=\Z<%-R_zFK>#M핖{\":MtnSID&kukm}ݯ{qqo?̿!ѷx]?rݓ2I<AϚ:H<UO<oeA<_G\"^%^zM$F\\zKh\'FI\'Fm%FF W[8k:R(b6Rb:1\0141Ekʹ<)1+C3x`xk?Pm;\\bGĻNw@Dl\"DAL$B=0;DDDDd7PJDNZSDBHY wI:Drl\"vH%6D&\"5n9z,C(#\nD/kQr*(:Gfeݝ$ޓ!wI$>숏\nĊebw⑔XQLܖADvkk:b%AH\Z\'>׽N|Al6] [QNjkMvb=-b7Mb\Z{:&[{ ~%~zط#经Wؿ2JlA0M%G]ǧ	ɀJqpsqLUiF;؈%%F!K[fKv=ĥgĥz2ΘNCD\\\"?FR8CRX\')jPIHJדG$m8Lp@xk*ixIUIR;H\'\"mY!34|I%j(.6dB28$$$$$c5*i	iw$$d SH5$3{l!Q~$$Oųaҁ9pGա\'#*Q;\0($kzdt,\\dL$+\"/N:B@:y}tr8>)8:Hr.\\$7m	ɝ |>|HA$ɋx֟E\n!#&]HubHa]HHKqRd3)<))BtՔFz̝0<FJMJF~D^I\"t*)y[)U?\" tSpt/)o0)/twP:	x=	D&ߺ Hp\Z		AVDpUHs$R|D!jwE$fHDb) qI0@*I2$xCzM*\0\n]HEIH%AR)2lg\r<WHT>E\"U/I{>HKD\'\ZpCnL\ryH#餮xRYқ7\rHoWHoOe4%In\'}#}K$%͑ko><&\rl@ܯd$@6ia4$\r[FcHc\\Ict׺VQ3My~釧	i~GiiJZEZA@CM7NNV^7!\Z&RDd5Odd&7ɺO;(dN2Y!ܦLϓl&.\"n&D:@pdTyw-UYmB6oMxE>R%K><M>f V \"p옂 1K>@>EAv!4Ȟd3~7_\0%rur*94|@-B&r	6w~<\"_I%Whc7GcU/5xor|EN,LN%_\'7+}H9c!@#r zDΎ%j4Αzf{FPMTMdc2u2m8䔐Md̉d\\#K&yP2\r$O&E}d%2CT2\\) \\d6&@_d~%2L$6dI^,y,$Kdٛcdތ|%r.	9ș\\p\\bG.\'Ʌ*JrI\\G~\\H\0+{UrMru		epL6ry_\ZKrK-6In T!<I~F~ #H~m3O~O~C~gM~7si<SkE\nOIN[~HM&&ד-Ƕq!\\4y<uGy(y<Z<H /Ǒ\'\0jW9{JQAQPQzQwQ/P-T)(*KcCg7(\ZM\nm(;R(;}j󔝏S(PRR(FcY>xN1M1@1?{bbe K9L9jI9jiK0XS(6^(6uikm;>VPL8h>8NZPNJ)N\ruw/)vS\\6I).&(n0}{@ʙ)>R|$S|(~S)g>R8J8%4Ȇ&ES\")KȤyJdJJ7%ffr0r5tr(%yʵ(ɐce3J:LIO܄NRrSnkRR\0(\nȦv5@l(]h7\n̓KAXSM(^O\nHbT98=@R(WP()\\\n51B~B{C_0T(_(\nc5}IaoW\n\n{N=DW)7w(Qм\"$S((b\"=A:)rMʃvJ_J*p\ZI)eQRliRGy(<\n8C8hOϡT.nTQ)5&J J]\"屽;q6ʓ5J}]JyJSJ\nJy6Ji%)m\Zvw*MJG[Jnɐ򞸏ӵBY|͢|\"\\|ZPzSvFPh43(IKU<ʗ}/QLS(x[( {(\nQ)N](3)s|ZEO}W<g)ʒ*eOY\rU*D7Sҩ[T#\rnԍh-VE\'\'ߟnPU}Uj[[dԭ1_:-:/\n/S矦>Iw5UPw*ʩ;oS:Fc1{wS,S`{UvSvP-vRH<O=L0R+̩6S6v~b]\\zq\0?TG0qNdFuȦQ]AnROoP=lP=\nT)3\rgd/շ+E[\rMo{{R6P5`\Z\\8L\r?L=b@=WM-Q/msF?ArJr\ZS\Z̧lPcq\nj.}jaj;,5j:IMѦfS3OQ318j&9zZ\n5K+e\'fʩYԬY?6So=\Z>ME~QM,PrsiT(a\n3]ҨTTLe*͘_J%\ZdU\r*9vJ!pT S*g;K#\\\r8u\nYRO\"hUT@;P;ԩ?Q]7.RAEFŻ*%C,\"5ZYIO;Gַ>LmVS-P3$jsyR1\"ҞOmS/R;PNKdSjgj\0킦3料{FgFVO0~~Qw;Q//h[+7u[D$Q4SlI1IFm=@]1.&|f.RYGxԕoCu4E$M)RHS]o?FPNPOX\rMЗVOغ@ӌʧi4;iZl]v`ccMLM	mm\rm<fhD3?O3iIy*7ia^OWii!H,նc4S4+*f/Uff=Hov4}h\'Ni\'ݣ9М4{4Q/͵1Siôӑi_inʭ4w(}Q=<o@;{8Nh!1ZZ\Zy$BڅLOڅCkiC9Zx(-Bk|uLŭizwiIҒܬiIO\'\0ڵMkOhެޢ^J@Ci,DZv-[vvJݑJ\\GP]@/hX\ZH!74\Z2CC92h5\Z\r\\\Z|7pRF-ш4;IX~q-hX&\\!$f4F!MVF+\ngieᴇiljiU+*VS85OkL5l51h-UbZk-əN9C{i,N{Xu,ou^^I{})F;f8dC\\}}iJ!g(md66Vz6}$6^IA@Ѿ\rU4<6KTJhhs\n\'h%ݴET⟴Ki/V^-uVikWhk] L.}=	}C6}ß(g,}kq̀BtH ѷoWNR;\r=FDSqU}{}~-Eg~04ݒF:n n#nJ;nWK?XNO3\'w\'<tWO9E;ϑZI?{[Wq՜~6)hF񏢇$NCFC/_T_8B8O;M/]Gd//eӯh>_	_9WO5=J=Ezu=r[L]MO{NOo3)I=5=D\",&6=F-fqeMmI=W@ޣ&!WЕ:GDޢcIt.N<NϦ6SCi\ntfOgoF9* ḶN_t{+]{]TNrK2/E\\-~_~|~?˛u\"\nX=^H/Sdzn%zU?z]%)k)ETWzˮV=mzn=!j9gGk/F6rp?ypzFSSϥX?}\0E[	G#@/cfgWu>	;h3GA	}S4}΍II[n/C鿻{KOїCU+pʃNX}*렯~룯2@ §\'clu\0CyГ2ؔ8P`Ufώk`ehbh\\`h734;Km2to3vL]`走;;c\0\"%0wE_T9Za`88 f8d84̰܄fXV噌JG	%)k\"l3bvO3*&1qrTthp^g2df~p~D$sxU,bx{2|.gd00F/jqa5^ʸtÈG3.gdDYaDj2b2bw2bsD8F;cƵT\\F8#~F+o0ngdOO\"#7#yqr\nf?Eܯ{}˙e$iF9Ƞ`{3ytc`g0fp\\@c;KeG3C!dHܡ5S-Ƹlx:v`h#QQFR7zQ}Ȩx˨!uU3uHFFCF}4k\ZqhR.f4y[/hVƌ|F5s1uLFf-Ggtw20$3fY21z@?͌FWFVGSA;`111Rfa|;v#ac\"ȘX+caL10,Θa3->0c0SsBKNսunZywXRw>Pfnf*+h0U<r*c]3	L\rD&xht#SH2sgA\ns+{ӠMif\Z1\rG&FXؗsLS,Ӭњ?I3blL\r0?\09*iim<6<fXtqt<5t9tӝ)bqby_b0cWf]٢9czy7ɼhy1%vjZ~q֙y3%bOD233Mg3ʼ~;|OBWc<i`$f|>3so3s3kMf~ha10#qLF?l>0!ۨL[&f	dh\nGbbMԘL>0wI:$]D1I_7yLVB\n}	}ferۇܑ5&(?Te?WbtoSEcWg|P|5a~3X2O1K]bìl`V~D0J\'͘0C1:e60j=ϗ2s/3[μ`(1ۃݙ{|hf &&s̞4CGmgf/Og~fl|pb<`121:3f#_60b&Xs\ZaΙ1n1n1Q/똋Oo柭??Qe̿*+Y7&YJXHXN76\\b)Ϟf)/`m}tIT`mZ;R.eLV6gm^bm0`>eԔ,5,4K\rcuͰ4#4/YY,K,]^J,C62fb32b<ڻڷ6씜!|њe:Cu  ԁu됛uxe`Y1:XGXG*-YG\rlTX6=,1\\m#-;e븎)6	8։rz@Lf\\ߡY39.,/.6f(^D) sVЁ\nVp+S::u:?oȺ̃ue\n<̊|t}̊\rs`]\rźژĊxHfYoY7\'lY$V˗;5,5_lB1XI6	󚅫=aw(Ype1Όňta1XqG]eYe?YfKɒIa̰݃c?t_@YX+u\"[\"b*c9*\r**YamY,Yo*.C6cV\rϔU#ǲjFǅYO:YOX\r+DVFEV6eVSP)^zzVc5j?jm}jeuqYXL;XkaWYRXKY>[zY}s}k\Z <O|\Z\"ud)k85g<\"f}{Yo8k!ɉymc-aK%llEk[)[-{Bri:{\"{c\"ˌi\0{[u՘`SyΞ+[sՄ`nb:Uu\r?w2|;lOoٻu{ئmlSmm6g){el˝f1Y&	m>,eob7>Cvb>UbvI},A$}̜yd/,d{{Hi!loI>G\'cMbe]Rv%v\0f싾0#;uȌn6vT[!;&1ESv\n;FEΎwlf\'	b\'䩰r,٩G;٩z\roi77:~3K:zd-$;1Nؽt]m\"x \rf)lH\r5bC6:m1bcMlb8cٔllںlڶh6ftILClN0GaZ|%6v-a:	lٛP<?jΏఋcEJk3v1\"]b].ߩ~xن(O]%bWgW/alakg~9~~Y~B_ֹϨ+gkSB$mՌݮ\"``w屻o\Zo}ag.f؟7C\r1؋책,wT\Z{n>+T{ĂP*gٴz+{m^QX.(n(欷l\\ljTlv^l~QQQsGVqwq4~hjqeޜ9q8,G9c(>1,NqGpoϟ9\\@΁+CC$C\ra\nSÏ9Vͽ#8Gr:er==Ǳ;ʱq%G+(%Uq}Pp|^ɯp9۹8		\\s`s3RN	\'lb)a8ŉnDJ\r98ͼ8Qm(\'\nse9MYDpb9~9	$뗜T9a΍9GNmeC[?99*o89wrpqiq\0#9eY8[`\'W&o8D!q˶C	琕80z9Cpn;{%\n;XnQG|0G̥r${gsip\n8EcufRNq}N62sS S>h5c5֍S©;3ϩ<yay\Z<4fp\Z[9s\ZGwp)8;[9/KI-+]Mn(sه:yk*\0Pi<gl8	1@x?m gBÔ3i#8?G#l17sY9+g9+[9+C8.m\\\\\\}z\r\\ek5fQWS\"W3պ&j:a\\]wǦ!۸\\CBp5\ny5\'35I5ݐ/yo9wqy2\"̉{G%Q.uA&m^=\'!d3aX=yztҵ:f=s݆npI\\]+멠܎zp6=z3>bY]ܳS\\u[Y;Mnx+7\'n8n0l{\r5r^p{Ͻ ^{q7\r6r/}\\Fs4?pYnwu!7%ܒz{e7]|{G!7ĽFsau\\X5../sQ	\\bdKI\\J~.|KKqq\\De¹,\ZPD㊣qŠT+]J3rqާesܢn1[\nRsn|ϭ&q+ls+rvNs>>|}\ZgmmYmqz6xs+ϵprͧ/,r_/q[q/vq;4r;&np;wp_o]ݵ6ha~RD9۫rws[-` n;;6)~tp&_#FhzX2;`;yN;;r;p;	Yǝ].^..7r.iUŤqWw;xjxyJ{ZyJ(u<emO%#oHz5W){KmK@<]1~*O@~IyFI3uW7*vmX}vQy̝FyC<?x0_:Ϣw;Y?Y)ClBx.<ǼC:vxҭ&y1<b0C=yx>v|<9pxAuyA5일4/\\.E|<XbzfyWսyqyfxIVxI${޵y׿]_%KbxiJq4e/ލ\nͼ)/[n>e9y9x9rFyy_\0(ZSyண<4Ϝy򖇵ua[x`-i#syC{yL6ȣL1nW:c[<>)qy{<~\'8{\'jIͶ{yvyx{W^o:ƻfWuW8+HHJ\r/t*F-x,y9%$pWW}i=&^駼쳼S8 nƫO=%\rxOWO\Zx\r:2y,yo%5f4{u̔љTVu:u:;x]w7>9&ཉ){+{]&\\YOOO`oX=qc__lϩ;ռT,t7W})VҔo޿\0޿cyUx5S[9!oW8WXYWqo\'UmY|ռZ*0v]Ր5ҙ\nq,i*k)-?__,u;;ڶ3)|TGAg-;vKő.˷ w8?pE1X\ngo	^a^i/~\n5߆ZRwwKMua|vLf\rLV=K_ޟh}M;!:W\Zr§0kIfKiQ@??Ɓy˂m+2	j4ލʏ+\'-	q0o~J~j`%?e;?}=?#h3Oo%gog_~~|%PX=nf>22Y,%T>\\y^G+||ppOXvtA|n>ϧ2~/>qg:r>s)\n4>;ϛw8w%O%W%=o{~}nHA3_m/4vAEEKr~p$_~u_1ïͯ3?L?|+&,ܺZ%6߮xnv~X6͟>;tͫ/oj;=]3>U~F}#5/;/5XC:?TZ?^?q?_\\_x{{ i6%4_:_MռN[9 P:C4h(ؠ<)ظFV\"P{FlU>M@}q`zeL}[OR)I`W`S`tR`-0.p&c\ZZ}cOfO)ނ}@s9CyCBc(*G`sVnZ`:+8(Hp|9Rp,pH8\n\'/bssiu[)8ۏhAΊ TtPp1\"Jj+QpdRh r%z$j^*e\nb+o\n?\nj8hAR Gz>ZZ>.HW6[	27-\r7[Y\"A,AN3$Apg n\0*\0<\0@.*`+b\"$E2 @n7\0&	`B?V@t8	+	M)V@sF	h%LC8;(`\\0`LZ&,	I IHjb l@.\n3	f\n7UA#=AAŊ򜮠EAHzF釠&CP<\n\Z\r*_\rƬ\\l+RКV%XjIQ_یfAׄ:kAϠހo`<\rj	F]##HѸ`=SM}C/tSW?~LL\nfFm߂Eb~R.Tq`R_\\*[-X94.X	jH/V+Y!G/o	7n҄?U]̅[:\ZsV)RZ)ԾS)Z*	wwʄ;	zBzpFд/wAＧpWY9Fh&4Ob	-6od#m#\n]Z{ֿ\\vmiBLSx_xt]*;=X\n=n\n=Bc׫gBBU)YaCaW &ap00gQr)<WxB0h(OsD1^yW(nxrsiY¬[.&0`v 0&TT<%T\nH!($N~5.^3;B|e!qCs,*3Bʑe!]H	Yʅ<B&[ʄB+1\'>\'n&˄35cBaeaa/,k2Na!,\'>,*|4%b*	+KJkgڣZ7ZCvXWX\'cjYº§;w/	_Z/	o:o/?Kء뚄*þapՈpXJ8E8j RcMc/˄>_Ko(Tprpe,]pᢚppCc@˧E\n,H^&Kx_QF=/SznH_Wc\nFt3D;lD7D74]dT\'NG_dZ)2[,Z,/E,%䈎]lDvj\'D\'EN#~\"#e\"RXUMK)(yyYy./|V\"8;CY碳fD5BQӢQI(x[XGtQhgхECEQAtYUQr(H*%PsEI*뺖@(yWҐ\'E7z\ZEx*{QK.QeQ6Pt6OtV W^DubSvaaiE\"l1VmA\":^\\foq~8BEqyHŊd\"\"y0Et?2OI\n@Q\nQXT(wpMrFyLT*Ul^mmJqE!Q}V4M\rыK|ыE/D-oDZ֖{\0Q68IꗡuJEϯuu$LnŉE/DD˔D#EqD\"	Vh\\A4B4uh꧑臞\\4(ͽM~b\'EkU藃h\Z+s\ZOdh&ZMQ\"V|X齷XQQ\'VqU)D5hm\rbc\"hXO>$ֿc,6xTlVl!6RB{ۻŦPbWAŇ%Ķb;^A*O,`(vN.>\Z,vQX]2Q1ϋJ/jbbcb֌뽙ػO^\"W^oā@q`^qY_884HZ_P~\'|/VGS7ė7_(%2 K4։Rŉ\rit̷,9qqAMq-2- qn8&TC|,@ŀ\'b3bÜa1qN\0QnbEe1z,Wb$JӜCĴ/f9n{y1?+9>\"|]qy^%RsH\\iWUF5ĵfwgHӝO\rlqC팸QjyOA_\'~PKz_܆_,~6whįu]:⮒_wW=iBq?xtx0U<vOHBēC(}x6xv*&i~Gd$\'z9yW؂}WMxKK\r	վY:gK=OCqDiDDvmH6/Q7;(QΖl3-d\"Ȱh`1zD)ѿ\",5^!1K$-%{4Ht{\'ٿ:*1>!1Ϻ&9\\xYb\'Gb%o鮒K&J>J>HW %7$\"$Γ6SSH\\$.U=u&kRB&a)uǧIvJ-%!\Z%!ɒsW$O`%QE[$IN ®DK`pQɵ>d	IԆI\Z(IkFI2%BIfF} U%~![\"C2PO 3U܍?#N;(`%	d	L&^3t%GF	Z#C͓z	nK%BEȦIc%!@3#%ˎ΃nCbT\"\Z9,\r$r+{	ț7JP܋R\0%	IgII\"IiAcGG)	=$Œ3T\rI5JR{%MR\'it(4Jz2$4IIJ%=F{Nқh#;\"7[`$Œπ>@dt/՗LH|/H&H$?l:%?JJ|LCH$3=YZdwɢdX8!ɥJ6$+N7$=REmR@_bT~tt}6}<OTC%gY\\e]eWn&ՄJRRmR?=RJt{tg.eT#m|Oj#m$c.ݣ.5y\'\'Jͤm҃~CZR+R+Զ_(JjR\'SS?8IOOzzI=1R.Gԧa@zMs4$4D*=tG\Zz\"\r+	^uFlM^)NIcJcRPҸai|Id,Mn\'M[Jo`¤\rҌbM;Ҭ[<7iN4V4[Bz;+%͛dHBJaOiRTD{\"~פ#RSJ>W(4RmHiVRg!h2<LV)rF\"IR;C*W\"GQ4ztEZIZj\'-m)I˝]ޮH\rzH+N8K55Q[ڙۏJ1Kk9k鳇2鳶#s|PDzPC~,m\nDJ/Ϟ ڷK;J;<{N/xNݥ;wYA;ԍ=48I{Ic_[ҡᇯ>)ұ	{I:s,46kHgWsKҟ{:JHTHW=JWkӥke\nXjLxllGťT~KNy)S_x\"\\-i\rɴ*dZWA2-L[sA*)m!5ȗ.ӯNɌ5eƨ\\IWk};5do,,ŲR=١{dV22+zlj!;%Yl`eǲ@=2ͳ2pgO6wN̝ܕy	y\r|m4d|-#o9[)],W_,P\rd!G3e^Bd烃ea[DlE̗E._Ȣe3e1s;d12,,N/%$eIe1dp,_,Bˑ<Z\'K\r&\ndT_\rDF,9YvK\rQyxUQ>Аz\Z]IأPG`2|UM*2\\Mh$#&fH2My9*\09%1:dk&PƎ e*]L$|Ȥ%s{hٽk6\n~\nϞ9$Ȋ>esG @V\rOX;dreO\ZeƠLYcC3y㻬G,k]A,{I^ܕuh%{gsXnAa٧{C?Ybv祟lh\'S.l{l]ǽ岟e;d7iȖO8\n}rrrO}\rr]@Jb|s&*\\\\\\c]\\㰓\\+LȵZ9	rm#\\|\\\\tC\\X\\Ԉ\\U@mTn \'7h.7\n*~P>NJTDnj*7B}wͿNI8mY\'?4Jn#?)?b$?zUn1厼2`6sr\'L>F\"wiV\"!r7g{:v\\W	rwyyP:B^W/X-K,cqd%y:Vy[*f@*G#\'<ϲ׋ȓix\rI<@1]~S9@~T<%yNoy]I~{K~yn<q94ړ\'G?#G#9r̶Krl۲N39^+\'$?9#˩.UrZ g09g*y9rsEC\\&U~|?ZRG~=%F++\\MU9ٻBpM^]x	O^? o|?{,vPUyy;JA$ZRb$EC;Vʻ\"]W33w\nw&Y<I^ܐ@y쨼I>.h*ȇ2ɇ1QX\\UE>\'1\\\\pQ\0)#IeF(JJMJf*Ɉ*)Hx>|ss;܈j9s::sǯqw֝v8#}sVsڵ?o:Ot.k	z\0U\0E\0\\>@@Sue1Xm\\lDll>|D	،90Rg|Q\0# `Kf`K[&`{*`I]\0\0+SK5y	`]\0\ZM\0?bpؿp8 0pQ\0pK=	Ydxxi\Z\0^3q-\'V	xC1\0t4~EBZ	8}pJ?p^2 HU	NqK\0Dݲ}ΆǾ\0\\\0b-@d >\0 O#.QV\Z \n\"H\0$:$F?\0$$H=s\r\n=H|pg@pa7&mp\0Tn\0](ȹ\0((y(\Zz\r(ax\09]ܿp_zPT\0TU1l@՟x@mC/\n!\\h\rhtfM$\04݀,[@Wu\0P\n\0@Y\07\0@Zc@\0j3\0\0,\0\r H\n\0]\0=x\r\0w\0wE=\0=䰫\0E.r@ix\07\08@wg&P\r`d*`o `|\0030ud`\0L\0(`)m<`fY\0\0~*\0,D,\0K%|dPPuh?P6T\0U\\C\0:o:F@w!^7\07@C@7W+ǁ;\0wwG\0Z\0--{T6o3жp_*СoQ	t\\.\rwCx7˗X]_ǳ@ϭAǮZ}@h	@T\r\Z>>)J_\0þ<_O􀧧\0X|\0F/^8S y]GBlq;Nxb`|xnURtC`bW`\",\0\nLӯaPS`:\nxO`g`~` ~`CS;/	`ap)y#G#g2X%!XYX}oq5E`mz`<Xw3I\0󁭫?[-[ag/v@q\nbwY\0\0	#@b>H\0R&\nT  c\'Z@EZ,:P.^vK\0{!ۙowL0,yhP\ZQE|Ty<8n\r,\'.NUdل??R?_٣ooԍ~{2r	zH^V<ԅ \r7a@k@hAB@\ZfaoQiOh#\"hBd;;	vR֓o\r^b1~`@{?li,MA鍠R?e&\0Y]\0:2\Zrp w+Ǚu X|Aڪ  >yT\nr)ԀB.BσB^m}*ERZAg9XйG29>tj=1t/ /(\0t),tt\rt_jPrP9(\r	Je2\\@YOrBA)-7\'<F(N]P,\n*RAϠEGA{AQA}CAoՄ^^ŀj@uPNPyԨ]j>AsU@YA͟@-\ZAm(yWn@8;bJ@  _ATlBAȭ@A&V&etqD7k(`D{Al V4	jqox@gM I=Hh\0@E:ԽFԷu7P#YPE_1\ZZ\Z $A5ADS ˠ\Z@Q<h;$з:4Cw\'j#(]\\hA\r-TK>\0\nS_v6Xe\rVm<^v=X8+nm9X\r^61&olxu\0V`b]/=ւmo=}(l?| |!|@vhs	>d=jGs^~>~5m&ă>!o~%\'H s)8(2[8B8\"e;pT 8z8$8>~RD3	p)p	8er8}3pŋt[p:9	?g#Y/΀P,v͇[l8;-8\':8Y	}1]\0v{G	Jipk}pup;pm0\\w[\0dnH7OU悛RހXহV7Zf/fpkfcy: p[0k`N?0\"Dg/h0Ư/S}`ZR	B)]`0n;IOU`~X(<\r\r4tX,mw]IwU\0w:;؀IPz_oq#O(C4<m/L\rg^J3x\0=<{kW}d1_??bxY\nx)hAVn@V!jq~#/ !Zwa:Sk\r*!9\Zd> \0b(\'BLK \rSZL٣)ȖG\"Ȗ~E<6dK+2sFŐw!vٶ} 88.@3m .SqM)@\\vQG*vĳ9\nB>BxN;Rv9oC@Ai\\șo ɐ\"Hdf$_%wHlO%$.+$>Ur#H\\Hf~\\r=i$Oy-tOHV$\0r{yHދSHm4*.\0)<5B?C*i!Ut#U	Z.3-H}IHC@	!yNT4W!/A^A& /{9$@	q\'A@!ҝe\r\Z	0eAUQ-o*k@DiG RD!ʑwޛ,Hߥs7v@Ȉ0dA2M{>t\ZdLCB&Wl Sw} _OAl%AfL@~C~ *!9}3z+wG! !ib)dEUQ@UlĔ@U<cjfPlvڧPV~Te]%g[ɃnvHn@\rC܍nyIgA\'@mAA9ݾq+t))e,vu>5\ng[t?vW7Զ[辭}B}*]GK+zZuУbGCҠtc@c-޹P.PgfP\'NAO@f@ߋ!Gy#Їao36NгK[lgzChO|\n4=\ZYaA/BzCЄ$^ռ1hB+ZZ4i[hRhr7h(h\Z~~	iAsCo;@\nJ]IhacZ즀<|-y-i[߸-r>jVVfBjF\"}hm]U=v\0	mdNA~>5>)6#Lh\r3zmm/vC;.vp%P؅Pc(*By>P\\k(7zi\0JpJ?uʈ{B9P^~(y\rTZ\\Pg\'4r*b_UAcAݕ4thN\\9_h\nm[	UBDC\'5;Zv,\0tr*25EOs՞};	\\t4ʆ.}.z]fAW-`hLu+Lu\r\n[Ӧvô?ށi\r[,~fu[os\0*<5fHmEYYaVma60ga{ҁ=`{]Ek0`v~B=N\\;)=laxaZ yD梭sᭁid\\q0ׯ07O0rؿ.q0a\'`XG8,HcRwĀ9tQ1Q;[:Ȇ0]HքTb.\naS˰+;U`avm]:.,K=6xv=sv㎆AavXǵiP]\rI!d-t\rvo=\rVvV	{V	Ui`j`j@Ay}X\ZXNӸXӇ\r綍!fe}\ZeA˪Ў\0%aiX~ Z0K1FQLa```0uv1~<	Sa01LS.߄u`}iίaa7`ZaCذ)\r467q>que8l|6\r\\~<}][7W`\0[6VpRjccfe\\I-\0|mf*\\;z\0Sl_{<,8\roZ_7M]av;a?w0WwE50{j}{\Z0=^B_gM	pWpYSo&pP/܅\n\"m\rwo=epֵcwޫ0V_\'|OjOyz8Tx@a<zX]	z\nt`/?0fp\0~-\r~p<p~,B/xf<&s/<<>^~	>\nO_snSF4Swxd<C-<cIxF=<9<c~%)pg9X+nHuOw俅!H+:Rx=x-C=kUx٭Gc0Ax/{xmAx]E=A77~4xSW	*xKD3a\n޶^\Z)5rp{p)O#4;pNHÉkp=N3RYpk]\'s#p~Y8_.EGb\\bzeN&pb/\\+XKpe;8:\0ޟoDE\0|	A?u:GkO?=3rm\rǆ[	>//*/)q\rUF9y܃W0wS=߿\nK5B1t	Ch}<@t@u{X{RI\Zb0\0\"Ly3LIya\rcj%{aY@XŀVk,7!®]a7t$&bf002\nѱ8qh	b8\\p9pa#\\=nwaQ1?Bxp#G#\Z: _\\A!M	7\"@!9!¡[#\"v\"VT Bb1DWDFD|+\rpuv	q-z)\"Qu\nqm8t\n\"5hZփnhDdu\"n&W##ehDξ\ZDSDYMD>DVD!Dq\ndFDE}YU(؂(DTD#*=BT;vnB<@ L#U~CG<!j<Oe!*B<	vuG!bxx9uѮ6h\":|Ct0^#^MZ#\\#fBiCeG2#`5 GP\"U~B|Dk]m+E(XߠX#10l!<u#\'BF(G]NTw7w:,A\"C={fbp!\n:1:IGLCLJ_Ի _\"~E\"~\r\r fas4}?x ~O![+F#;R#u\\	1\Zw\ZG)A\ZpH#ertsru\n&roOvw\0i?A;G߾_ #H<K-W#=<><WG@_.Ez+>(ȓ۽\'ۢCd\">\Z&y+dydy@ƥq7ceK6+3ȫ-=kdҹ$d;2\n3B13+37WY\n?dgdߡ̯?o9,x,4B]9,vG KAӽ1{|YiR||E֩ \ry)yg59}ܚl]\ZBAۏlCC\"_\"{JHp^RBB(\"$4&\0	C#*NHO$*EbrL)$Id|dAm>Hv8h	)<\0 3܇Hi.~#|HBvy \nΑ1rDsoA\0 G?SI七rM䄧DANE\"EN\"gs?\r?_1Ş%ߝ1(K\rUjP<QjA1(uqNHWCiBiPkً(3F(GP/CZ?CmȯCBm428MGme|x58ezj!ԖI(}mž̿]/PQ2CͻXԞu}}ޣ(GP\0HI=H;d-roGy3QP(\'Q\'&QD{+P6GP!*<\'>?:Ey:S	u|\ryu/}\ru\r;P=V.wPWMPWŨkڣT\ZA\ru*u2fd$v?T-T>2*މUtoU*_A.ʷOP}ePZ1kP!Jv	:2U@=n.Dl@GմjKj~zH)pW$jjԼza)\nt`lqTnjZP-[PmRTu![Bʾܴ@GQ {Z:P\0R\r6mCBPxQ>\n! D(K1E@QgףPgpsE0\0>E,>O\\P\n\'p~%:%@d\\@)6(%؇<Du{QM>\Z&$_5V\ZPB\rnA\r&PYwHwQQcsQP:ϕ|a j\ZWA}rQTP7fP♨_	4Ԭ6u\'(	t.n/jZ%^BZ%Wqhu.Z{hM5kk_Ak|F@뿽Bo:R,kߢ=&:i=AڬP	|m36/G[L%Do}&#(z]?=J9zogz/:zm-poh_hx5a5ڻh5#\05+d 蠏&G{=Ġ}h?TpI\'\"Tv8X#:p$CFaЧ5ѧ#\n7BG3C_pDF\'B\'Ġ4nC_i\ZA_ѧIQۅDtZNt:GgFg^o@چ@gcй|t3;mbt$(L]T\ZW&@Oy*6t\0(]]B?-G?>YLGן)E?QA?1C? AF8n_-|GQhU4\rFj8h4\r4=@4иhM\ZCoCSo4y/{_\0тB(Z?33\n-9كm*D+X{P-.Dw=z}ot!0#Ϗ?c1ON\ri5zJ=SzD֋F8A\\A\ZBϢ||suNEE+փ0/̪cZg`DczcfM~ִ\r]~Y)#c֟	1l\nlYٔYfsn0U77f`<1\Zc\Z{UP4X&\\X?`b1V\\ fE1*ϳ\Z}90fqP881R1g4mi5̑Eq-ղ~H9jd9V97\Zsos㣛񱹏M<]00͘ɘLLx^L8-&&b>&&yl\0B&F[c[((\\S?I:|,Ĥham11U170z{07o217cbwb\nL!m)S܇ĔaJ1e10e0ṼvLO*%\ny&c-_<>k1,cj4ڇiby4ļv`9]\'N;yxD\05D;rz@CL10n59AycP^T,	߅A&l܊bp9ܐ`Cl_`1-NAO{0;;kyM+I8f83a7#=؀BLDc]0S=N\n@ufY9YۃYn\'`7w0+	USOܰ\ZxqvͱCص}&X#X\rXOMlkA5.:55Eb^csc]X&N]zVKֻ։NXdd-#[o?=`8=贄=x:`m3yX:31օz_\rӾ={,\"9:֧=ƞƞ2Ǟw-b`C◱-0\Z6,\rôc8&b#l%s8s$l	b-^^JMH3^9Jr^XMmMM.M{폽\Zі1pYcsKmzmUl^nl1[-j-a`/at>cͰyll9P*>(}~[i!V%?>5W_!ϳ-̻ؖV|lke<eKKNc,@ohtzcbRPXXf,~]Ewa/˰XKH%cX0\"~t\r,~5m5jf,	+>c	_RM\ZV)+ₕ걊hQU6*;خ9lwlwc\'g~w1v$0&015sؑv\nF=Q5؉_دt*?+sӳVE5o4u쿇b!\nR9SڂS}[e3Sli|Jŭy=[{-NX[g[[OH(H5ٸs8qN`qg+DEۢۊ㶒_Qmvcqqo%8oWq	wqb/\rs8nn_>q)i;w!i:^.[8}q|/|8eop\\.\\\0*\">	q=wqwvB;2paz@i3,\\Ԧ\\t@\'|P|dŭn]v][Klv]lKNK%K؎Kx^Kލ~`.2Y	w7Gj\nኍJ&pe;\n\\Ŗ6܃T܃SpV*O㪴}q5V걽\'m\\ca752qop-0\\ˮ\\^7\\^\\Q\\d\ZmupRpR(Hd pP8,b!?Ca(Qq8QcZPp̔Fs1[±6pN8K=N,](<qn!n+\\w3\\d\r(__½=t<=kdqv8n|}r&}g>Mo\\}2TG~G~F~Y~\nf-f/Upp&c}˸Ň?p+p>x2^ejs\n6װkNkk.66 Z00,M!~S#t( Oo7c4Ûnۈ*D{F3;4T;e]_5CV\n\nކߓ5;TU;X]t|.Γn#x?xjxIGx8Nb]AF-= )|-|<|]|%|->e	\ragX|<f>e|\n(bN|N>5 	?\Z	+)˧X|_eL\\ɇQG|Ets:\rWw\'EQM|iB}z||Y|Վ/*\n|k&\nW	~k3u^Q:o72yjOKO ֗mc^	3<*maaxD#ڶQcxt4\'\rOjWǓlSUxP</Ow|-xJ7YgP9vx^ي,N~x)x[^2N{vr==c%^p1>w|--k\Zw\'{?#b\'݃Yϝ/\'S.o]-OϖQu?}?Pp\Z }_s]_OPybJP}\ZBP3t\'+a-skl	ڟ?֝8AX!aC=DB3i6,A,¦@uWiњ!a1xdE12V\"ai=IO=p@pAp	ߢS?\\!fƇKJi\'[$_sp|0sf;\ZEN#؟E8u!lCݕBWNNNϼ\'pfH8@8[BBbG<ź(B)!~4p	dJFZSKKHIH}2EHYG<\ZK^O$#dV\'d\"b7&d9@~fE)8O_CL\'1A\nw&KxBɥRB-6?9BKBٮBY:D!T,~$<8PjBxt$8>P5KDw\"<{J\"((\'ڷ.:	τWv\0Q(&o	C	#@>d?-_<\'SMsj=E`%k	쇚 gGC!K ~%H	2OBۄn+s!zO&zS>L~%HM%{JDFV/	}	I<&|\nR\'|\"\'&Sw	S̭Wi_фwR\n	\rބ ¢__Kiz؄߄)kAU%ǉkk_Dpvc\rq^=hqT\nQ7{~TN4Hb\rV7\rx\ZoƞDs;1\ZqSsD<9{hjJS!xo#&-_O&#vD&ODD3W~K%:$:WΓnnzD6z[]J[}qSI\0w\0ZbX%1܋N l!#^#F}\'FAc1ċ$++k%bm:1$<Gî3iě/]pω9Ĝ?\\>mͿ{ĂkĻvFbR6bivD67)CUć6G:b]6bG\'͡z$\'Ӑ+gg\ngMM&pb[bb</Z#/{҈.ED2\"B	Pk\"F\"<AMk񷴈DoD2p7΂fMd1̃7L.\"3\"wҼBdA	DVn\"gۯIEXo\rD=(&]^b7==MȉX[s7;gwAD⻤Z;(q\\BG|__OL@D!yf#q̧8Nzu8MLY@@9MK&$l%o\".$.J3<H\\<VG\\dnI[F۲G\ZoMrœTHj\Z$W9$u$\'$>)I?i]Hf 3H:I_%m0.\"mH?<H6&!m6HOHBGQdbgO2%>@2!E&m${Yï,ntv?H4#Y!Yх$k{$^q*q P\0tE:@r&l>Fr1#yT<@kI>}H>E$\"lk߁-$S֓NZ΃IvRp/Rhx\n)ę3@\nCNϑ\"6:\"\"HgI΃_.KI1GϓbI`Rt\')A:)DJ(DJ #]!]]CJJ!]{FJʙ%eD23\rIYHY<I*Hَ\nRD\n)EUIK*R#DJJ;E*8C8TقT#U-jTISI\r-ƷIO[H<ҋo2RhfKjEj`Nj7DjGjۓ:O:Ɛ:^i^\'u6>\'u!LHV%	>	|Og gI{	{$#!$u7*.M%ϷOHxLj (\'~zƖ$r\rqYHb]8WI7&$@,IoHf$I/I\\q$E	I!BR^0$)$mRINMY#\rړص0O`1Gҧ\nҗi۾4HH7I?\"K+<C@OZXMZ\'-@ǝ|0&t+ȫɫW&EÞտY5N54ZOZgk\0:f~dV\ryȺt-d/yS ٨ōlD⒍&!&dS^\0:YV<\nyf8cvG\"sȖ.-V9!lMBU@6w{ad[\rn*-l!#י%癐EA䃇ޓ^\";t&;*GJדΒ݆u7CGG9NdߚVx)rh59Mr\"eO:y9ԥvp|:Ї|Ziz	쉵.!_(c^ɗX+䫥tKkUɷ~+ޓSȩflrzr+9W>Ň|*|Q79j/9K!g_#g>oKw󨜜@έ}A;NΣ=$߽jC.,&V-\"ryrWJ.N.ݭG.\rAo{\\:E._N./X!?\0= ?1!W!W{Ձ5^kDD~Z2K~&R#7 /|[uȭgmWmm]vCr:y4ؖ@\\$CD2d@10hHVqo;2q=TD&#^)&82&3xdv;25YE,<,,\"cbdYrYz3,V!Z䮱Jr)H&fߑJC~EQ,g׻//Cɝs{`\n3??6m\"\\l!~B<DE^ZN^zxwQAQQ9LYaKQۀhhdR4ߡh҉5R2e͏#-ZԞNC1ḥ@R\"(S6CR6c)gR|oL0)u)(g3!e[mn/#OŲ\nFAvXWGPlRlД}z(n(aG(f(G)A)$ʡ/) 0HgJ)ŭ4;E:M9r%Gӣ,P0J?O)aM3ȓR)Q.88F%!N0rYcrO r\'rhJU7klUJb(%HIRR>QP*P87JYJƓ\0JvJo\'%)LꜦ䅒(yT)w>q)c7Q>F;H){L)2Рx(m](QAJk5Z6|X/I닠)\r[)O;)])M&fJ$\\<iJ&ҢSAy!0(/(/(uYp LM@S )}~%k}P0Ng)L@R%)\na;BJ!kfP[7Ph-\n{\r͟Mp7Rx({Q`0Et\"m?IDyR=0J6J70Oy]A8~2DPfSލ(#g)#7)9PF|YlJ_u21bKLLuާL(v8ZwcMuٔ,1cBJU=R1eJYRAU?IljNRVZ}0Zs	U;Õ3a;UU\nUU?τj!j\0B5Xjn^mF5\"QRMf-}抷T/۶P]]KtjGLΥZPQm=%Խ-v+T{\Z=՞EI=xz)zpz(e$JuCnT.ST1z&QR/PP}2iTa{:z=S+U>LjTzcujiCj4DSc~S/n\\GI/ХW|/	zSpjҟcO$jz}{jft3[nPswCBy~ԼK|EIj\0z$ncj	dZ˔Z,-jZ6Z~ɄZH}pݓCÐ*U*gjּ\r9Ā|ڢ-|Q;7NQ!FUTI*\nK\"T_*Jd|{N*5J,qaT1JD8PҺTjʦPn[~OAR_îRߤRUSQfQ?l+~L~OJ6WX5:KNRo(o*7	JuBuR:ul{@S1~VzPISix=i\ny̥i.ii&Ѵiiiva4ӴMi!(!&f\ZCʏJ7ӶhShAc4(k3VLm3_h;}v,,hJDͪ<\nSAL#JU}K]zL+Fw{Jvv\\JsB{ќi.ڑ4S4W$[=2=>^^KcӼ^Wz||ۏ\"h\r JZ0h=-X|vHv>iEw\"9Ly[Zk*-49-Q Bھ\rkcdZ,-)LKBKMɢҫ/Ю_ݠiY#$9[c< ڝHZ!TVF`@+7Ch,CZE\Zڃ5{h5*-fh5=\Z0%ZY5=EZӪ/#ڴὴ|ZsPN{abUPA{aRC{EqjoO@EWh1\ZA\Z:OyC@\ZONup4rn\Z?zF6%L\Z#J?\rјJ\Zt­/Ɖqh\\qJk4E4EY\Z=5Lʦu7mu/zki}޴>k>o/Ox5C\r޺A{XE{\'\'ӆL{håN,j6CӦ̹o{Xo9i?^ͼ$f\riYI>\'7C+]C[I<,9WIu:隃k@t7:v/QD	\r=麱t;=7&Ls\\;s=醙[э9tYC\nH!K1IK[K\0mk}Mϸ218}t{l.qÄ\Zݱm~HHw2_;=}K?QB?cݕ3IwWGw{{[=ѽ^N}jEt?0DS=7NCadzez.=\rL-==b=ːSA?kHLXɦA9ONh><\ZEOJKO*\rlg\'=voޣ߂o1~aـ;Oۼ<x=\rN\'zAm84}z]za3\'D/zR\0MzŜjGZC~Hl׽(׽d9z?ƝgӟI&GzS*	VFoҟ=?~Jon7z[?[V=/8w4֟#*f;h3I@ot7QtDƌСB0:nEi	Utf:{:ʏKD|c*:%G`ttx:iG>fBiЙLJEg9tW:MB}Attqg.9r.KSte4 6G_G\r#?:.ݓ/>w/}CwwohLs?뉒>>S>_Fo=OK/so+WCUdcSz\\C=\ZCCpC6CX36\0qbelL^bl~`gk2B=\nÐ0=̰8:zT40\"M	Zɰ>dɰ3~d0삅OYuAÂ-#OEC_ka}uqcãiqtg2CXXq#+\\2N\'!S5wFjFOFF*dd3\"\"0\"^((qnGƹݏ1곌ح=-qVKT	m]FFx #a(B2n|b*qfm~e/3a<g /1JK71q:2@!BQ1Ȩ$3jnf 3\'u\rMͺ6/Wmƫ{\0l^lÀob@ޘ0+VD60pSbN1\'ގAoeПe0FZ3і!b2DW2$O30ay.!P4]EnH8GSӛx9fO%:c$1Hg}x1{1὚n+`|:̘ڜV̘10wW;a߀4|l\n\\faRg%1Qw̫?$1\rOz1v2[KL3Nys[Yȴl1JW6w{&62_fy8tjtA.K#LזL7\Z{%7:iLo\'\rG!yg\0f0=<{yҊ7iea2&z[A-$f\ry4fͼPf^[n3=e^}yLve&IQY>17f3B;3Ây3\"|gʼ5tdfOlc0o00M;qf̂Xfax 5Y4c`1K_~ffI1	̊WGϘ^՘,\'g-̦[矮2k/F2י{_2+O02_nb:0LL)	?<D_c왤LR3Ȥ~d=f3ُN1[\"LQ]_)^eJƘLY.SS^?캬J)avG0{!׵_oRtcwXpss%2?\Z3tWcṈ̉!Kp(K&>s,9Ng~EeNGBߏ0g3O0`=̅u̅Z/&_r<s%|2ZUmZ6:OZdb4XU,M)֚XkXkDu֗Y_t6toa(fi6q%,͇,,8=,.֖d<B-5k\"v[\rGN4k,UZ4ˊͲymړβȲVXv9}kXXLW`9ZYNo6d9sY.)X.MB*ֱjoh˷8dNN<:/+)\nhf&BڔЦ+PI+L&dvcE$\"`YsYы.LfńY1uXqGYW.}e%\ZU7JHfXilVzGV:Ǖu<Q̺q+3Wzy&5ĺuFu+n\01%\\IV%v<+^UȺsU*\\~*zi*w4u*Wc?*ob=/d=ȼzقUIAlX[XzV[]sGXTmY\rXϷ뱞6%KKwKz*i\\c^f(X`vςnlxς`\rr8c\ZYǋ,m=eYd+yZbFAK%ܛcYKZ̒;d	,Y(%qgz[\ZaYXCXw>n5e}>cnF-XF6~	kBe}adMNB7y.;\'B֯OkQm\'SֿY+YjOw+[#ɞiYSֺIek=cku6*:MlIưv&Ԙm(a;(IlI8{˭ۧwbwwwwe[-66g6*l[2.ڗ/%ycYۑ俋}S\rۥve&fqd䖰R~*\Z\'O鸰_h\"cI;jLv:v쐵쐛NIvysg\\g2yJvĳ+v9	170;fNd^b_Koe_{g_tN2jLN]xNKe:Ǿ!agazcg99oٷ,\rt+;þe*؏>ڿ@]n(c7ܯa7<`?Mf?%<2<vD.y\r9%ƍְWv{	Zaw\\ew4awb]lH0bþSp!`c;^;^lw\n&WaC6Mk˦Yq6j\'C|p[aν`=.寊J=vݝ~\\{(>{>=\\/aOb/a?|u=i5Aʞa{Y̞uȞyŞ+>{֜Iv\"ރ4c//rTd#8|*AʹjY\ZQYu,ggm1gQj:[>g]zg4	g0ѵT~;٨h1x+S9pɧqs]8JygJgggg;g\'y^ͱX%Xñdsvqug9m%#bǑsأs80q#xXnx@98G8p6rxp5x9>Þ_i\0		l	r}__pVsp`6ND?\'I0k9gq8C9V/8nshx_w:Ur.\\:ǹt#sϖpj\05\\r9i幜97[8f;9@MsSDz19\\6sgS47)QsJfrJwsJGwqʛ_r*9ba\r^N6S%3TxraO9O=˜zS!γt/NXӢSi٢Xq^p^M8OZ9}Ϋ_N@9\00tq૗8]	dZ(3ER8^)ҘCN\Zs9%ô:s8_8\\w#u	Gԭɑr8`Lp<)⼆Mr6[qp29ΜUU+Ѭa\'X@θ#gbdfW3&LoΙ~V3Ej.s殭,P8\0G8_\\@3WUr5_s^js}In(@sr7=K\ZsM^rtsr]ǜ>*Nrq\nwwe;dk_ڈ{ǹ{+GVcøJuәzakou0YQ=r/x\'c듺{Mp T87ninX7ōFuq˸죹11a1Xs{Q?{˾r/Y^&DqR͹	w	#L6A7rg57M݁&1iܴZn:f7br3ǸTn,7k˽iWʽ6ǽ)7g--Ev#Tnc	~3[[[HVG8pߦrFU\r>܆N/͏¹ͣG-wmk;/xH\'p\\\'\\kS.(\\D.$m5»ͅB}CM\\XU+r縈>g.B3)EIs\n8 #R$$.E<KeU$.5..os.u\n?qnW+v\']\'nuМۗX}m}K¸~D !N;1ٸ;r	pxp#\rxsXW=`ܙ{]?봸˸Wq.-p-ۈNCi݊iֺ֦Pyk{֥t֍6lm8nӵK~ЇxFf<H}A3_gncʳY\Zvt\rvμγ\Z&l*x{5sxv}!<5|Tf@_.C# ;Rwsn?<<xGOe$ry^abNXHx\'2!<xqv\09/H/IBG𺵼p	tw:=\\gʋX}Ŷk.n;ʋK0Y% y	?By_]Kt5yhnݚ{yf\\6xy_N\n<yS1BS8Ȁ+ʻW\'UD*w|U\"xx5OCx5+1^o\re32vl׆x{6kck;x1{JjxIia&by&O{<bSq#ui(fOx<lG+h$h1$yLYӃǚqv%<׃<iOX*<Q9u7S={j{׏ugyxCwFFpg\\ބI;o=o*/+7#o)>\\7w~G}[U7UjWWgWW#\Zo5\'kRC;E\r+|S|7i|_5|-s[WWo[\'o\r͸η0V?֗={|ۿ_}mc|zlwv.C#M,+ẅ\ZxHx+|J\r?3?0͎Ƞӣ~RSGN/HVc_u0~|?~a#R!^~bE:?Og(>o|gzo=j.g_:6g?g9>o.rc~^{u#_jǯkk}\rWFCqƚ$?~\"eʃ߾i+#Y5!c?6>,6K#I|ԏ|ȋOk\'P	3|>9c\"t>=*gv]s&\\F>>\r\r|Qv7_|x/p/\0lW\nIu~oW@v{`0~F?1&\Zg4%1c=_֟3Ng!V]8_rjU/\"+z*&/ՙ(uEFC@˳U%z.xPN@T@h.\Zax(01*0Y	vv]z,}%,ߛ\n96l{6l؝}&\ZwN;8L	2_NIkn?<*8tN3+8Z-8EplX\r-vPnI+D:/=*8W j l fA4U\"8??!`f*͂51[	.>!ÓlAY 9Qt|W\nңMQׇ\'\Z5\rH6A[=u9]AeAp vyAi`:AセjBA񡟂ӂtw4Y $Vp?,(3u/\Z	g		-2-gAǩWSWtj\0RC\0@\'ge}Z(N	P! j~G(\nTS(`CN\n3zё*	@<i)1Htt@6,P@hś4AWeYwmc@J04CS+Fq\'/I?SVӃ7󣂹^x[x(XZw@\\zp6mjߍBFLP+Z]&9 !P&g|jBP{	N(4E	*fd-շ0)[h	wbr6{6½wv.BVB`-~|=,WxP\'t<#t\n]l\ZRkZme]£m£kl7zL}\\˅\'ۅ;\n|Ha90Aa0h*E%ݲ\"k[\'<mOYNx&bBx͊0\".Ai#?\"FFx	/c#ج0a,Xx1aEh&#L\\^ L L.L.tm۱{[Gx+k»*EW\nKm.I>vg\n*VV\'VVwrIoj@<>#<-*RዊDa]a{v l\n;P+B!<|M E~\"\nQ؍BgG!LHDI.4֓*d̇B,:#\n\0mP~L($\'BY0U(:JS2v		=.\n{xU޴^ma}o\rDدc$p8%|phQ>+A1 Z1]8?(\\%<M8f,;w	G]O8!N:N>NAOi~<\"~\"Nv	d7	pf^[pvSpJpS%\\\\,\\,/\\B^k	HDn?DٗD<BDj:f\"5rCCQiN4>45^1\r\"\'kDDD7DzM\"#\"#5I~ٹ\nֺmK-mA\"kl\Z%A?DKDE\'D4\rE!UB#r7ܝ]EoE2EEm\r6c	E5	\"\"\rXYW\":(:e\':l%\'rjDAGvREfEEΞ/N\ZE.O/fxpe(QO8)%#RDLOx%-wrUJEˢD%\n߿$Uw\"Dƿ*l=D;7ED\ZE3E5ץfwz]TIH\'z5\\:+zC,FXԴST+z\'z!ڞ6^J;E7d͟EW^-\0\"pW=L^(BEf0E\"Za\nEBzI\'qPE2;!D^#[\"aU$$EbB$!GD}\"լHGR墮(Q\'DEPE}8Gk\\z,zQ-+\ZMΕ(\Zh/\ZgS+\ZY+\Z51}G>OD_^ESD#Nff 9c_?H|ѿ}bU\n*%5+X=)@]9HxE!px^b.-h\r(f[xh 63y+6n#6Ɗ-m2;Bߊw?.*[n[[M[v7!*Ų0kAkqXScB@\0V*v\n:!vo;_pym{{ǽ*hK*\'۞-{ȫ$>_M|4K|QؿؿQzڈ!gš=/v#6ƈ#~G/<:\">4T|qDUϙ_)NXNJPtT|\\|LFrhQ\\[V\nQahq:fZ%{B|]!<\ng.>7g?+g,s(ۂ	q~De5Q\\#_ߧe⇞ʘQq%xꟉQnG\\q\\,Mh%~vyL7?wCI<Gr+T2qW2^Se+n+n\'(ŋ*T1@{Apb\"U1z1r_#S]HB^x(i],ƙ8qĄ)1Q&&iŉIf\n1}TL/\"fًW7bKW$s׋<ł:Xl$HX:˽݇=V}soJoFS\"#&=l-4`S=6_(W{gF_\\^)BxcFph^$^\Z-^38VI4F*Mhn:OH:X7Mb\\ʖXbILG$[-%[%%|/Zd>d;Xd/dݿAldOdH.Zb׹Ub\' wEW%9ıdV;}%\Z(qy\ni$?%nU%aϕ#H\"HeJ|_{hIߒRI	sI(]JDDnWD<$9IՒsuIt休b$d$^Qr*Zri%\r$K9HKR$)T\0EV8H?uH|\r$ӯ@	~j䛑$wH\nz%E%Ż7H_?%jZ%m~Js$k\n75=Vw**;ɣFmI\rꑤF\"=.,9!\Z$A\'I\Z%;%σ%rI3v%@=Ht<$`	 ZFN(~I1dʕ$}Lg !9IHyq\n	UsIB\rH	*pfoJ-E\">zH\"Id:SyDJ(W4WHzr$+ Iwu`5E_F)y3a y<!2VJާJF[%:$zUk,$co5%[o)o$\r$(˃-7$F/K_vHh,%YJ,HUIUZIR6/RM	+TT˸Buwt3G&]7n#ՙH7`F6J7LzwI7N\'t:Iy\\;WtK}!VttއR˨R։=?{RDM8aRg%W)uɔzoz\Z2(=~!鉐Uғv[\'/$\r俗9KC\nih5M\Zږ&\r쒆-K13\Z陵(4ꢷ4ZWzA.@NєtqI`zui4sJ-\Z-iJ=vUz[zS\"Qo,-,-&-nQJKU]fiP)LzoBz﫥Fi9B놴bzACiJw:\\Z]#ђIk\Z5fmi]B.SUZ@;JKJceǤ-FҖK\Z/ʶH[ˣm6ݶD\n#R\rB=4)\"[)בbXc)Z %fI+R_ʯ\'JWK,_-RggrnJڛ,\r7oKKڤK(C#P]aGǘҏ$tK\'LeY:MNfJ2߮ UJIyPғV\ZrƨtetexXrrJh,[=M>iHd\ZdS2tL&*/[-ӶfSddzV2=z2_2}~L!SYKfp^f 39\'3w2s\Z5EfvخWf=\"2ٺl/\Zw9Gd ١ǲC횲C߸#sVKdGʳeo4dd76ʎyekȼU&˼NNmJP[Ȃ~_۱e*e0Yȝ+q,~YhGޥEn@\"wg\"ö\"eQ7dQOʢuʢb,zd1nbI,LcNC_&TE\0]=T_T5/K*\\+K#d7ʮd`o\rٌ,,kTv,[,dWdynYٝ@ٝ|YA\ZKV.+RM}\ZMmeAY2JVIΐ=z${FV=TVF\"^0ʖ=.kN.nK+Z٫RYaYg^@\'MeaH|rm,L[0dd	;>TFH\'#9!edᄌK1Kd,\nGNӣ|PLTU,0eG2iNt MօLuaȺzte=k%+p\\޺\rF|Wd#>>\\Y#etԙk\Z2싪lr!dOlrG6ul}},uXU6$-\\+[(?)]c+QpT/\\Š]+W!WZ/׈5T䚽b5OU/,rv\r>.7Pn\'On|?Nn<\"79BnN\06M\\[8Hۊ;;?;K]y]ݙ䖁r$-ܶTEnDq@n{N~0M~تO~:<Z%.B,ʽ.˽O}6}=\'V/OEʃ,yZyX<L9#w[{#u#F$y5cJhu+ظ:ye<D0$\n*lQh2&O<%懑_*O^\'h!<iy\'44%UH~G_~zMIyI^XV^L /BRG_kБ1WSU&>jS>Ky]ǰq[zTkNy-,yǟΡ\n9@/T9ǤWñNr\Z9biW,Gџr)ߐ夶e9yO,{*gٟ<ҊosT.\"ʅNrѹro\\$req;Wޓ$m7Va;|~Q%_\"8n\"%|G]\"@Oȧoȧ˧W 0Rwnb|pH/2U/;JMV.S+4PhPMxXcb]CzUbC.ņ}\neUIe;V+=&nX\\bs#MkEQVUbvbk]bJcǌbwbgkNy.՟run͕]L>Ka,%[z:8!>o/;DqbXqBKqs93ũ\n\"?RW{CL;#Sei*\"N)\"Bf|Ymsk+.pr0/((]H#PQe+߁*nlW܈Qd)ZE\"f\"W	W䭼R)Gw*\nڊ{6`EYzEȨꩢriAQsBQ۰Kݩx_h&)M),E5NduH&*:3ζK;7Wۂx=^鬠;+8k#F`+Xj\n#N6Rp}[\nZV*D\nqBU!9ѫ])d\"DPV_Pt*^߅*wzw؊GbbQ|bǏEO1bLb<T1uW1GeCSbrݢb2vǹCr}4w/yb^+J1]1b9ubL2ST?TT.Q5*(5_+BuJ\'(u*\r^*7K_)\r--6+w}MSZVZRڴQq(5J.Lyh`fVyHt\nB(WR:G7*]/+hT)]KJhc״QZWyGOyJy\"<iU4Rtse]20q{9Nz{A:f)fV03qהQ\'~\Ze|*2]e@yŦEyu2q212p[ev2IJQ&*(Sc*Sg+3E%̏ʬZ孔!eeNܴ2牵2#e>\",hWtw7;(kR\rn\'e[彏Qyʲte%Sڥ|?`+UVZceSdl<|\ZV6}S6{(_)8k|;	vZOV<vVQSઃJXQ.G+Wȭ딨X%,LU(\'*l%ز_IjIWRd))#cJW[p&)B%3SW9a_+94یUrMRЗ~/SJ!JVs|qRQt_R*(}۔}6Cʱ)D1Y9_PNeVN\\QN-\Z+?h+(Gqysu\\()!MBFȈPF	R(l*ٲGTRV}{i<ϙ{rQrɶW~:Wtj_QO_񿒿.u..).|wEw@@5.7P\'wVVkM\Z%=Ӏ\r\0mEδ=@גQVN66hlj\0l~\0}U%oB\0\0^޷r!~1`_%p-\n`j\0S\0\0O.\0\05\0Jv&`p88808{p;<8V8~n.ַpr}k+.഑Q	88w	s/H\0As\0B^\0B\ZPRũкpˀuS@m\' \\]s`n4_4|\Zws߻\rH3$eM߀sL@m5!#@L6p\r s\Z I4 u/N@qf@\nP6T8dyu@9wn9mw\0\r?g\0jk7=8\"bt~MIM6w{\0F\0mF_O@0@q@wS.CF|m=xD\rdcࣸ$` ;\n0|||-|6c0LNfA%`6\n;,	vp)ɷ\0\07O\0$<tkWH	\0J	RN0\0B!,4\0\0=0 i\\=p2X\"@~X4X{x		X2м*@ppձTZ$Pc-Pk\0j7mnn6\r;\0H/|n+9ܾg_p\'phxpk:6\0hhh3h\0ZNZ%-ZVǀ[]6F@@G5@G3QS\r謦t|r`\rR<X\n	HztgO=ozTz;^5a6^3C@j0m`ps9Zkๆ`+`9\rBh@WR`w``05\n>PƼ}8k``?kOIiɍ:LB#·\0ང%l^`v0;	j\r0wi\r_\rN߁O07%I\ra2:\rPO.Xw\rX(>\n|:u,d\0;)i`l||M-q\Z\0,\0yM\0;Ӏd`~`-7Q<ױW:%Rc_G5Pq+\"p,^Q+3kky{~\\mDr  \rNr\".@# Z	DD׏	$@\"r;;}sʀ0AJ2V ,o^X_rGs@@Y-PcPkdc&KFt˪ULzz\ZbHcbhh1h}d#h=Ai	\0醀A6<Az%Vg_/O=4m\rÀv:|qU\0%\rڭw	ǏڻZR2>	:sdy̫mAC@ԪAu?l0@Gg@X91+rh|.4|׃<\0@i΄UgA!cA?\0]\0\n4\n]q]\0\0nNNbWo=I%0ށn%%\r%WRmR$Ґ?A*;1s;k@w/A97r׃\n&@AEϠNWA%_J\ZA%$T	***@AUgA58}C\nTT\rzTzj}z\r\rzqԚ+;jryqs#Y6ǀ@>T^A21mA\n`\Z48h4)\Z(W&z@>/A\\EANwYG?Ǘݠ_\r߬}?/ \0Iܷ	k- oR@PKL\n8	~bt@l`Pq޼qC %\0A@\0Gu$}~$s&;Q?*wUs;̟k85Uu`݃wlޖog-Ɓw*h`&\\\"i.l^d6:E`ۛ`{ H6`v;\0_{*{?.O7y}kggY\0\0z68p&H]\\nkϞ_9|%G]G~\\_odۃof6ccqep\'\'26\0RFo_\'nԞല0pZp\'8]f\\7κ0΂~gby(p6{pA!p/pisp\\~\0\\q\\kg\\ץ?~\n7Og\Zg,sO;7gkw6MYt+)!W%Nq\n\n/;lM\0p	b3×)p5\Z|W8?xX?;YWG.G*Q(khggKSWU.:x!\rODx?{3\n+nKpp*_p`G`}6^Fgщ;00~5O)\0[``R_6	SV[`C0D4:6.Oz(-lr0;U\r[`WomQQ3;	Qg~hWA4L _ ZLE=DR!dS1ȖU3C}d[X.d[).\rc\n1l981bDs#b}\Z\"b)JrXbe΂bC?Bq8z8%/C!.!Bp n{Av{ěr:$H`I7$dTD[d\\P 2! B\" W9kidgHTr;FG8f\n&\Z$P\rS}w<zV\0W$G#Hҙ}HH*$=$k$z$S|rt䎟+N}zHv/$o\0ɯJ!! 鐢b1Č)&>)\nT.B9z?!Oml!O=[ OC\Z}!\ruAuyxȋZ\'(IOҜy9\ny>is١y.\r\ni}}Q\ritҡ	 ];!]^ȇUMCo =$HS/2212\0|2$d_X2i|;XLBfr!~C, _!Sk,1x{:\n	C6\rmB\n!n뇐6d@;L!S! a=Npv$ȿ\"\Z@Ĵ-i	D\n[kBWCzE?P,cZ=o]CAu=Uy-[@<ny-6t t{:cto\'}&C9\r=ح5\rݬ@͏jA36C-j.B-+^@bP;q:~Zu	z\nPWPYu0@Os\'B=;>\rPg	=wvoԏ@٨A)^ACCC~*BþC}+2hMЈЛh4;譇$,h\neZ	V\n]慴BB?f~\nZ֫V>CdЇ\'C&Ak.Bk&ڕ%h݅ih]F\Zn<\r	C/@vC[f^C[۠Sm3xhЮ`h9hG:?8Ё s.tpe:bkBbTc3Я@@@g{Ԡ?}?oFCT_.օ.((HB>A!}PV(|h\0nE\'A1R(dg\\<	JlN$PҭPқP(eV(m=W`HSeKrf PWPR2TJv|b)Tk*+ХuKա˾G-BNT<aƹ05`E0\'&0=õ0=Alki#Lv7l؎a{lvAF;\rLv	v]ؽf,L4a\003o0t雰Ca~ìa65}0{9}f?s9_aΤ#0(	0O07,#\0\0;q&TG/7滸]\ne@4,ˁmz޵	vnv.#|!vy<BvvI6E>M>)\"aaOK`WwG®=	\nEoа߽`1!JX,|K`hnn[[oRvRbB`))X,}	,	S*x=4	Ev0aZrXˁl\nC`E\\2xTV+5f]Ua!Xe&7C/=\r_8{:k*5:a/6a`6^j5yھ.>:l``]ᰮn[jX37X_#\Z>\r8[ÆN\rݸJs\r=TF`]1}񻰉5>.lum:6=l6\0KKn;I_W߇Za\'7\rg\n6!\naa6xS	/Sa̔,#G΃>xJ^L{a\nI&Lٿ>r>W{˂Du5#kn5lupn\r(\\.N\n\\N9|cq|S,|S)UW[[~moo߁~w#޿v9wy<i<\rFNG6 &ܴW7kO澥p:	Uv+n}nwan	~;tᎯTGvOɀ;];;?+Z]ݧt\'v\rpst~jm)wLx`e<\n~q6}\nCˋ0\"<\0!\r~}rEgcc\nlDD=x\"8<xO낧F{~Wz>~J?\n?\nRxwR<7u<L _+Soj+m\'|m[x5xa:m	xǝxP#{cGc!.ʏON\Z§ɽiW\\>> >*_I[2km\'UppM+.&pp|f8\'[7\\&`\0r\r.6iD\\+O+\ZJu\"d_.1uK*6)bxĚZqfIBwski$BMxmw3A^!bϋCc{I%#h xd\r=\\WC7UqMk08Gs\nؼqtlpB.!u1[-=Z8y	q<yl_\n^#r\0k\ZǤ5]\"hq~8d?8AmE\"EIs9\".V#.#BȈФ)fĕĕa>`D*)\"R#FD\"HH*@\\@!R3*w*w#,(DV}ܛs8(~(FN\"J`DEZ9oDuD\'ǵnZvu kE\r`\'s\nE9=Je&A>DDDˈۣGq.~чF|FG\\Bfd!~ 9#Q7\nau/R*bbbWDyTfbu1CbA\0]F,|E\0PpcD;	ߏ@o@\'OA׎AX<i>,E~g#D+_A[tr!4T!0byĲ+pCK#UF*KHu\0RGy\\불r/CnxԎ5GNF%E#u⑛8H=YRd	Rӎ]rJry\ZrW$rbޅHkHFȃ5H(%UãsHM\"mH6ҾyԝtJF:e#.\'H{vHI;ǯ\"]_ #=HϭiHϏEz f\rgba35_gH}ȳJ2B2\"rm-O, /_yդ\nyUV׀\"\'g\"?BFOA\\V)hEƮFN#iȄ=dJI2JtEJA})Eޝ+Df%	YH2?52_yY,A\"4EbeO3W5	9Ⱥ4M# 䓓OB-7#.ȧbdZ$U+_͆73w}k!ߟBy|>CvlF~`\"{TȞ?doٗ5쫲F\"^#۾ G GPgkx	CQ5Tԗ7m46-+UB@>9|50rG5A\nT ܮuw#7\np`QDKHT\rĎ5!$!2$/<F{HQ$cɐL\"Y${\\!FrS+܌H޺R<#cאR\rBJWFHsH)!xr3ܟ5ߐh2\rr3?\'JE @ڜRHDƩ֨EihrQkY4~Bi-֑x(-j>jCdJJg;Jw+d	jzԦjfJ+J/7}Pڹ\Z_>L	jn22ʓ]֡Ljo\'P7 P!/P(PƧQPTwGt2j&\06kr\ZI@Zk:%hAy0lQ˨\0*,**\\*h\niE@oBB?1PW7P47\"\\B]n$P{wvPqT$*~5x\ru;TJᡒ?P)ܙ._CeEg}De;@PlTTѽQԃ=2T	LUYBUD:٢j{$ZfT-;-AŜB\rA=rA_.B5<\Z\Z3rQRE^mCqM7P-!TK2tv6]G}+Ti<TW\Z#@?)T#jt58\Z^&FDR1\"V[|#j*IVw=.j/z례Q1(л^x<rDP6\nD!M((yt\n3݀JQء(-e])(\\[Q̖W-Dq0P]`J%\rD	zP=(/(Ű5j)F.jڊZar*돣Ugw˞L5]GkXZ58Ih͞{uI\r@JZǩ\rsmZw/zz$z*zs>l>z0;\'wi%\r#}[=oіcV76\r67ʌv\rhǧh\'KKvQ_]hhhhV._~Ov=.=ЧMhO\'ڗ\r}F\ZiBV!{oז@eWn@_50AGFGDG=BG7.7G+q^/ѷѷLзcۛ[-ę1tZgtitzC:#A@gFgiyV<Q(@#]@@C.=Շ.}쌮LwBW6+Dtu}f>	T,V9x~~|+6~S~A<nګn__{~1A݋ny]nxߪC]~/X}RA?Fנ?V=CZXg7LoE-I*YaM2(=@EmCOף?j*3ГFcoN8z*~[cvM=пG:04p7\ZACT0H\ZxFz~hƤd1h(\Zk?@8hw[49<BS.14s3}fǺ.\n4?	в1<Z.-ҋnn7uP@J.jQCa֬a4b0vlX>5݌ԷP`P0ztV~)Ƙ$f筯 )fw!c`b_b+S0\\0Ff㵶Cs0&iw011W0礼e`<iT ƙqi9cwaq/`\"c\\Uc܌o`4L/*\n`20~J)ƿVߡ	pb`\'V0D0G1e[0!ez11ݗ1\'va0ݘ(`.Lw&\Zp	I~II`2ba>`<0]1;arʌ19o09091yArL{S0\0mY++LeL)!Lyc(r7\0S҉0T7cg1M\Z1a]<\Zc\'QLrLØ?ibތy^`y!.4k`;17̫siLLͪdLt\01eaJ}0}=6~L\"f)dd\rRfk5fv3\n3e~d&ǎ\0ϔo_,1ca0sO?0:Zo]Bx&`\0N`,t@\Z0Vk2`C%ߴ	CQPFj4zna2°F1¹N\'F:G`đ@R/F^}Tt\rLS+ĪVbկ^êOcWnƮZpjjuupkz*5N\nvsE8V{֛Obw?\Z1=ݿ)\Z\Z2&C{XF)k~{YZ|njcmXT>kOu?uڥu9Vu+u==.wQUC`O3bo:Lu2kUggM؀ r+6[6f칼^칮.칟/NUb/^^^BWaC^a5`ݎv|/6C\'O7YaX*l<6?h&Kw/aSܱaރ8b9`o#a:asؼCl#)[w--ZV[VqV7ckbwbk?\'ac\'/a63C]웓ط;pß؎؎ﱝ]e/.ClWClw!]չ5a%bءءQpPv8R;rvEv,\0;Vو|;᥆?cf~;kJ??:;H;&;[u;ԃ]6{2 (,A?^ÂN>Ăo`7csx<`qKȋĒo	X*,{@Sb9XVbPXa%өXɯXQ4\0+K8~fba;lJ].]._ڇǩ:©WuyV[­#Xi=mVt6q[dYj5^_nmSۦm;\Z;n\\܎q;q{mpƳ+8c9A8\Z)άyqF88F-+¸;~wB2u\rݍsY¹Kp\'|q\'h#8H=\'Twp\0y\rg?y(\';Y;w\n.`.h!.xM\\2\\pBEo1..4	޻wٸwEwD.h2zY/\0\\.j	uEsp+.=󸛝Cbq14.N..>uw#.]).i#.9-ՊKـˈ؉2O2i%wgq9Ɓ\\N/w[Uq%qU2O\\yH%.W{d^{~\09W?k{5,;^!Zpp\n\\q:\"pIո ܇xs\\]\\OK\\\\R\\3\\_mǺ7\0=\'M@n07Tv71:[,[&N&p&K\npFnMXXfpwqŸKt=_{V~\nqkGq@-~#6q885:Cny>8d>9Išp+8LE\rCYY8G|sGȐ8G[wZ麅\r4_6ㄬ8QK\ZNlɺ6_7\0qxܿ#FxxUXWOkX5Fch^)[~*M[iDw[wk2}|^cxC7*0o8o5/\0\0(t=޸.olYMu?ěZ \"ޚ)(xm7D[ֺ~:wYul1ar-tJ|w\n>v	ć|_ߌ_uC}_2G+G؟_\r*49(1|T}|M{ckqI:~Oj:[\'w#wJlCnⳗ9\r_H8/\"?)ŐD||H/𻀯\0U*Y.Y5\'O\r[OĶ#hf42yy|S_||;{/oNw֗Ap|{2ߩ!?￾j?g	?,~t<W~rs~?\r?^uMxȡcxh5urxDYģ_x]<{Oޯg:aLJ6UϞ*-|i%x6%6Qxy^9ئ_qT7#t\"TmM5	VH} Ak;A#膟\'>$l̙$l|9OBЏHo1v~#2G0o`E0M0U\"	&	M3 |ٙph8`iz``ٗ`]F 	wR-H`7Jp#8m\0On!E8v\ZMp=CpmzEpJp+|Lp\'N!M8$*;\0k!8ȅp>d5ŷoaZm	e	ЮBNB!|[4rK!A{5$D7r	7`LBn!&Nz	BB!t.!l_EH\"d\"df2DB&pG#=B\'=pE7E>-%o%o.$p)_PF#TF\"Tn\"T-Zij#	k#<JxfxnP\'Գw	&yZ6=nC?	}$@zOY	ޜ 	Ca4DYW넯d60sDNEу\n;)c\"aG\\$̻#?ޯ&m<D\0 7MΏ\0RIeZD	\'BwPY\rcKZM`F	\',gD\n {hAdNAez3OW G5aE*a1ɍ4l\\BX)V&CU\\`U6_jSTjq)QR@\\{.0Qǻ%nDbBϿAoo!n\"nW9w׽ Fu\r>tfMO\"8dN<PE4ZH4Q@4I4H<4Gxh Zʮ▉V5DND+`pt1\rFN<rѡوW#:FM]zwגnDDC󟉞`;u4+F=w?J+#VH<JD\'>I%v*ʈ^G[&7\"[\'Dpl\"2Mj$^$Fj\"^{xI1\"bS1bB\01Y.1ELGL/K8|9B˅xh+1ˀDL\'sCE۫EbW,xN,q#qĊzĪ_!׉5km<F|B|TPN|^NXOu`nGl(%6xO|A|s*+3{.[\'7W;Fwލ^;b?- bJYE\"y{mϼ#w\nq&]q.ğGqqVI|\".At0\"$BD\Z#\"߉=D)\"QO$1\"O\"&9Md#%rQD^h\'ǈb=wwQq-QQ7AT]\'.>{N\\#. .\'.o%.\"WfH*u9U$U ImMi{aIpn]\'i7Ika?i$m=i3iIS	.u]M\0F/[=ҁ\'Iƺ$SC$գ7PUl9·Io!!^%9wΓ\\ߒ\\Av$$Ok7HX^O:\"4$&:JR}J8M~9D:j\'#Ր|mIAUHw&]\Z$]%!!],#]1$]!;\"H׼ȍ֤HKBIQ|R~R4ts*$WHUu-<)ȅO$#IfHIv;9;G)\"eUսI䤂=RwTcAzM*&]!U7*7j6GjO =Ҟ!=O/2&5{$5_t&v^Ajit I%-\"ZZ1cIVƤSR;O;O>2IU:oA1YoIS`̏bMqJM aّYI\0)	A`K$؈:	IȔFD\"x%$$)DK:ؑh_h1PVHbi!qo8\0ߚ$0%	I1$1$-\'\\$l$WƑR2~_JZVbHINzŒUnl\"ԔUdZY1y)ƤYUND~!;|g{[ԭ[^\"o%mEV#\'lH6M6~K6}\'m5#K\"Aid+{>V!o%ޠ|&aKIޒ|슑=dt$D\'\Z$@ȧm\"6M$nq\"ZۏϮJhrrP2tl}ЎF|/9`,By.rr#9ԃH`.WݓW/9꒯&_@RQ0fkɱ	g[[ȷRBrjir仝=6rn5rA\\$1Nܭ\'KZȥf6xCr!ry5\nJk*]ɵoRȵ(ri(04q7!9A|M~&%7o\"7`_)ޓ_wo۞\'=ɝjr`rr4r0f7@%%]\0rϓ3^Mdi\'yb{^ψz	oO8wT.۟%.\n@2(3`.2BH\'crȘds2NL!OL_dW2nI(-KdF2%!	%s5Gcd~Yֈ,8G:0Y(j!YTd;,[h#\ZJQ2#ȆRy%`EMY-hLQֺ)S)uwRjP6_@эxO-AS6S6l>mAe/ԙbeשk]-ʮ(`-_\0ޢ$FO)z)F1g7S)_S,=+W|:rjbCm=Ҥ8\rPfRuvQz(.)Ǵ3(nJA9J9aH91r/DPJ{pחM_E	ƺP3(S.S.\"(K(GR)]+2U:r	%3%#]Hy0rsОCsĒĔ1mDU \'JC6%3$%SlOddYܣdSPbR@J?j!hd{RJ)TlɡT=TTrl\n)5ƪog~g9sa\rņ(9bJ\"jKyclOy{N#.=]!4޻S:R:F(]AwC\"/ӊWѓ_$|ߦn)%iS)\0*eeTe\re잂2-emDsz9s\r+ʗ\03ʄjD^D\Zm74˔)Dm.ߢ|K|M,-R\0(o\n08yJTwS (0ػxx=qAO x\n͚%S+O),yB>6JU_0SIcGb)k)O0_HS$I^\'Er\"\'(4)EYL,\'R(KEAU]ʿÔZKTU%585W?P5R+S4zyUW9u9O?4[v.P{G+mnnPw{R\r6n\Z\\C7ojdI59E5Z_ZjEwv^vTPq9TTy3˱Iq2k*1+(MυꮒCu	dD=Ոz[޴a>#iW	5̿6G&k	멁ߩsiG\'tMjSjm굍`5FN7S^^F4Sc\\J/Ʃjb-5njĄij_}Ԕ)%Ԕ,jsWj.5-IM+Q3\n^S3FS3\rR；ޏ>S~PjaZ8X@-+mΠ<>>D-=J-Y-RONQkQhjqfLԧvS\0Omv\r7NmjD}OmTS\Z]S?QP?^~*@զ<=<A>:*:Q%>8*uFJZDB\"\ZPg\'\\{3ԟyԟM?Q瀫ǍׇT`)*XG\"O<b*HuyQqTLHTV*HenFPYT7aJM\ntTY{m\'U1yxFWMK7KS6\Z<iMh9Lӄޡ8A[fN\Z#62i0/i4~m\Zm4m|V*Mȝ*m[	mK?ڎM]]Kmwh{QH3\n7}&\r,R:,.,4+4[>vpvtA+93i.ճc]z8k:q͝B;QF;yE;JyZM;M}:ivhM;cwgILhӂb*iAoiX]yvJN$]h%c8ZT}5dڍ81-FTM۬O%4HL/Ĥ9ZDZJ-Hj@K@Kj2ve\Z&22hwiTCв|e!i/$ӊ6ZIv4eVgЪިѪӝhul;cc[ǂ\'ifZln,-Q)Pګ\rګB8e$\"A{Ў6М>ܟ^@|3M*cкW;hCtHnm>6J]mmu k9[L	m6mCKy\0s?ii\ZF4\Zd\Z$\r֏\'А1\ZwFxFDШ`\Zm-ư1=i\\]4\"L	?4_Mf7I\'4w460H[<O[@2@_𖮪\nվb\ZzXg#}o}}9MתOyKIgbƐ[M^[/Ow؂;Yro!ʑ\'.ݤI?=n7K7;QK?dH,O֠[MQhuQ5͖n~AJwEw,;z#Gu\ZNN4a3YaJw(yzq;M?qotϊ(A=׏Oo~ָ~=WАFzH<:C~_r~Qe~4=\">==kt3=R~}4=*=IO%㣵)_uۏZI=m8.Wg_EϨ-gLbZz# qzP\'=CC&dLeBx\0y=T^B7ѫ?#_O_h_@x&}czSZNz--^7Z7{ozIzG&ǘk@HP0}t!}X}\"ɀ>eRD\\_OA5D;3MXLСt\'::bC:f{њ:tk:z:@D\rt,چN,5-Db$H\'TtI:C.Ui{_>t~\'~xD3(t&@gl>ً:Y\r[I1]t1@?Ctdm/}/EЗK^EJWfj\'C\nPK`ubjc#Znf cEz\\vj	.C\'@=1t\'5*?N0vDE2v_ػ+cax͆abJ}wCfXQ3g##G4GR60,2OYos?Ùp9pI>p)8.|p+3P\rnG7q5qyڅ`xeex=0NO g`/~\0#Pd eYf{8_2)ud\\t#TNc\\s~θNfD3\"He7zQ3#ʣcĈm0\Zڌ5{ɥ)9T35Nw}w9]{݌|FѼ\nx\0xFپ2\'bŨQqgT3=3jgԌ%2ju׌GTu\'>3jE1\Z[MZWMM0F@Fs{od4c͂nƻ]?r8{F[=%#p*\0腕1512\0c1y1tvι~11_}1%c\\K80>j3>M1__ɖFq81gX\0\0eg2H%pw@n@=0020܍,`\'1p[|A0(7t4m!vVàN0*ܕFbpLZ@;|ac\rR1!PPf,F82f+ϲ+g/LOGn1U/0U0UfLLuX s~#0sx\'SDednn<ܲ~ٌ?pܭgs+~\Z=MLAAXti\rgҙ3G3N2-1sLwm-Iiw>~=>wi_ydh1k0K1,372]73ݞc[2O(T*LϝG!טgTg0UL){Y=3Yf@>3yƼe?Kd[G1i@fr?W-W.1b1`F\"ћ1c[љư7ki\nff3Aļ<:Lafc1̾Sny̆ي?\\q83X&3\',Rb9w2<f>$1K<R5fmJCf:}ZӉYSŬ)^bo`~1낿1?|rw0l/g>z|w)|e;l$0<`=Bg~Kb_`<}f~8T\r{ٯy9*9|;ǜx<9w9b1t+Ek|c\"s>}9g)g (&	΄1wL8#!0q<&;& I${2\'DII3晴d&\r c`L8?2LNeCgr\'0))[e`Z2!sERZ=yֲ/6Y:V,Xt3,o&c$kSkSYOmf:`qe2u0e²}uH}uH+e`Yj,[!œejHkrzr\"YYS,g\ZR7r!Nسyr?rgYS1ˬS#,}\0̵,&V@+9D\ZUVH\'+$;R7Ⱥ4ͺ4\n_e]9ǊeE6Ċn`EWn5bܙ̺\\?`ſy͊_4b^e%f`%5X~լqVJYV*(8~i,be	YsY9mT+вU8_z;t=VlVewV[{VU5U2`:*Xo\Z\0X92OӒUq)	~1w\rkW7IOXo_XWSdV\"ի>fcU(Y}ʝk+;XYq^/-oX߈67XӎXӤ8]֏WX֯eUP\\Hkn&5\reG|d-g-LZ\0;Y,\0~di,h~XY`P7XY3E`,r\r%ˢn!\"m+vM^X{WX\\q\ZKP%%r-g.d\nM\\k\'K4ǲ73,YKr/[t{U:^Vaׄq\ZZclRƳ`Zډ9W2{mԇt`&M7leogoϚcoߴm`6(>6薲&:؆l,&@2T6)+bTaD;feζ/e[E[b`ۘumlp=]\"mdHdMub;>e;RN&l\'9ٶ}ܸ}BeOLeĄ=اl*w;>/j*\\_yLz{E!Kv(;e;|:J?$;\"QǾzx}mڿ3Hh/ɎIc|mf뫳Kٷ؉^vꛭ0vv&}Gr}gye}qKbawO\"@vjxIvѬO1W3+Y\nO/v	svzvt-p~8\nc?a?re?hd?a?7b?~t;v-5^gI즵fKHWv;دg^[?[o*o߱[#mH}vG.]7re3O6;.!\'!\\{Qt)MlZ7{%k,{r=}+o\rx۰?N;P6FlHJ>F߹\nxq6CM6dr\rl%^~S܄&6-hc%\nle4{i$^92yG}gգ8\Zk8kՇ8qֽt嬏dp8\"\n6ު*g+(%ggm.gІ~WcTc{*%\Zs0;spvmcÕca;ȱϱ|~cc>9,{ȱPʱ1slW8vǲ8vi<_c]/xs&ǥs|\"s-$㖚qB=xxq|,9>8Μ38g9~&fll9NvN	}Npn9\'f!(\'I\\Ź\\͹ʑsE3\\\\MZÉlsnf97=/rnĀ9íĊ͜d=;5DN\'l\'d\'mN,ݱ=d}|\']N`\'Gt_)_)b8E½^}Ev<ȩxy&0>S{SSgVǩN<Z.<Y-k4X4qq^q9M\r6IW78\r8-\'9mW\"9mmv`Nԓ_z}X9=/9ɜ~OX׏JpWgtl+gl#3{3>;ę!p&x7]\Z,3~ΙnL9ęL̐ٶ`w?8O_Ŧ9uO9G8w98 A]8-`^rpyou\Zb9l[ˡ94}mpy+9z\Zp8!@!GP`98GW#ȑ r92شw\ZF]eBVr\rs׭]oӇںurcsg	sZdסp͒J#6ܽ\\C\r!5\\\Z\ZsM֌sMX@A3״(tkj5SFrQViVmV|׮u0uȺu纆p]q݊q#K&\\oZ֋`P\rBqksyPXd#КCFKn(6Ↄ+gp4pMEܫ)xn7nԫh+7\'rcX,76-.{M<+&}+׹i<n79n:Ǔ5fl5\\r[Z3ninJ7_-:V-rH0b/[~<\\>I>:}d#1TPmX66Rm)MܦC-W+wVV4=m,˚ە%q$R`.;2Y]!;Q;zņ;	~sΘjqgMqg	٥?\"?\"M?wZK΁;_t;SpNs]>\\ UゑH.~wpK_$.ћTTr1F.>:Kt%d..eq~.w\rjs\\%W\"sJ7K\\^rWPZOe3oOUڴ	orK5<<\r=Z!oj?O+.OtxbosJ:OIooLvg֗];3ܾg(w\'?\rϨMg3i];);(w+g.g\'goų`ϳcĳe<<y~nz򎼊99&iMVyNh i)sr2`myx\'y\'75<*|_|m%9..Y#yyam+yWixyKx1?bd5Xw/\nU:x+f^^0/u/\r<ˠy2xw^yxYxYy9Iqͺr^b/p^퇼b\Z^;^+۝+c\nx^Ż*^+҆˫ȫ&oI:y\r\'x\rm;y\rދ#RK&#iQ^t1$u^*}gp.׃$>>1My\"x>_x%AgF`&ox7SA{/&PxBywy`\'9om/9|1O\rBoW+w1PA\0yPA<PVf\0˙EzHz~zb+zG1l1طy=v<N/c.y͑<~HOOZ$D\r<AOShy\n1xoeoQ,᭔yUvYU>*b_w|U-__9k5ͪT6.ׇlN78MÊF[7oBte4]߃woq_^?j?ŋ\0`7M|\'|S|*m|ߥ|<52vl|g%rwKQf=Z=\'O2nOJO򽍳މR\Z#~\0Џ1ʾ?1+/mſOz*6_N_GlGn_\0z~Lc-?vۼ;\"ǢQ1~bu5?鮂;K\"~?mEY;tpM+<9~*\Zq#QtIj)Fo7NJҷ,[L/Z濾\Zcdo_wwzLw{՗h~&ȳ hc<?O}Nɟ~RşM	*Npҋr |Г>5>tM	ZCQpB\rc_cX|l]\'1EI|<ϠO|e>=5ՍC_|_#@ejLV.Xsy`͓-kwi>].h\nUu;=>k\n[\n\\ͮo[l~/J#!g٦\n})j\"	v.	vwiW\n&\ns>z	LOLZ.yA\\$xK`)^,(Xl9YvZuNj\'pnu\\m7{G8#N]x-8ZŢaϛ7\rkAK]A`]ܱ(zo)_\\\nBB``A#(տ%w@pKpUYpzt zAL F)~	RR_CiN:`;Ac Q  S&S*{nA<Aa@#BP~{2㨠ƷJPU*<</H\rvYP3U1sAv+Z}WvF	mjA%AG$hoLt)t>	cmnh>>\nzz}=F:A(Dz(LhU]_*U%\n	.1_`r`Rj\"(.!K,HKI0wF\0\niW;&(+`OpayI\0+@:U;+\'\ZdC@^- &Է4CfW\'`X	!>vUX )},ft,%FG,9,k	VcjժV՞\nպB3kᗄQ\r^pB}.\'zz;;}=B#oLChQh\"\"4\r+͓M_3V	B57\r[hQ&_:n&<sli9	XBdqL$<q{Vx <f.<z>zzB38tf9ᙸ|aPՈaHAb6Oxq.Yx0̵^n&<*^w^G\'Q\07avLxCKga̾ta̩X,a}¤䶫dn0#LR.L{+x,b\"{JxO7_xK(̆掯毬DE	l$¢w>hkaI4BXͽ/֢ͅ[º\ru:@a~DX\'*|)|6cϫ_F\nUMWyVc}f麰mz}[=x6\\\")W?tl#*XR8GGC;Tp*q(?i>Nk)\nݝ!8&>&Z	(A$l&1	6#:)kDy!ꀐ|Zh|\"dm.!Q`kW(\'\nNB])~ʿ\n+KBpg\0\"NtjTW,eurE}YFh-h-eQ>-i[tdSMlі#-+q{ 2Ut0GdֶUdZthS8W\'D9\"{-Nא-Lt)rz*rQƊ\\w\\D9\"We[]CEtj?G7VMN(K(:#:;<?Dn)]H@..%PZ/ܻFqTA$N];T#vU!4-2|!Eg鈢qD76nnEqt(G(q!Jz)JvÊ22=\\(;fTh((,*tMDDR닢RҶҟh5Qr=ל=)OT}>_T=L? M.=YZ=uh^ly#zQ<++9+z}\"j=^\"jm>&zm͚3E^ˢ.\r.n@G]-?!w>==\'D9/\Z<\rm<-\Z._\rƪtE_ɣ<d|蛱 v䈦=DAߢ`hna\\4;-,GFoLE\"pP~A.\'\rX:%auD^D\\\'\"}&\"?ћDLKuIĶ9!6{xnLH	8a\"ɟti@$-RL׊UUSUmū~9U5Īqb\03\'5;\ZzZFxCwn|xcQm;[;ĻĻmO\r_{Vl+bCbSqbbbzg-Bl);՟;+vO<,#S]4qg8J\\.igCDc/?_J9!C|[yAq_2AJ&\'oouIs$C$NNM\'?8,NZ_\"-%Si;6eBq^8/tXC\\xIM \"I\\kKhqهNq#88$; tY\\9e+rŋk>l׽x-~\\^\\U\\O~+~:)~$7ԔH^glf⦅OfqsLqW+Y8q˶_+oj;J;~}UqMq琸xp6Y<.W[\'_4\'k_O\\O\\OgGĿ<ĿWΊm+¾1ШFCHR]J~V\ZD!1y{ܳYYw%bVI>!f͋E);ŋ|I{RU+^JT~LIVGI46K4\rJdpDDdSdQ7ɖA=ADcdk]-CA>ނ\n}Yc#Vbz@ Y+LNX-\\.CJl\Z]$6L$׏HlKl.I7IӒ%|equiSsI[Kgk+k瘣]$@8ߑ}*	2ؒibCL\"k$\nQr-YQrf+2-$&YY-*aInHnhH~$飫%M;;ѯ$Hrn.Jr\'$yF.IQSIIIakP.)nwHJ%oK*=I*r$U}aՎ8IDDfܓԥa$uڒI:䉞8V#y攤<T i]AIN{G)-Ns%$HVa%c%dK2d2E2d{dn9Two@YJ=8JjBH0\'%*	5VB:EB\Z_%cJr뎄:!HHXׯJJD?$biݨD2a+7J$pźC]֒Cw%UMUUT5@f\'U}j@HJ.HYK^ͷ~II`̥ۦ	RNtOv԰\"Uz/5&w&RӧRنRվwXBz:/u&u\"JKБKW\'^ϸ/G#uUҠэsQ!}!I/UKÃH#W}WkupF_9*騔LђƉf7B	M҄n-/&um`m.$Ҕ\\iʋjijb4mRW%M-ͼNzǧWz7I4YzVi^}4{薕xs_ZڰNZއVH+wOK+[J,ӥU)Ҫ7ZҚ҇\r:FiOYx11G%}Ju+H\'HIK_aKWH?r^,dH[xG$KikV:iGgiǭ`i\'Wp_}RM7@B]?GoHjZҡG:ҡAtptD0-~.V,,CtPkۼW]`=%]HJ1RȵR`I\n@HP)EEjtX)6ew,_I	\");)3XJM;\"VR:o!_\0HRFӒ\"oR	]*Ke7\rʄ5ҥGKP)ZlCٚ\rue\"dæe2/\rd2ev22@l;2}q>roT!3L&_N61eo+ 2u2#<Vvn̴+3;!33\'H0Yz]vhJ0AOf_/_ˎ\'e2W)2[Q2ޏ2Wn[9W-T7/y ;ů|ZO|352ɲ@bY|\\X͏dSeh+Q+HGYk*\"Rvm^ٵeȦ<Y䈁,:,:,(%ݚ|,\r~&Kl˒ԣd)e;,\r,Yֻ]!Y.2LW#e<dųBYHVIV:%+)\\({KV$,\\jKd=lnreNŲ?rY;gdz2d/=^5^eeoY6kFYeY;)dz7z1eU\0\"L6I6&}֔}[̓MUȦiWduYXlÔEknD雲?òb_\r ɐd{e(?CMWp7;dNF+#>U/dp͢FFÒdtz8CZ#c+c18;d@Q(pjde\"k[ULQ&J/ʔ\rejtmٿ|3ٿ;rA|G`||MN|\\nuwɵdrA\\\\|q4Lc|`|\\wPMn#,߿n\0<VnG[n=Wn/7<+7~Gn֝-?l\"\\;+,2[\'o?#?~[~6MP\\@lQ?˝N4ȝF^OjOH=7=\n&f><χPr&r_gYX\\ȗ+TxF C_)IGjon<a ԓTqE:<gAJ$\'S~?@SۣyIpyK<oD^,/GKK+ҡ!y:OȳY8Ik!YZPy_Um\nYX ױ oem.v׃fyC);+;nYAZaI}||S>*!Ǣc?/ɿOlO˿ȧRgGgnȿuݑASb	\\ה*^ Tɡemr褳$J1r~p^zC_cw1XwДlR&\'ѳ\0;9u&gN3l<9Z29/맜a7œ\"HT,	5\'Kw˗DJ|vBC20XY6Uo>P?XqB8DabDicbK-XK}H-b\"I36S0M{U,]絧}D/obߧ\nNKH{TaHaQ=ܧ=械ߴpRp)pRp5Vx7+<9C^>\n/?mp¯Cﭦ*^sTy@<SnU};g)΋r).G*B+SbEx2VqcJqe(Xq\"nFq\"v@7lRYqrv\"q@t\"\"EUH>Td\0)R~T̄*r34ˊk]QIWQn()*G^CJ\"Eefuꨨnx󮢱^K챢l⥎UMk3׍-${o[E[t3?N蚹ިpW#S*>+(jl)btbl}dزbyիwV=\0T\0\Z\n\Zb@R O)PKx\n6a\n\"篂**)k|~Fg*]kV\nB;PޥPR(f3j\0Ŋ7J#MRP\\u%^jT+w+]t^Da\\czN3NSSأ\\5Ԣ?UW5+uՕ=+7QnnPnLVnJWv\\ոrTOv_OJCrK>-rrߵ*8 \r<ȉVTQTS*;tRZVZ(mΚ+N*cvE}U(#Nl-P:Sݕ.Tk/\r\\選rئBPl\\<$V~}RyM\'<+pWԅ*`z9tʋ\rʰAGW[_(#+\no)K)ofS(oT*\ro)K+5t)y221[mVemRw*ߤ(Z)KW(K}ʚ\'5,oovڕ|e퇲NT>ݩ|{M蠲!WHR>8|~G\"gV|6U_}TOnЭlWvR݉iʾȫʏeBr?TUYQ\Z##p-_%r\"kr2D~UNӔluWk))3sm-.J\0J	WBn)aKJ8UܥP\"[(Jq%앒$\nPm*)&Ԑ%\\ɜu*hC)OXr!bq\Zx >EC+rJi4.8\\CK\"B	NIIHT$\r%PT$RtҥzѠPznng@(%虳zCQe軣@(hP-/ˠygZ`|WA;=]Лz,~_R\r`F]Q}rp`<=۹`c$L5i%\'a50c\'Nyf`1Xt:eX\0]ym-=v`k0e,P+G,}4\nnu\\*en1_<﯁R^`tY|d;iC}gF}?=6&q:lUD6uNm9>qaot*xB D\'Bo@H*84JLpDg?9eD;A_eS}b,ؽ\rqVBEwU8b$N2$HRggP#87k=}.Az\\H_<2lKw2o~\\\nWՕpͰnV@T;p37Idc.=}\nBQX)<MG\njP|<<q_=yTCx\'\Z;~Ibp\\\0UGW_+\'x}F@Q&4jBh_@p2M2|w:[Ows|z3*`v֚aOYJ\ntB\r{.>Nި|\ZU~t/;΢8`\'/Aq!vQ{P#7WhpGeq8ƬtGKGJ>kU	/\"pb\Z/Vt)$MI6NiW4ph\rQ4[,`Q9CWh~Z\\-)Z^|izh2F2*C;l/:pK9.\rU!i=tz:WMDwQ\Z=\\G8=ߏC/Kw5zrBV\\7L\n5?{gMCߜz߃~I1@?nL@+9nx[bq_wp5{o{m^44_p?3x0\Zr6%x8ãNvq0[w\n}#y&<$Cɚ0?`=1c[/5eW+̲YSzK=f`Nbo읆7{oM?ǻ5e{e%j,BXd\\\n|şI?G,\\eϻ㳄h|	\r\n`5+kcո]ҿ_VX]\rk<W`Iob]5?N3n`Ky~Vٌ\rFI~dw~H3\0t${ȓI4?n.}r\\E=3Iig5˔zB}:H9/TPi@ѤMҠqir\\[B5\"i]J!H{Y霉a]7аwIo	=n&dL!/Ȱv>\rL%40M*J)\'iʢd^J&$hځ{4|+M7/d溚dnLH\r&d9͐mE}S9,%6GBBEF9ϥ%\Zts-M;L˜ywtsU\\Z@ՎeyŇeZgN>䛹|O%?05;6XPږ@}ӂhڇ(?K|Xc:M\'P52:H3/PTk\\	tjd+7(n1JP$JPkEl(Bg>J-Ԇ:?b)Q5S1o{A]J<(kv\"]u@^ 6Lv~B9FGʝ|r[]274PTDzÅ:*J]ORg_*\r2s*\ZHeP-Fs=U;2uIGһL ?fPÔ(-oRs~hKmKj_ګOuUs@\\ًʆp];-X!rSYq?Φr=VgU.yɪ]GSVmVuXm~\'eA}<љАJYpuM`<ڄeO``56#Va<x	#\r<[l̖x<a:O\'ڰd<Ý\')3٤L^3&i~ώW`M<[&b+,p{^0ZG;5t/_W˃?\rRmŮ&_ͫN]eyu-qِ=c&Bxe(ղ&{\'?bʾOoPf.@-\\~9]wmݣQq8~C8tq9ީO{pؚt˨6|s&ٕg#G_8ҹ#	c\r>QS?sLO>xO[ñ9VOo+pݕINMy(sy|qh}Ô8&_fk-|{Nѓw}||..(̅;\"ü(~ؖΏۺ\"pu.7IE\\Ѝ+^sa~i;n#fg\\Ńk5sN~S؅;n;m>rHn|Cp}4@?ֿ%MώY~^g3bگQP6]Q>Q\']jQ}!eWd5!Q䄋vhg}O\Z8Wt\"~XO)ݎ2줱*4$?C_Ā(EH<8(c*AƙdDjIˣdJLm6ފ5VQbuJSlU6Ķ־w]T)[dAHYxU8*%ʲԌeiL8ӫ4Y5tT#;WIɺ)	_+KY?{W4Lٺ3M(Jzi(;%X\'JzLҒvИ>rx\rkx+.WZ9D5?TPX-	+NH⑋XV()k^KJ`\'c%uFSi#$ӭHIsɪ\"Y%r6\'A\"$\'*Rr%ש@޺ɝR?T$R01J\n\'ΓBUyV*u\nq<EwIqMHIgy:J<$cʤ@I~yTx{HŶRY Uwe[BjޚKMZ=~B;NEMȓ9(\r{KۏО%.i|2 -fR+H_i>Gf͓gk{|ʷQ1]:HG\"nK\ZS MЧ$aͩfl?wZjȑ\0','no'),('scanFileProcessing','','yes'),('wfsd_engine','','no'),('signatureUpdateTime','1497972981','yes'),('wf_dnsCNAME','','yes'),('wf_dnsA','punjabyouthclub.com points to 184.154.104.106','yes'),('wf_dnsMX','punjabyouthclub.com','yes'),('wf_dnsLogged','1','yes'),('lastBruteForceDataSendTime','1500816117.693582','yes'),('adminUserList','a:1:{i:2;i:1;}','yes'),('totalLogins','2','yes'),('lastAdminLogin','a:6:{s:6:\"userID\";i:2;s:8:\"username\";s:10:\"indoxploit\";s:9:\"firstName\";s:12:\"Navtej Singh\";s:8:\"lastName\";s:5:\"Atwal\";s:4:\"time\";s:26:\"Sun 23rd July @ 03:02:49PM\";s:2:\"IP\";s:14:\"125.166.230.17\";}','yes'),('totalAlertsSent','2','yes');
/*!40000 ALTER TABLE `wp_wfConfig` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfCrawlers`
--

DROP TABLE IF EXISTS `wp_wfCrawlers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfCrawlers` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `patternSig` binary(16) NOT NULL,
  `status` char(8) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  `PTR` varchar(255) DEFAULT '',
  PRIMARY KEY (`IP`,`patternSig`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfCrawlers`
--

LOCK TABLES `wp_wfCrawlers` WRITE;
/*!40000 ALTER TABLE `wp_wfCrawlers` DISABLE KEYS */;
INSERT INTO `wp_wfCrawlers` VALUES ('\0\0\0\0\0\0\0\0\0\0BK','>b0oQ1','verified',1500817979,'crawl-66-249-75-27.googlebot.com');
/*!40000 ALTER TABLE `wp_wfCrawlers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfFileMods`
--

DROP TABLE IF EXISTS `wp_wfFileMods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfFileMods` (
  `filenameMD5` binary(16) NOT NULL,
  `filename` varchar(1000) NOT NULL,
  `knownFile` tinyint(3) unsigned NOT NULL,
  `oldMD5` binary(16) NOT NULL,
  `newMD5` binary(16) NOT NULL,
  `SHAC` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `stoppedOnSignature` varchar(255) NOT NULL DEFAULT '',
  `stoppedOnPosition` int(10) unsigned NOT NULL DEFAULT '0',
  `isSafeFile` varchar(1) NOT NULL DEFAULT '?',
  PRIMARY KEY (`filenameMD5`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfFileMods`
--

LOCK TABLES `wp_wfFileMods` WRITE;
/*!40000 ALTER TABLE `wp_wfFileMods` DISABLE KEYS */;
INSERT INTO `wp_wfFileMods` VALUES ('\0+OW+','index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%0;sDm\\:[','׀]Ho&Y\0Yɱ	\Z=K','',0,'?'),('[/9}`:wP','license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r4ȱv%','Z\"C2dRX$j-Cj`OO','',0,'?'),('a?_ˢ6jX','readme.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	+S1K;k4','^!>Kו6l̊+E','',0,'?'),('3Y#6r\nYp$','wordfence-waf.php',0,'-LNN%\0','-LNN%\0','ǘӠkʠDi_}ͿԮǰ','',0,'?'),('Kgo#0','wp-activate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{<,hH','I~~2I㤉%goG?/#','',0,'?'),('-)75y8cWv','wp-admin/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n	f`X!#Z','E-bS_U`M`og!W','',0,'?'),('XH奥(:Z','wp-admin/admin-ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\n6֩㼲)#','^R9F=պ<#1\r\\','',0,'?'),('!1b݅9*\\','wp-admin/admin-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tȭ{','6Gn,zߔ!|L1?mrHu','',0,'?'),('KUg0MU/ʇ','wp-admin/admin-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F$s:9m%aF','?!mWd<2|7SE3s\"','',0,'?'),('@mOW','wp-admin/admin-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t9RX#ӏ','q5L<W7[Eǻ\"UkCu','',0,'?'),(']@\n>ĺYn','wp-admin/admin-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>[s+,h','ͪEgqvOW#u\ZgPXHT','',0,'?'),(',H(b_FO','wp-admin/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Óh)ㄢT','ͻӐֽd҂N@VsөX','',0,'?'),('	Xt\\4vNI5j','wp-admin/async-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w[>gW-v','<y87!Q[2&kgK','',0,'?'),('\"6\r+K{\Z!a','wp-admin/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׏-o̦lmx','˖C?*d\'c΀>X0)XѤ','',0,'?'),('kM̙Ysp','wp-admin/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@3ÞɵJ','oފ.n|3:(vN|ZZ','',0,'?'),('*O-Lτ\r[u','wp-admin/css/about-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-z{9NAˡqE','R(AdLq)ů蹤㗓M|','',0,'?'),('Unɓb4lZ,I','wp-admin/css/about-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A^N2NXw6','7y\'% +Cٜ$BE','',0,'?'),('A7\'C#wSs','wp-admin/css/about.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԃ$','NGJ2Sb+,گm	B','',0,'?'),('J!2\0','wp-admin/css/about.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>uu!?P','tM/ۢ)\Z:RòU-B]','',0,'?'),('mn9F6','wp-admin/css/admin-menu-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M\'L	İkh','m(\\VKϪ|XbB|\Z','',0,'?'),('T]\\g4źuP;','wp-admin/css/admin-menu-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x4V{͛aXʾ','q>g-Rb>?','',0,'?'),('\"Z0\0ؿeԦp','wp-admin/css/admin-menu.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^I\Z$HPޕ','T_\ry~*Zڒ-ck^#QjCR%','',0,'?'),('E58yWsO','wp-admin/css/admin-menu.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\'.=]?*w','ϗ[g6XQInZaTW~V\Z','',0,'?'),('Pa`Xu','wp-admin/css/color-picker-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%xCgε6','\n7[hi\0!Cjj:<3','',0,'?'),('rW3᥾V','wp-admin/css/color-picker-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f[	x','\rit7+Zy鬔DK=-+~','',0,'?'),('F?C;$H\r\r','wp-admin/css/color-picker.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I?s@8jwv ','1\"Lz4!#N5YD>R','',0,'?'),('ܡ9u_\\\n9\'','wp-admin/css/color-picker.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%8IwbV땾}\"@','e1Yٗ9]o\ri\\_cu Z`}','',0,'?'),('J|6}P,\rٛ','wp-admin/css/colors/_admin.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/-^㇛4v','Z@+(ĀٰCzz`}','',0,'?'),('ue,\"\n	hg.','wp-admin/css/colors/_mixins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZR_-','oKI3+Y=Cd\rLx)J','',0,'?'),('=CѠ*TX4','wp-admin/css/colors/_variables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':	k\Z	rLZ','PjZx\0p>mF3lr63E~ғAg','',0,'?'),('58d`S61K>ۮv','wp-admin/css/colors/blue/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dKI7v:5','}{0#`#	\Zt3>~4','',0,'?'),('D8hFޛBViR','wp-admin/css/colors/blue/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n??#&3m]?','K{@l`uSIFe\rgKA','',0,'?'),('FZYC83E','wp-admin/css/colors/blue/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˗}{XtB','P:]\'T\'.d<NYA.aC','',0,'?'),('tm6ۗq.=j','wp-admin/css/colors/blue/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R(7l3oA','=EkL?1~/8+}j2F7','',0,'?'),('L>tN','wp-admin/css/colors/blue/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Iהg,)ZYM','\\kS뚑n wW	!*~v','',0,'?'),('juGCtO','wp-admin/css/colors/coffee/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̼v9f\nAi','րBZ$Ӯ乽+}a|f','',0,'?'),('q?%rp07q','wp-admin/css/colors/coffee/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gzdsS*','E&Zq`Fx\Z)?5!','',0,'?'),('ϴ 3P`#8^Z','wp-admin/css/colors/coffee/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1GSi,*','QK-H4^ ;T','',0,'?'),('eCDi!','wp-admin/css/colors/coffee/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','23-?y#M','o$O_@#\nf','',0,'?'),('xIH.9YBO','wp-admin/css/colors/coffee/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9~8 z#C0^%a','\0{Zr~d0|B|]ׄj܌Ix>','',0,'?'),('jmEAXuw>܆','wp-admin/css/colors/ectoplasm/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FqCr','r_ԉqO^\':6D0r2zMIlj;\0X','',0,'?'),('Dչ$Oa','wp-admin/css/colors/ectoplasm/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z萤i2[','v^)c-fLUZrmhV','',0,'?'),('H\0ۙhC','wp-admin/css/colors/ectoplasm/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\rPNkNn','TMľ7#+:X(','',0,'?'),('[#ܧ\Z>]<','wp-admin/css/colors/ectoplasm/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<b[;ԉ(̒f$','`g6oȎ/n8?DtusI','',0,'?'),('MTq&[?>칊\n','wp-admin/css/colors/ectoplasm/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q9+\"+','BmNhstNjAS4X\0$','',0,'?'),('q%ű m+','wp-admin/css/colors/light/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ozb{\Z ','k\nr+7M4D?E,R:X`','',0,'?'),('-f4]#\"ul','wp-admin/css/colors/light/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',c!Zrie2','ߨ`yN92rw.7KRg','',0,'?'),('v{#lb\0}B','wp-admin/css/colors/light/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';B폈PNl}h','4_)*ii+⮑.tލ','',0,'?'),('9(FRj2n6]','wp-admin/css/colors/light/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L)$\\P','bTzƻ0\r1_\"','',0,'?'),('KS+e׎A@','wp-admin/css/colors/light/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HG#<^o','?=ҏE\ZMaXĺJ\"sk;3','',0,'?'),('L?@.~O','wp-admin/css/colors/midnight/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XZoTՃhpYF','u,c\\Cmҙ[Gu뿩W','',0,'?'),('ᗏ3-4','wp-admin/css/colors/midnight/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ht8mg\"','	jg)!t\0r~7IRٝ','',0,'?'),(';bfȖ0x','wp-admin/css/colors/midnight/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+s0ŭu','nmUUPLX\"\n`ll/','',0,'?'),('_\rJL#@B','wp-admin/css/colors/midnight/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gh\ZѰ(','F̫fL伨Ԍuw\0+','',0,'?'),('w=ŢO&F','wp-admin/css/colors/midnight/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&܍|DW!E4','SoGp{\"FuS&','',0,'?'),('<(*A]O','wp-admin/css/colors/ocean/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9BQQ\nJNi#','MuKڂ+!MgEԝvcu/','',0,'?'),('{^WC','wp-admin/css/colors/ocean/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̿3$s$(','\ryC.Ka*oOhѵcǶy','',0,'?'),('Ê5ff;,G!\'\'-','wp-admin/css/colors/ocean/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BhmZK]','ZƋܳedLVי [Sf','',0,'?'),('*Tu\r~m','wp-admin/css/colors/ocean/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mc^G#iv','-:Lh΁҅LR	(^H<f','',0,'?'),('-Ǹ%w=','wp-admin/css/colors/ocean/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z|[l|ٱf%h','ɮ1uZRH6I\r	ź􇖈B','',0,'?'),('j׻q.*;2','wp-admin/css/colors/sunrise/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֩5RKQVByO','YZtUwRd`\r:ډ\0o4','',0,'?'),('2jL,W\rW$','wp-admin/css/colors/sunrise/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qR~d_ƃ6','5qƔ!cX*kT)ځ*','',0,'?'),('y85æb','wp-admin/css/colors/sunrise/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FI눯\r CjQL','V0j*;,-iY#=iڱqe[wwD','',0,'?'),('-+emu\"x','wp-admin/css/colors/sunrise/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YbX,Yc`(','hVcv5;tDT}O','',0,'?'),('SCRCl','wp-admin/css/colors/sunrise/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\Zz	h=','Q_n97L2$y:jSх','',0,'?'),('W2DG7V','wp-admin/css/common-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ԟ=X6}','oq0>qz7oKge:','',0,'?'),('XHov','wp-admin/css/common-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ijun8>','Xt_n˺Hv_478]]6Fko5','',0,'?'),('p96èR','wp-admin/css/common.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u|QI',')Ĝ5BIvd;P{5XZJB','',0,'?'),('\rvN[B&SL','wp-admin/css/common.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?{|JAc','-r+٢MWu`ob{`K6','',0,'?'),('Vk9۴sֿ','wp-admin/css/customize-controls-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0TgA\\Yxb','ex;Xw \Zxס߸_t','',0,'?'),('pj֛`w','wp-admin/css/customize-controls-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*KYI}nl','}osSstwR>IO','',0,'?'),('?\n5H?','wp-admin/css/customize-controls.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PCW[1u1','r\'D!N!-zeh6\\9','',0,'?'),('.նZg{=','wp-admin/css/customize-controls.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/A2dr	 ','TKO\"/J2=v7!3','',0,'?'),('Oy k	b','wp-admin/css/customize-nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R#ˀӓ<:8G','ds,SS#tf\'	{a','',0,'?'),('HAf,$F-','wp-admin/css/customize-nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d+,lN @d<','w2#eCV>mgv)99O','',0,'?'),('AlA~i^uØ','wp-admin/css/customize-nav-menus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DX.\r\0p','fQKd$3fwh#So12}','',0,'?'),('\0]pޑ	\rG','wp-admin/css/customize-nav-menus.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y./Vey.','/7Oo0Z.~\0PvЅ֊l','',0,'?'),('NHV}4G','wp-admin/css/customize-widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`%56@hI','\r~+h9*!\'b4t','',0,'?'),('4T(\\9\'3)','wp-admin/css/customize-widgets-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ye/:`N1l[','BvAfIh$U*P[~v`5','',0,'?'),('6$[O','wp-admin/css/customize-widgets.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѓ`y^(','Lϖ?Op?|ՠ->','',0,'?'),('b|e~','wp-admin/css/customize-widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D0\'?\'\r1','!,5akfJa_Gn','',0,'?'),('5?y<2','wp-admin/css/dashboard-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0\'ZJދW	','`zG*Y%)nvjiδhC!+\r','',0,'?'),('Ms;\',-E','wp-admin/css/dashboard-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b<\'ԎkᄳB','p²ZM2nqa&5\0M','',0,'?'),('KqM{','wp-admin/css/dashboard.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p-xk?','#J{TSET}n,ͅ{','',0,'?'),('+.eF','wp-admin/css/dashboard.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(\0wɏj2','␘6F{\noWFVG','',0,'?'),('8@)6yg[ysQR','wp-admin/css/deprecated-media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I+ZOtEv','`RUl\n᭿-P{g\0x(','',0,'?'),('pt_ Y7LKt','wp-admin/css/deprecated-media-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[+q5\\ʖV','oP\'[32+oI\Z?V;?P','',0,'?'),('X\"-{$48sx','wp-admin/css/deprecated-media.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"W*ׁqY4^',':+\0&:q`|C7\rEX','',0,'?'),('4a[I}Hm)','wp-admin/css/deprecated-media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̀0뚀o/|','{|#S.=OgБ^FgE','',0,'?'),(']\"}[YR','wp-admin/css/edit-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nB@^','~Ç\\Rԧxj_0Y/oa$ɟ4','',0,'?'),('BH*mzN83','wp-admin/css/edit-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JgztPb/','R\'g\r[8/yLd%+#','',0,'?'),('\r::HH:d','wp-admin/css/edit.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vi7\r',',O\0L{\"w[uԔwkaW}','',0,'?'),(',o!zj\"','wp-admin/css/edit.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DM|͓;i+','aPץJpq*3\nܗ','',0,'?'),('6;I(Hm%f','wp-admin/css/farbtastic-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q@!!Ek',':~ްX#^sI>&\0.MKG^#ގ1','',0,'?'),('OXg]<f@','wp-admin/css/farbtastic-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZL	czG0~l0W','-:+H695=UW+','',0,'?'),('«-j=uN\\q\'','wp-admin/css/farbtastic.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8)}{Ch2U','|ALMbxd8XjX.^\n\Z','',0,'?'),('KnҋD&sRWU(','wp-admin/css/farbtastic.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0i)3\\۸/;',';p;}|$-.k(\05&','',0,'?'),('OlqCcێ','wp-admin/css/forms-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1i6',':.߾l<˩5ivC%FB&','',0,'?'),('{]\\ֵ	d','wp-admin/css/forms-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gu\"qJP&@u8lo','36z\\I-@g]B0|{','',0,'?'),('(%#9yn','wp-admin/css/forms.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vh.$1{h|','Wn<c6|sϚ:nq','',0,'?'),('łjDߋ.˖D','wp-admin/css/forms.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\Zaw}=	\Z ','y&U專s82-B','',0,'?'),('kM?uX','wp-admin/css/ie-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y\0}v(5/R','7}\\:3ҹ\\dAye8h@ܶ','',0,'?'),('vs%zF','wp-admin/css/ie-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')b$9nm','m%ʄ\\[<-N2ER0','',0,'?'),('E&VN\"N','wp-admin/css/ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k<\Z+D0of','M=]^ܩ	_n=Ý&o\\L','',0,'?'),('ѧ_4a!F','wp-admin/css/ie.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':6FA7!','PfԥEZN%=	$','',0,'?'),('w9=_\"h%v','wp-admin/css/install-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(c(8nޚ','\Z0y^,_T`o򓜸i	T','',0,'?'),('i-X8V[~E','wp-admin/css/install-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':KӤsܫ','%N\0j	{8fs@V','',0,'?'),('<9uj!$','wp-admin/css/install.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bq\n%R~1R','tN\\D\Z/\0}Z͞0rR','',0,'?'),('ʆnD㮖(','wp-admin/css/install.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XM	9\n=Ǹ	L','~%Ò9<Am/%o','',0,'?'),('\'-p-f','wp-admin/css/l10n-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iR{峪,D_J','\"X\0\rR>sFZARv','',0,'?'),('vâ,\\+Q֧','wp-admin/css/l10n-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9^y2=F','$ۃmy\\#kZ~*hna@w=<	','',0,'?'),('2Die','wp-admin/css/l10n.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĸP)|qr','wppS\"D.oMOmO\'baǋ0','',0,'?'),('H4.\\:#','wp-admin/css/l10n.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uֵ} ف0m2n','V*}:u^k[.<*UoԱ(','',0,'?'),('y%Ǻ~ne\"V','wp-admin/css/list-tables-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tk#͕Zq{B','kpE(W\r9Tժyz>','',0,'?'),('F%C0,','wp-admin/css/list-tables-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p:j 1@t%dx=ut','\Z[&bd&ПeS\nNt!g','',0,'?'),('|jx7(Q}0\'','wp-admin/css/list-tables.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BqIȿ{S	\ZT\n','\0bTu@C0	\Zx[\0','',0,'?'),('kLN\0x6@','wp-admin/css/list-tables.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y>s+\n`s','Hw[k7֧@Jµp%RJG\0k','',0,'?'),('A{& V>Νs','wp-admin/css/login-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8\ZDK\n?','ST1ik9\Z9`QxnbqP','',0,'?'),('h@Z%RF;ti\\m','wp-admin/css/login-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';H~Vz$','(g)-Aԇ-3ޔd~פ!}','',0,'?'),('|jX|fb','wp-admin/css/login.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uLs','j]X&`\rSTv!vOA=','',0,'?'),('`&锥~K3/d','wp-admin/css/login.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʾ?[5fB','<wUL!#^OB^U1Q','',0,'?'),('r\nb#','wp-admin/css/media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~B0>WL+','T̶ԃ_yVQX\r6p#LԨ','',0,'?'),('zݿ&X❙6s','wp-admin/css/media-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','beP1DM	c','ҧNE1$yβ\0bӠ|','',0,'?'),('TDFK1','wp-admin/css/media.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D#t8Bu)','eAѽuEdMS}J\nj7','',0,'?'),('%Pb.8Gdt','wp-admin/css/media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=|V7:',')TBDK)&M5֞^\0CB','',0,'?'),('\Zy8R#Oy','wp-admin/css/nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qڕv:]1%','IKt#NNh%fSGc','',0,'?'),('D 2K|&','wp-admin/css/nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m5?FWnWL','D?=\Z(C>Cubl#Jh','',0,'?'),('qhnJj','wp-admin/css/nav-menus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&1lc{\r#\\','ҡcXgZ.ѵXwy}`8$R','',0,'?'),('ZWtpNh','wp-admin/css/nav-menus.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%$~;S~\"M','ӛ+pChԌV0ډv|b}^T','',0,'?'),('.B|xӳE','wp-admin/css/press-this-editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FMHv7\ryd','$`MHn#<K*\re','',0,'?'),('&XB`]\"?װ\Z','wp-admin/css/press-this-editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=yͣ8|','֚ă3͒\rΝĹTN3_*.','',0,'?'),('\"jǧ`1','wp-admin/css/press-this-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AF7!mKMxf','N->tB/ԣ(q[','',0,'?'),('|1QAE`1','wp-admin/css/press-this-editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',4L7b%2Yj_','\"j\\粃h_EV\"R҆c','',0,'?'),('HMz@A','wp-admin/css/press-this-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/ ','I|07ane;\\U','',0,'?'),(' (T5!hu','wp-admin/css/press-this-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ک+n(K)','+^	pBJx7?Q[','',0,'?'),('F|\nMN,8ݪ\'','wp-admin/css/press-this.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lJb#Nx9&=\n','%<DNNM^^/jC9tbp','',0,'?'),('.Z{=UuߩAJ*','wp-admin/css/press-this.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4ls3\"̾','kUۜ[9؀jL2u9?u','',0,'?'),('PhrV','wp-admin/css/revisions-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','һu/ًB2E','ei݄J0R?*6j?0[:#<M','',0,'?'),('@tR>GHhס','wp-admin/css/revisions-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǝMqO','kI\"22}8jW%)U','',0,'?'),(' a\"KwTbc1S','wp-admin/css/revisions.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#zBa{6','Ca>QUUoGVw&\Zp,x','',0,'?'),('\nGƙn\Z@1+U]','wp-admin/css/revisions.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}0Nwk{P','n&B1fQI*PwQ~\0A6	','',0,'?'),('0rH\"YK]T','wp-admin/css/site-icon-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' bɹVbPP9','$Gyl#O_0Q	Q0쯟u','',0,'?'),('QWsA7d\n','wp-admin/css/site-icon-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rb\0{q\n','j:z]{8\rԥ\\nZB\\gθk','',0,'?'),('\'=!ZaajUQ','wp-admin/css/site-icon.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|U-ͥ<N ','[\Zڄf}TʪWnWS!ݭ,C','',0,'?'),('n&n!崬','wp-admin/css/site-icon.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f3bmɇGdHq','K~7JjzkWԩY\r','',0,'?'),('g~w\Zhh','wp-admin/css/themes-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nJzM','Gԑ!SW~9Q捱=m<՞a','',0,'?'),('5At߂m0iz','wp-admin/css/themes-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TQ.,Ҵ\n4','T\'TJ|?=ZB\'#*f	B','',0,'?'),('Rш޿0','wp-admin/css/themes.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Do<VL~','\0EJf~֮>=t|\ZR/','',0,'?'),('fSuBͥ?^yO','wp-admin/css/themes.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t\n1Gˢ4k','G)R/W$\Zπ%>r','',0,'?'),('3vU\Z3P^O ','wp-admin/css/widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r-Wu mW_','zi\'[kaXP|p9ڗ','',0,'?'),('sEΞqpB','wp-admin/css/widgets-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(A6-ꝠV','2UܠC\"qË\'(_ռ?V-','',0,'?'),('!HUN&\"z','wp-admin/css/widgets.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ժ뛊5;>XP5','9\'WM-D^rauQz1c','',0,'?'),('E}~M-]a','wp-admin/css/widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ȱd\r%c','r^*@xLxȱ\'VRj\0','',0,'?'),('֗]NRS{qv?','wp-admin/css/wp-admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tfo,is','MǑul2Փ\">Z: ~;+','',0,'?'),('$(g(P/','wp-admin/css/wp-admin-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݚ*7\"GŪ',':vS(1T-ѐ3','',0,'?'),('d4j2UV$P','wp-admin/css/wp-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','佐5\0!*[','k[i|2Ekx/c','',0,'?'),('j0wE}®R','wp-admin/css/wp-admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v&o0l\Z','}:wҿ7O(.7&^=1#¼^K','',0,'?'),('?0|5uơ','wp-admin/custom-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#Y7`\ZN','NƗԅXSiMcWXu','',0,'?'),('uqg\Z\08hԭ\0','wp-admin/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	y\rp','I Xf_s`\0M/ʧx','',0,'?'),(';?2S\0p','wp-admin/customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Jg&','8&dYkۗA-,{ͬ9','',0,'?'),('p?E^@\'PE','wp-admin/edit-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2m7@kjr','h<.n>,6Ֆn^:\rl\\ź\ZZ','',0,'?'),('\rb\\ɍ\Z','wp-admin/edit-form-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\ZZju','6iξK@7kB&c3bcY','',0,'?'),('G7\ZI&:x','wp-admin/edit-form-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1e1\"X','3IhݸbepJ	C@W+','',0,'?'),('\nb-V:|m','wp-admin/edit-link-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`uGDɡy|','9i< ,\ZKhvMxϱ','',0,'?'),('%8^V<t','wp-admin/edit-tag-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DQ|^-⌒B','m[1@KFTVxZ҇!Q>\r','',0,'?'),('h)UG@xv	','wp-admin/edit-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y:].j','2lX_鄱D0}s:T]F跇q','',0,'?'),('YLah(','wp-admin/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P9)/','Q<5^HK;X\"Bx\rn<','',0,'?'),('pVYa\0צּ=','wp-admin/error_log',0,'eKF-jha','eKF-jha','f>-,l:&t%ϫ<ӣ','',0,'?'),('1|}dQ','wp-admin/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߯FD\0K','\\SO7QILc1VIK5X[R','',0,'?'),('O&r蓏 ','wp-admin/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?D.zup#ڔ','t:.Y:%G_إW7','',0,'?'),('W\"Sk:','wp-admin/images/align-center-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-r5*J7If','8tf*JwT^H>1JDο','',0,'?'),('&*dĆָ	H5','wp-admin/images/align-center.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	\Zݶ4ydY1e','놽N3X!ljh`hA]J','',0,'?'),('V9KgoX7','wp-admin/images/align-left-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i8O^c','$kb>k&:	ڂa7Zcdm%','',0,'?'),('mMtWB','wp-admin/images/align-left.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\y0dZo.h','_]<#S\"B^U4_Q<!@x?J$K','',0,'?'),('].ooȦM-n	','wp-admin/images/align-none-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XC)[-4','ߧ&QQp\"~\Z8S׊YS`','',0,'?'),('MW	:ي','wp-admin/images/align-none.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eqd2u\r','g(1X{ [].TA','',0,'?'),('vG.gA#r','wp-admin/images/align-right-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hl>r]lWx','V:h#ȆBT5i\0?cBc','',0,'?'),('tnRؔ%^','wp-admin/images/align-right.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BOe#l@:P+\"v','ɳC?=&UyZ31!<c','',0,'?'),('[QH\"pS1Ȫc','wp-admin/images/arrows-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Q}ydb#6',',c˿\Zi(~)\'8[A/Ix','',0,'?'),('E#lL_&ܪ','wp-admin/images/arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v$>>Y','YW(N32U;<.iDd!','',0,'?'),('DS3.įy};','wp-admin/images/browser-rtl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\"ӠA\Z%̝','+啧0pƜJMk qwXب','',0,'?'),('H06','wp-admin/images/browser.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\\b$F','&$ĉ9~_SH_̓%L\'&','',0,'?'),('G9q=ʥ[3?a','wp-admin/images/bubble_bg-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R=[;c','}nvB.ֺ\'laDasMk','',0,'?'),('QuoPX\0Sڞ','wp-admin/images/bubble_bg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=,(\Z2cV 8','rqMCY&fp3@-5V{<M','',0,'?'),('Lt593u^)','wp-admin/images/comment-grey-bubble-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TYŝ2s,\rm','DxT-wN	P{','',0,'?'),('ebWA0d','wp-admin/images/comment-grey-bubble.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y*\'tF','7	y񮌬U{ԟ`]m','',0,'?'),('I\\jxg','wp-admin/images/date-button-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')R,$k)6Cc','TlpExQ\'H9ow{(|\n','',0,'?'),('a\'@T瑓','wp-admin/images/date-button.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.IVď','AFyWI1Cx)mUgYA4[qC','',0,'?'),('j%Mɍp)Z','wp-admin/images/generic.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'[#98!','{uK[g͆Ex{:߼lͨG','',0,'?'),('\Z{g?3gڢ\Z','wp-admin/images/icons32-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%*g','#!$@0g.;i3%!cHP=','',0,'?'),('&N,6P','wp-admin/images/icons32-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*04G4F	&Zi}\"','.a}hw6WEʭ(3Jӭ9E','',0,'?'),('L Ufu<','wp-admin/images/icons32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',P*{>vUf','?UzP\\@`8g;\rE','',0,'?'),('1WV(26','wp-admin/images/icons32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','۬[m9J4\Z','DkCdi|a|+\rx̌','',0,'?'),('L8\\ݼ+','wp-admin/images/imgedit-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\'6Ut','?؎).l%<(_ 6`^c7','',0,'?'),('{?\r\n\'','wp-admin/images/imgedit-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\\2}Gi;O','TN~-@N̞V\\(u$','',0,'?'),('4ge>ߝ','wp-admin/images/list-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hջIS2ig','JpS_X#UB-z,','',0,'?'),('Z\nuoK T;e','wp-admin/images/list.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>*ӳS','\\wT[=baCk;c','',0,'?'),(')M^ûoz','wp-admin/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-[tPd','W3pla	P\rABgx<p-3','',0,'?'),('\0%3[$x\0.(','wp-admin/images/marker.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3*O2/3I2','~T@\\vUI<pKa`T@cca','',0,'?'),('@;5XVOZ','wp-admin/images/mask.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g~\"J䩎','/<sԡ)\'.1jknK9Q','',0,'?'),('@sZ^qv','wp-admin/images/media-button-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#WI\\?','<:tnkbwi&	R\Z','',0,'?'),('1EfQv#)\n0EkQ','wp-admin/images/media-button-image.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~WÎ@brճ',',gw?{6U}iXTH%ݬ','',0,'?'),('a\\c,I\"5T#̋','wp-admin/images/media-button-music.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']2\\Z/ޕ','He}KۭXYW/$\Zeis','',0,'?'),('NQ\"*hzrw|\Z','wp-admin/images/media-button-other.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƴk|,O\"','\n6b+d1m㗡_zт3<}','',0,'?'),(')z]!?a','wp-admin/images/media-button-video.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rx4Q','Hl8Ew\08tc3֞VN($','',0,'?'),('a)TMWOoQ|','wp-admin/images/media-button.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6@pz^ye','_\ZSjזY VZGen_','',0,'?'),('\"N߬jj)\0N','wp-admin/images/menu-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jG{>^;$','2]y#h29> ^s\rH	\ng','',0,'?'),('* aF4uvU','wp-admin/images/menu-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JZY<iYb','\'FєE\07ɡ#>sePض','',0,'?'),('t]ٟuuj','wp-admin/images/menu-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qL,_;1/E','GiH|)E;\"_;ԣ4Իwly','',0,'?'),('@XD\n\nRNt','wp-admin/images/menu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r9#dY`	','lIE/(p\0pnT-Oz\"],=`','',0,'?'),('F 8+)rP','wp-admin/images/no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kd$ܟV7','\n>~hZP\0U0;\' {)	>','',0,'?'),('+DFܿTZ[H7','wp-admin/images/post-formats-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SlH\\','etw|W{xy%K:QE7','',0,'?'),('\0וoxi3%\r+]kg','wp-admin/images/post-formats.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\0%3','9ƺ&]nEua]iFƳ','',0,'?'),('n]j7<3ISsQ','wp-admin/images/post-formats32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t.E5GN\Zv','(Z,ImY,·ԗtGa','',0,'?'),('œϔ=#6','wp-admin/images/post-formats32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WY~O{+_LkE;','k<8._DKG[5e-I(0wh','',0,'?'),('?{o_\'n','wp-admin/images/resize-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e?&h.\n','[e 4Bd*	.WuЩs==\\','',0,'?'),('3!9=6ݡ','wp-admin/images/resize-rtl-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɞ@T0:}','qWʽ6Ė(H\\t1X=KeL΍','',0,'?'),('I{?r]7','wp-admin/images/resize-rtl.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ےcZY6','̒̑\0CbĆ< QPzS','',0,'?'),('~?JIb*׺eC','wp-admin/images/resize.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?D$\rXva','#?|gvp\n(!7β#u','',0,'?'),('\nfY4&L','wp-admin/images/se.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȔB`.}\'7:','Y\"K{Ur:2JL','',0,'?'),('X:8+˓2>V]8','wp-admin/images/sort-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nQ&] 0-','-4XNzP+q5UBqəyO','',0,'?'),('[65+	n9','wp-admin/images/sort.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ˍlHj]','DY~AAԟpL9Ckܺ','',0,'?'),('J&_#3Sq','wp-admin/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\q9)hdxR]l','Z\\J)q1C睤9~&{','',0,'?'),('fi`=@To','wp-admin/images/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1c~\'dvvHq','I9%-7CP<r\\c\"x{','',0,'?'),('P1$\\*C','wp-admin/images/stars-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A#SMe.^','[耿_(\rhYTqZ','',0,'?'),('Fj!Y{.J=,','wp-admin/images/stars.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[><k{(','/	\"Fa챔<SYg؉F@','',0,'?'),('VrmKEpj6','wp-admin/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[NW_pw0','ޣ^Qt3HunU❻~\'T2','',0,'?'),('Jf3?_rC','wp-admin/images/w-logo-white.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nJvۢ~y\\','nD _;!GםcV0M9i=','',0,'?'),('+gq6^\0','wp-admin/images/wheel.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E0 q0m\ZY%VX','(]:=dqۅO{9ԀvȘ~','',0,'?'),('%\\MA','wp-admin/images/wordpress-logo-white.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qPC-SPD','e4E?&DsAʬ;)@Xɒ','',0,'?'),('tZQYz0跫','wp-admin/images/wordpress-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ưyo88S`','bxLPͰ=^am1i','',0,'?'),('c\"ml Ǟ>o','wp-admin/images/wordpress-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N%dgp','\"uj-QE\0[gLZ5MD:','',0,'?'),('ںuM[\r','wp-admin/images/wpspin_light-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}3Y(Im','9N*8)qX-ʴooyT','',0,'?'),('\"w%_K\\u','wp-admin/images/wpspin_light.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nmh;\Z@','m5^í%n4<E\"kXzӧ=','',0,'?'),('<la,bX,','wp-admin/images/xit-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rT`?J/','-Pfy$q\\_xbcX.4','',0,'?'),('mz4LK','wp-admin/images/xit.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')X`1H','~vf|e]\0T\ZUl(\0','',0,'?'),('M&3\r3CMaQ{','wp-admin/images/yes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+7܉\rqZQk','=QG9%K,\r\ZFy','',0,'?'),('TV\\','wp-admin/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zb=r~','I_@BfFcD6','',0,'?'),('ĳJ\n`|5,HT','wp-admin/includes/admin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rm|>{r','F2nG_hl0FRsypO?','',0,'?'),('D)bak{','wp-admin/includes/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\{ziP\Zq','bh$w\"=c?./@}$Z`ʨ','',0,'?'),('Ҫ*H\n;t','wp-admin/includes/ajax-actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!1],[','n:_{pK9MdDOu2x','',0,'?'),('ΝH**.ځS','wp-admin/includes/bookmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^Y\r\\.','6׏\Zq_N(G.K>ZS','',0,'?'),('\"wh','wp-admin/includes/class-automatic-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ўW&L6','2=?7v8ǮE`fCdJc	/','',0,'?'),('nкvnj=ͮ','wp-admin/includes/class-bulk-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_qp{[W$&6Q','(3)o}͍O_&ITiMP\0XP','',0,'?'),(' \'_U;0/<','wp-admin/includes/class-bulk-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ALc.G@m\Z','>D?ǇbgOur\0_/p','',0,'?'),('W7{(;:P?','wp-admin/includes/class-bulk-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#~ƫ8̚:{',';V>/Qi/H\rw/Z:','',0,'?'),('jUUX\Z/J/','wp-admin/includes/class-core-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2##+KTڞ','߻T@=2U?m!\\+iq','',0,'?'),('M\0c_d','wp-admin/includes/class-file-upload-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9lqj|w','+^o.oqU0Upo~;','',0,'?'),(':8Iaølm','wp-admin/includes/class-ftp-pure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BbEE>R','\'M*i*D\"~:#*aA,nSӠ','',0,'?'),('afh=FT:6','wp-admin/includes/class-ftp-sockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l9U+EX+',';	:sهUƀae','',0,'?'),('rp.u3zx','wp-admin/includes/class-ftp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɾ&_sdrjz.','*,7o\07]C後uӧN]UŋB','',0,'?'),(':X@\0{*֯','wp-admin/includes/class-language-pack-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/$ot3','8Px_~hM.-)oa(-','',0,'?'),('g~)~sʞI','wp-admin/includes/class-language-pack-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(<HǼ^','P-`kO߈IgƇ*ڷ','',0,'?'),('\"ơ7vs+','wp-admin/includes/class-pclzip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YИυWYp','!\"܄Ӱ1DE 0','',0,'?'),('W&ִ )+ڱ','wp-admin/includes/class-plugin-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S7۔ G',':k?i͓m e5=C','',0,'?'),('h/͔jC\0n','wp-admin/includes/class-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\'Me\'Q','Ha,,OK06I','',0,'?'),('v)F~q?b','wp-admin/includes/class-plugin-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';mSv|','h?tLa܈?>\'s0y}h','',0,'?'),('sIqF','wp-admin/includes/class-theme-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IdaQvS','y(n.,W?~,shW1Fg','',0,'?'),('H`\\ rYC','wp-admin/includes/class-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|p^`L\\','*Vmĕ(u?XeJRC\'֘iP','',0,'?'),('3aDwPq','wp-admin/includes/class-theme-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D	\'8{w_sa','1o<Np(c{-i_U<鰔','',0,'?'),('{y\"ҵݩ{','wp-admin/includes/class-walker-category-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nۮG+c]<','n{᳥wf@bqT~o2','',0,'?'),('Qs|cL؜VH)','wp-admin/includes/class-walker-nav-menu-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n','^pR9_L\"5b\0','',0,'?'),('ر-_}Zh\n\Z','wp-admin/includes/class-walker-nav-menu-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ܛSP,','1mX!aʟ:d','',0,'?'),('!yF]','wp-admin/includes/class-wp-ajax-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E2wXz','<XY$*.qmJ5Yᔮt3,v&\n_Q','',0,'?'),('Z\ZaYH\0 5~ ','wp-admin/includes/class-wp-automatic-updater.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~]*\\[Rj[','+D3fW3c1T_DYDxٕ','',0,'?'),('Ye.0s','wp-admin/includes/class-wp-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*`qGf(G','ƒ8rɕ[Yu\"','',0,'?'),('&/dbdq2/','wp-admin/includes/class-wp-community-events.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<Ox=/Z@','Oh%1{SPIe4x*Dkl','',0,'?'),('%f\\+,\0\\Y','wp-admin/includes/class-wp-filesystem-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1\n?@m=','x\\y|mk1;=9##','',0,'?'),('hFM<@`%q-','wp-admin/includes/class-wp-filesystem-direct.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tx(>\0',']+$6o#e_1kk','',0,'?'),('6̠,_qu','wp-admin/includes/class-wp-filesystem-ftpext.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4~A\'s.ߧ','5sU4kŜOwXǳqsVxEP ','',0,'?'),('PQE|E}7+','wp-admin/includes/class-wp-filesystem-ftpsockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j/\"FdI','!)XT~d*NNlwcMqy9','',0,'?'),('j(g~jU#','wp-admin/includes/class-wp-filesystem-ssh2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','``s D\Z','DVcsycăOoB','',0,'?'),('v]z3tB','wp-admin/includes/class-wp-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',w	_/JS;','so엃#Z2ͅ5K_A \Zމjv{','',0,'?'),('vA\nGr3C9`','wp-admin/includes/class-wp-internal-pointers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','INt#S#A','#7)o\'uT/\npMt g','',0,'?'),('_(CM69','wp-admin/includes/class-wp-links-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nxҲk긝6_y','bMu/;DᝤtJC,v޺}޵','',0,'?'),('UdMS$l','wp-admin/includes/class-wp-list-table-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ř\"┳4JOC(','bk_Si+Pfx`A-}','',0,'?'),('O	S#Yiv','wp-admin/includes/class-wp-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͨz\'X2&','		ōQyŅDp5`ږi0','',0,'?'),('Vb(ktW\"6(;ƴ','wp-admin/includes/class-wp-media-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jgׯ)@͚{/','dvPJA;\0WHC[9','',0,'?'),('spe','wp-admin/includes/class-wp-ms-sites-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G\nAq`ve\n(','SqS~TZ_zݍkOլ[C','',0,'?'),('wV!','wp-admin/includes/class-wp-ms-themes-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q{\n~4\'','!cr:p^\Zex}','',0,'?'),('i)33ܥs*','wp-admin/includes/class-wp-ms-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ncm(e͆g','R?``p\Z3	\Zy|2B','',0,'?'),('e.PȴNBSx[&','wp-admin/includes/class-wp-plugin-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nOy\'Os','a!ԔܺFK轝wz\\\"_aL4','',0,'?'),('[:q','wp-admin/includes/class-wp-plugins-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*x`WZ{YCjI','YT\rѽQkװ1T9l٨{','',0,'?'),('c4L]˞Mc','wp-admin/includes/class-wp-post-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\4ZeN]%D','ZuE><;7)AJ\ZOE?BC-V','',0,'?'),('Gȩ6\0Y','wp-admin/includes/class-wp-posts-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Ҟ${)Mo','gsfJ>1;=E?ldq2','',0,'?'),('<p\Zo@Sq','wp-admin/includes/class-wp-press-this.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p,\\','kHuEN/JYgSi)','',0,'?'),('TMl','wp-admin/includes/class-wp-screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@A C.`[Hͧ','>,6v4^m$^$-h%','',0,'?'),('\'Mw񑍷\rKj','wp-admin/includes/class-wp-site-icon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X\"q!|','<X|Nj7z\'茱!Ha','',0,'?'),('L#/۰*3\r','wp-admin/includes/class-wp-terms-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OJ_;N8+','_̲c5(hkh!\rU*D','',0,'?'),('\"ڕK[@G9','wp-admin/includes/class-wp-theme-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aR\\zy4>,,',')\\)y1ʃ14߈r({','',0,'?'),('\"IFn@a}9','wp-admin/includes/class-wp-themes-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o|Mi*m#/8','\"b)+3]oĻSqOm ,$','',0,'?'),('=@\\JpQm\\6','wp-admin/includes/class-wp-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'6\rOV^W','՟@0yI_mTXi:A>݊y','',0,'?'),('zJXw{!\rF','wp-admin/includes/class-wp-upgrader-skins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?HZvU','(eи-CoLO^o̝fgQɅ9','',0,'?'),('XGzX','wp-admin/includes/class-wp-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"+cy:','l0_ƷzuGwij+x<RY','',0,'?'),('x8[!>X','wp-admin/includes/class-wp-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ń\\;\r(','[>#f$򤡱\"vJcp6$','',0,'?'),('|&;rLs5','wp-admin/includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ЗO>\rX','\\(XS\'%keu\rΡPTc','',0,'?'),('3koW5	k[mq','wp-admin/includes/continents-cities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dq.OB6\nf','1V@BU7\n\0`/-ZȊ','',0,'?'),('<	f%nO','wp-admin/includes/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Tj\Z*Ȑ֌K\"','~ȕVmRDD9PRO@','',0,'?'),('\\т?$̈́8','wp-admin/includes/dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Pq','Lt+u .`6mHMa6,k@','',0,'?'),('?E_)xڅ$','wp-admin/includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 8f1՞\'c',' lDrբẜݢΐE4v]>','',0,'?'),('x[e>M','wp-admin/includes/edit-tag-messages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*yd|','\rT)\"_bTLETpWS','',0,'?'),('>AB7Sz!e','wp-admin/includes/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u{<\\/d]','i)*{_!踭6#_]	','',0,'?'),('QT*fP.','wp-admin/includes/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hyMo]','sps]l,s	!2=ܾp+','',0,'?'),('7E#wŧj','wp-admin/includes/image-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hd˝\"F=','y~ $ԴbZGK\"P_','',0,'?'),('\0|9ue@','wp-admin/includes/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9d½!_;+o}','NB6A7\n#oyEG','',0,'?'),('Ah)I\Z]GrE','wp-admin/includes/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2J$g','Ʈ>`I&6o8ڜm8~ќ/','',0,'?'),('cwk(43','wp-admin/includes/list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N|(̨F%!o','=	W͕Egy=ܵ%r8','',0,'?'),('R=*dn','wp-admin/includes/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\\K^U','0϶\\3sKUq5%AR','',0,'?'),('\nqoqZVyX9','wp-admin/includes/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l2qlm+?Lv','xA^|\r䰘v(P.','',0,'?'),('HýiZU,HL','wp-admin/includes/meta-boxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{D\Z\'8pCmo','J	F`p\\gnbbXҎ)f<($','',0,'?'),('1eUMV^','wp-admin/includes/misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SΣ]/?!p\Z','\0ѷ$`W\\\'siS\'&uW','',0,'?'),('j<MDd4m','wp-admin/includes/ms-admin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q79l;','XOu$A܄vtyH\nT','',0,'?'),('7*\"{\nK<','wp-admin/includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' omߚoµM','vK4u,}2\Zjr1@\'i>q軕','',0,'?'),('f霰f؟|hUL','wp-admin/includes/ms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xy	+','P:{Ch4\nf\n\nz','',0,'?'),('(љ\0H<_','wp-admin/includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<&߯nZ,u4B','~Pf$l./f۞k\rW','',0,'?'),('V׀\'hĈ+:','wp-admin/includes/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!&Vi','3<rڝb˝g<	D','',0,'?'),('w`M>{','wp-admin/includes/noop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0xFa#P|D3','_^]-\ZrIj\Zl|\ZE\rE6 ','',0,'?'),(';pR9+qpծ','wp-admin/includes/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rkq+P','o`L3+z\"N[Q\'|mǎ','',0,'?'),('R|Rx/bzn9\0*J','wp-admin/includes/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fX\ZI?','ec۽Ҍo(}_m','',0,'?'),('q\"co>2Rh]','wp-admin/includes/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#7}b','r_\ZN\rkۿM<UntּXtO','',0,'?'),('5V\"$$_','wp-admin/includes/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')nR<MS7BFbh','.\\&Vl9t/m:p\rL6b','',0,'?'),('x^m]̲/L4vU','wp-admin/includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']k)ǵqX',':.kkM7H0TvΩᙝZ[','',0,'?'),('ǫ=m/^','wp-admin/includes/schema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nNoRfJ\\P','1gUcK+S>y\"[eC','',0,'?'),('(v|T— ¥','wp-admin/includes/screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\0#l;!','a!MtdLCɈkzEǑz','',0,'?'),('Z %/Zz9','wp-admin/includes/taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6/1?F,Ȫ0[','\n5)%ݑw~w/6','',0,'?'),('2@jj\0kӲӘ','wp-admin/includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(;S}B`h7\\԰<','k$6!c:TN_Myx!8','',0,'?'),('~L*,<:','wp-admin/includes/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c=0-','reRJ2g=iM21n%з','',0,'?'),(']W/>}<8 VF','wp-admin/includes/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hP8G6GZ>b','x)i6-E4Hity1#-*T','',0,'?'),('8R6DHq-{:`','wp-admin/includes/translation-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\"-7O*','s12x zmH{6Uk=J.T/aۿu$','',0,'?'),('Uy/*%;','wp-admin/includes/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	8sԸqC^a','[z<}ꯣӫC$','',0,'?'),('].1\rPXL','wp-admin/includes/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t_因0\\?','g\"a3,]Y\'?<]9\\\01F S','',0,'?'),('=cه','wp-admin/includes/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2O+üWIGD#','ra4*$Wt5ra̫Q+CG','',0,'?'),('Q (;ؠ|~R8b','wp-admin/includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',{.L͆Q1&~,',' zI6v%ҳIXiZ\ZL','',0,'?'),('I.$U0]\'S_','wp-admin/includes/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n	P\ZY%R(LO؆','	`	I]5Ӣvg43߮','',0,'?'),('Ѻ\"P5^U\Zi','wp-admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':wfq',']Hyi%,~ob]7샿G','',0,'?'),('Bj)qDS','wp-admin/install-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dV`1&\Zl','ɤ=\"{Nt{\0X\r+','',0,'?'),('6|;;8Q4k','wp-admin/install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_/Ir','bhym[Z_}/d_+aLT','',0,'?'),('z;j2WD6[V','wp-admin/js/accordion.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?=L/%NZ\\\n','dLVqqa-P&uͧl:0M','',0,'?'),('^.jT}<I','wp-admin/js/accordion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"kIz-VS\r;h^X','ɫc[-36$Stl-[.','',0,'?'),('TÇ=w','wp-admin/js/bookmarklet.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5jŕC','PK&O5\'RTˢ\"Lr<ϑ6','',0,'?'),('~79hg$+=\\0','wp-admin/js/bookmarklet.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[mHs$Yp','n)̈́IxVV$Z=qUOc','',0,'?'),('5\rk','wp-admin/js/color-picker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uj}\'j&','i>\\xPH\'SPyk]','',0,'?'),('Hl{!D#!','wp-admin/js/color-picker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.:*\n\r<>a','tRL	X:EEX\n z<n|m⃻','',0,'?'),('C/;)ّo','wp-admin/js/comment.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0MLE]˜U','5A\nq~焥D)ҔZ)\Z|','',0,'?'),('Qlg-','wp-admin/js/comment.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6\rwġ','\n}y<)/e	ECygڼ','',0,'?'),('w:}VP','wp-admin/js/common.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1-CA[2#vu','/tK+[Vz\nqGb!}>Fj&.^','',0,'?'),('_f $O<o','wp-admin/js/common.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%֪Ϗ=[\'QG','6ߐzxvb=o4h','',0,'?'),('d1쵓-;O','wp-admin/js/custom-background.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`0F$TCU{','C9!l<?ya1o\\f<q3','',0,'?'),('} yTZHcDJ','wp-admin/js/custom-background.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5.P3֎~?','QqS`	]ӫuJL]xס4','',0,'?'),('C\nU','wp-admin/js/custom-header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\0X`ouf','&[/ߧQ%X1P@Xe\r','',0,'?'),('nvpe}','wp-admin/js/customize-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J1mIT','-MCKqɗ+`0H','',0,'?'),('dA#*Źo7','wp-admin/js/customize-controls.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2щHdC:','Ô+rΚ\0\"R;{B(ZK׉','',0,'?'),(':DJ$hǅ\r','wp-admin/js/customize-nav-menus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bbQ䕱#1Mx','R &x3Y.&aĹ,C~M}<','',0,'?'),('HGh\'xR~\n','wp-admin/js/customize-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','* \0yB!4=','.K@B-IN7<1','',0,'?'),(')[\"JH|jk$','wp-admin/js/customize-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K0]\"u@','ͷkC8uH-K6\nghܬq','',0,'?'),('fMx	+9U','wp-admin/js/customize-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{5ӍXV_','M% FJ24-9aDqi\\','',0,'?'),('ĸ:,p1Hr','wp-admin/js/dashboard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|ňGN\r%΢','&>ct2ZLThE]RsU','',0,'?'),('zpKC{\\>','wp-admin/js/dashboard.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v>V80','Ęj\nu+\"b&s~g\rM#','',0,'?'),('`%ֽj\'P','wp-admin/js/edit-comments.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z^:\"d8D q','X\'x-v|Rk','',0,'?'),('F\'B/4{J{w','wp-admin/js/edit-comments.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m]j4ɕi','PK4bu02moв','',0,'?'),('R5?- S^H','wp-admin/js/editor-expand.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OL ߈ٵJ',' #3)WFgR/We=','',0,'?'),('IV/6s','wp-admin/js/editor-expand.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\0J&;sv\Z\\y','vLfviv(?ܶPqCo','',0,'?'),('8=Ia%k~','wp-admin/js/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RNZ)YF89sU[','a^죪i,jڱN)','',0,'?'),('⣣MOU','wp-admin/js/editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\'&1J[+{','iJlC%o!LbT_Q','',0,'?'),(';RyhRxK\r','wp-admin/js/farbtastic.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':T2Aq]4','btGp\0BM0zXJvZHAtM%','',0,'?'),('/GΞӶ[ǜC','wp-admin/js/gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xϩe9em嵫','坨W?[D5=|J4|.','',0,'?'),(' I_X?','wp-admin/js/gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N{%3t9Ze&Qw','.4ӝ7/>fn@AiK\r72-@K','',0,'?'),('G_bc.,]&','wp-admin/js/image-edit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȽQ[[I\0%\\','cW+IJ>A%l-T3g@RO','',0,'?'),('-Z:E:','wp-admin/js/image-edit.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','92]u)a+y','b3Hi@f4\ZP<1{/?','',0,'?'),('%nTߒ	^gXΰ','wp-admin/js/inline-edit-post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lF}&?c3','҈M^iP9mC6b#.ڨg','',0,'?'),('1o%qA','wp-admin/js/inline-edit-post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','((F$;qZۅ','-AYwYMc','',0,'?'),('(q4P}5Ozk','wp-admin/js/inline-edit-tax.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XR8F#d','YK\\$xY|T;\\/[]s	5','',0,'?'),('pl4[e','wp-admin/js/inline-edit-tax.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}_4\0a[','P7wc\nT^\Zl\"\0;\"O\"','',0,'?'),('lFc뒕L','wp-admin/js/iris.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E`dșnK','zTI5RKbb}uHВc	P','',0,'?'),('i\\=Xh$','wp-admin/js/language-chooser.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	PV0tJJ','X֨+ܤY`|a{PL)','',0,'?'),('Z\Zxcyd\'','wp-admin/js/language-chooser.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\"8Jq	tF','J&9W1Z[!5O\rb/AH~R','',0,'?'),('QR\"@3vS','wp-admin/js/link.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u5ϳt{z','nݣoڟ5H;\nibP=','',0,'?'),('|#԰#{','wp-admin/js/link.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F0;3%-','yVgoq[pcd2.k~%8','',0,'?'),('nZ/1T:{&^/n','wp-admin/js/media-gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ЀHM#N5eq\n','H-PGZ=\"pa(l΢','',0,'?'),(':%H`!\rZ','wp-admin/js/media-gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2 Ғn','i{Q\ZeF?9}i6^$¤|\\','',0,'?'),('^\\XPvS\\{','wp-admin/js/media-upload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dkTTy_$m','z8LE[xu\'8i:gg٘l~4w','',0,'?'),('el5sEúQ','wp-admin/js/media-upload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' N=u&MT0	','zrw\'05$`\'D9','',0,'?'),('r(n՞jb\"','wp-admin/js/media.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mv-[,^XQ\\','}{rLkF#Ixvg','',0,'?'),('מy7mE5O_','wp-admin/js/media.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':ۯZZUw}','QmV,17vm󩣭3	','',0,'?'),(' It13&','wp-admin/js/nav-menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')uU8pVg','Ky\r<nW~4ZnK','',0,'?'),('fyħ*!','wp-admin/js/nav-menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A%yUj','x):-+)<08.\"V.','',0,'?'),('\"\rJ\04\'i','wp-admin/js/password-strength-meter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(GWnR\00N&)','F>SnJeA 	9ԲA','',0,'?'),('Ȁ~_qIS','wp-admin/js/password-strength-meter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZtJ+I','Uek1)I]\'c-c6Fld5','',0,'?'),('t6O\raȆf','wp-admin/js/plugin-install.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+cSkKњ0','\"7.ۢBH%dFwP ','',0,'?'),('!Y0-z1dm>','wp-admin/js/plugin-install.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FREJ\r䉶L/','Z[\Z˃S','',0,'?'),('V댏$x','wp-admin/js/post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aٚ\nڋ\"-','\\h7)k`b<gBW67.r0','',0,'?'),('M?,5*K*f','wp-admin/js/post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cϖe!q','؎h9x\ZnRP7','',0,'?'),('P\'(?+z$','wp-admin/js/postbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷TFS','!Sr!0	?xl','',0,'?'),('ORrD?','wp-admin/js/postbox.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'s{	i','׵*RBEK^vl;nX','',0,'?'),('@bHfQ\"$S','wp-admin/js/press-this.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\n}x-N8,c)','\Z䜫:H2fם[Jm<x<0','',0,'?'),('Ր(@','wp-admin/js/press-this.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']GX	','I?R`#C\'\'\"\\j\0aR_','',0,'?'),('\\9ѕFw','wp-admin/js/revisions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mm݇^R','EmE.\ZW,Ucd=ຖL\0q','',0,'?'),('ke<F4','wp-admin/js/revisions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D|2 i','fwבTAj\r\"RLlN','',0,'?'),('KW&\0\0K\06G','wp-admin/js/set-post-thumbnail.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+QSWm@~Q','ҀO֜\04̛X%,~@3','',0,'?'),('TgslFʞLy','wp-admin/js/set-post-thumbnail.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8կ!1z[','s!\ZCn\0T0t3|\"','',0,'?'),('Z/{LtծF$','wp-admin/js/svg-painter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/|ĩz','AJd\'@B9n{JOBWI h-v:','',0,'?'),('U<?Y,ػ(','wp-admin/js/svg-painter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\Z[*q&','OfJz6._Um1_^R\Z','',0,'?'),('G|$p֠+(','wp-admin/js/tags-box.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʭn7BGq','Zf늂BS:hoM','',0,'?'),('J1MF<','wp-admin/js/tags-box.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\n?%','n]JtxwM҂','',0,'?'),('}\\5\r$lW','wp-admin/js/tags-suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','npfWǭ	>','<T$ҧ*$Q=ڟ\nk','',0,'?'),('km|Kma0\"*k','wp-admin/js/tags-suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','勼eOl	rl','K:/£:~šj','',0,'?'),('{tE~PA1','wp-admin/js/tags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w9_J0Zdջ','sYeWڂ-*\n~4.\n(i!','',0,'?'),('fkjNUei4=%','wp-admin/js/tags.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ԧd2<z]','8t<;wu0J-f-81N','',0,'?'),('#\\/vXR','wp-admin/js/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-^*&]n','+@	$[Ɨ30,w%@','',0,'?'),('G6U2\01RJ','wp-admin/js/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rDE(','nG4xƔJFQ9*','',0,'?'),('+9[BUEe','wp-admin/js/updates.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4GOW$59Ai','c{,L8\'j$AD\':&','',0,'?'),('([dBQ','wp-admin/js/updates.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͆\\T{U\r','?zY󣒛*[q,@9$c','',0,'?'),('\'>[·','wp-admin/js/user-profile.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!c\'Uk\r.I',';;k\nиm۾f\'Ua&]','',0,'?'),('HS!; ','wp-admin/js/user-profile.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xBTeT[m2~Z','5do>jhfrJ]Hhz','',0,'?'),('R¥Leq	&','wp-admin/js/user-suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3)()ݰ4}\n','g</o@lFo\nIV&_a','',0,'?'),('X$aB^','wp-admin/js/user-suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T\\\\|\r9','ENE2cBK0s~cN)b?<','',0,'?'),('K]Cl7:D\0','wp-admin/js/widgets/media-audio-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	V#Ʃ>H',' 7h$҅ l\"jrQj','',0,'?'),('<|~E.Y^!]','wp-admin/js/widgets/media-audio-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ފ4sF>֓','-YrfpiRU>Z֪Jӊt','',0,'?'),('4y3%k ','wp-admin/js/widgets/media-image-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bfP7]p2','wG}ӕht\rּu6','',0,'?'),('|N!;xN&gm','wp-admin/js/widgets/media-image-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y̟BTWr','V&3(Orn\r {\rUVO','',0,'?'),('5ڜ2l2{','wp-admin/js/widgets/media-video-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tBpDL!8Or','c#N5{uLRTXH7[J̪','',0,'?'),('˥̰MVЗeA','wp-admin/js/widgets/media-video-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ns(1A7:F\n','fz#T)$\ZB&&S5\rBdn','',0,'?'),('ņLGP(Ήȯ','wp-admin/js/widgets/media-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0d[-L','S17\0GJ]eIHËXp2r','',0,'?'),('Q;(Mp*','wp-admin/js/widgets/media-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nݼd7sC3)','\rܶBBazQIBPGF','',0,'?'),('$TX@#A','wp-admin/js/widgets/text-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J[m','8ZFo1 !~Fo.e/','',0,'?'),('bpA+-+ʉ','wp-admin/js/widgets/text-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̺预C[[','(3H~Ʉk;bڕA0$','',0,'?'),('RQb7f |~ۓ(','wp-admin/js/widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hsh1{Qͧ','n^D@Ң.BjtpIYj҄','',0,'?'),('Sx4@owN','wp-admin/js/widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EFR7՜y','DN*GC!V֜ƬBC','',0,'?'),('P73o	\0=','wp-admin/js/word-count.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\4;n1BRzQ\n','u*4Iy^xj(w{NM=','',0,'?'),('Cg}|E','wp-admin/js/word-count.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P_J\'䓖AE','n}X~2^_zhNLݪ)2F','',0,'?'),(')f><z0-AUi','wp-admin/js/wp-fullscreen-stub.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(2Tq\0W%','N^;&:\nW1*UyKe','',0,'?'),('\"p\"-Cw','wp-admin/js/wp-fullscreen-stub.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p\nL{AgJ5','D\"e9VIm425CAP%_','',0,'?'),('v4|><','wp-admin/js/xfn.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t+n(k','9NG2KƑT]','',0,'?'),('頻yN<9o\Z<','wp-admin/js/xfn.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\'(.J9\r^','BF>~jmb)߬콋\ZƒqfN','',0,'?'),('|Y>	Ɔ','wp-admin/link-add.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!q!T	ʢ','_l&qd*^w	V*f-_zL','',0,'?'),('B%v6I\"Jb4ӡT','wp-admin/link-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?]l%,','\'hm722ұ\r\n\rue U Y1P','',0,'?'),('~rC','wp-admin/link-parse-opml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XCjZ5+?Ib','TnU]=}Wb0h銬ԠNbV','',0,'?'),(':{{79','wp-admin/link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nAsC5	+','ЃSQ\Z/BӍ(p?d','',0,'?'),('6]jvWk\r3-','wp-admin/load-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CTr[ۉC\'','SދaXBX4c\n}NUGJ','',0,'?'),('W})Ӗ7e}59,','wp-admin/load-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+r~Q{','0	V[&	&U2vtD$n2$\nzW','',0,'?'),('KOȖ93|<','wp-admin/maint/repair.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ဣ7[/','\0fJf/ɇ Uj7,ӼDEN','',0,'?'),('J{ֹZi^ùxI','wp-admin/media-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oVh	٨\n','*unEWu)e]xWW}<\\','',0,'?'),('}','wp-admin/media-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\"r	k,-\Z^\Z3','8COHXyU>iZ\r0yZ[ph','',0,'?'),('ÏuL,&Ǒ\r1','wp-admin/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pSr)nK:\nE','0.V)IS~x{+#͓','',0,'?'),('$īI^3','wp-admin/menu-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ea<F/.6','o}Q4/|wi`XB((\\:','',0,'?'),('\\D >F,','wp-admin/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mLG<b^','xPKv7\nu\r66_\r','',0,'?'),('W{g- X\'=n8','wp-admin/moderation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TBYR\"4o','O1oBzŢ\ZG%A+[','',0,'?'),('vw@HzF','wp-admin/ms-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ͯEb6','BHT`C\r#89JN4D\r','',0,'?'),('&ee\n3KvZ','wp-admin/ms-delete-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' =e|ҢQHO','Oբ7>TD$]!7_','',0,'?'),('EV,%,SM=','wp-admin/ms-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Ħý:E','敔L`;Ai^O~M:e\"','',0,'?'),('\"(}Gr	0V(','wp-admin/ms-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'\0}:ㆯ','J3l+Ku\'ƴ>\r\nf,XðR','',0,'?'),('-18;T/X]','wp-admin/ms-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']b$qh','X\"\Zo\"|vS\Z{','',0,'?'),('=b6hst','wp-admin/ms-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RK$IZ1i%','}[v0	w^!*TxW','',0,'?'),('\\9','wp-admin/ms-upgrade-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|&\"Sm8hm','Q{OJ{SN-(t','',0,'?'),('kULǡ$','wp-admin/ms-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H#f{#ʃ	6G','	[=$Ĕ*JZ\nc5[S','',0,'?'),('\rxݍ^\Z<;','wp-admin/my-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.R*A#.zk\r','m#Q<wLR.@H','',0,'?'),('Clo','wp-admin/nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@xtxe%PC\nD','\0Ev{WZB8qFB8\Z7E','',0,'?'),('ol>x~I ','wp-admin/network/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6fqI<@V!m|','`,M[b&	T%mUeX','',0,'?'),('ZQ4\\(܇','wp-admin/network/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H3p\'e[g','zF\n~oE^q\rIH','',0,'?'),('+t%R?','wp-admin/network/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T%>rl1q\'','<C%9> =ČZI_','',0,'?'),('\'ڞ\0;?+VҪ','wp-admin/network/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JɈ2F?\"0','VRMUv])dXƈܶ!ݴ','',0,'?'),('uF^GE+c','wp-admin/network/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9B9DD\nS`','JB\'ޘFRF/17A\0y&','',0,'?'),('\0C_\njD@k','wp-admin/network/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Te**d','PPߜf*Ч<ȘWpSi`C','',0,'?'),(']PTkvt8A','wp-admin/network/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֛z43%9 u','kuAVA_oot>iuK','',0,'?'),('[ixTq~Wve','wp-admin/network/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eKw5UZSj','a|i%L?!E:Px\rH\'','',0,'?'),('p$^dZ','wp-admin/network/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*ln,ƍe/ʚ^','.FeZtVOtBH`5D0;','',0,'?'),('\"Sέ`t@','wp-admin/network/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F9U֊','XÐMCCD\rdJ&-*<4TU& x','',0,'?'),('=}CiHT','wp-admin/network/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hto`3v','_!gI\\:K[ߗCA','',0,'?'),('\Za]]A\'h','wp-admin/network/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˇ0GV	Z','lTnL1\nGוS!%%\0I\\\'(','',0,'?'),('/sC4','wp-admin/network/setup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t=$ly2R','Q\n0.s$c\"tZ^','',0,'?'),('+G*#f','wp-admin/network/site-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\0m{\rm','qX5S5ͥRP-mM','',0,'?'),('yG\\`MR','wp-admin/network/site-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h_M:.Iws}+','rxMӝ:tJ,x1R','',0,'?'),('yc0Og)ρMf','wp-admin/network/site-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&P ;8xP','xuPm,(\naQP+>Fm^>.Y','',0,'?'),('qhBc92','wp-admin/network/site-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MxnZ2MBB','\r̖sgvΧ<#2C[','',0,'?'),('q@/ꦑٞ-M','wp-admin/network/site-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mCn>ZN;','kø;ue4>+LLe|Ygu','',0,'?'),('n@AF','wp-admin/network/sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\rJ&Y餛,','j%\'-vb<(\0!k1q\'g]N','',0,'?'),('{N2Qu=	','wp-admin/network/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^)ŭwqB','4(Vt\nڢn8D[qlp\"\Z<','',0,'?'),('h|hEf:Ʊ2~','wp-admin/network/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bpB&#','d\'&Q\r\'#\\K>/\n$!%','',0,'?'),('!}=`*gZ=','wp-admin/network/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9\\*x','/؃/`4MRk|Ʌ`','',0,'?'),('7|oOUz\0Ef','wp-admin/network/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~I\'0Y','q=m˭1B5{NlR','',0,'?'),('\\(wBI','wp-admin/network/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GTw','CـQ}N(z{|/Bss%L','',0,'?'),('rhvLk/','wp-admin/network/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Д)1','(eqq}T.1ƱўV1','',0,'?'),('\00#9Z4j$','wp-admin/network/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?aO\Z\'	','nF#V}\Z^LKu','',0,'?'),('6K1(}/AX','wp-admin/network/user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zܷECyV;','}yRzw_a[BO','',0,'?'),('	09-bͩW','wp-admin/network/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`#`dȯa','FUe\Zw8CsrR; ʖ','',0,'?'),('dlPOI','wp-admin/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<BH[$^\0]w','S6V|ߺ<zRp׍C.J9<u','',0,'?'),('JTV0DoTA［@','wp-admin/options-discussion.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','و>\0I<Gy\"','\0?+ZɮL}C\nY5ZFy+','',0,'?'),('o[n3uʹP5','wp-admin/options-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yu6BE	 ','&@|k`Abʡק','',0,'?'),('\rѪ1s1=`(y','wp-admin/options-head.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','an}hI`q\r','Rz`\r0ɚ\\\Z#zlQ1rf[==','',0,'?'),('\\.1-:','wp-admin/options-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HD\0NU(#ބ.','=.Yzxa=Hqps#;','',0,'?'),(')t\r,Jڼ','wp-admin/options-permalink.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o}gn','c=u5>jU:+&*','',0,'?'),('ҲE5|ѵCd闼','wp-admin/options-reading.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UA>a&5','u!)Sҷ]H)=4pSp','',0,'?'),('L>ٟ#{6p}Y','wp-admin/options-writing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mU(|ol ','ʍvyiznA	Sj\\ݭ','',0,'?'),('d(%J@G','wp-admin/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6\"ϒT|ؠ','Uk9fJ`6Veqz1{gWWi','',0,'?'),('acCH\r=l@ĸ','wp-admin/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7cn$i','ŨRк9SzLV\'+\'s S','',0,'?'),('xjP!cx','wp-admin/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f@zFO','4\n>^S(9 ','',0,'?'),('O\\P5{R','wp-admin/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' T\00','#9,Usvcp	oKN','',0,'?'),('kzߣboR','wp-admin/post-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dWQY0EY','{w:<w:O4O5/Ӎ9?ۇ','',0,'?'),('vAdsK]','wp-admin/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V:umn輙9','xȂUh蒥j::!Q','',0,'?'),('Q`8M8','wp-admin/press-this.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YS$\n1>օOP','_tI(2xn6G,<','',0,'?'),('h4#3`-݈\"','wp-admin/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?>zͩz&',',6I;G+pblZdyc\0','',0,'?'),('\\\0>+Fb','wp-admin/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|ruH38hܳ','2T~V6>r\Z	%%ais7Yy,','',0,'?'),('c̎$\n\'@\r','wp-admin/setup-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wH\0ގ1','kM%Xf¹=\nӡ','',0,'?'),('|f,2T	','wp-admin/term.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KD>p3믣M','[9q[8f41k_+Q-űΒ6\'n','',0,'?'),('&`OQ5Q43','wp-admin/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','di}vAp','Yew!v2uls$y!m/=Q','',0,'?'),('\n\rBp̭','wp-admin/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%$nzB~','Aզ cJ@xVc\rt;l(','',0,'?'),('^[Xi	','wp-admin/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_T/q\n̲V9#','\'<\\5\r>7L̬V	]lV4','',0,'?'),('7s\\]}AAwe1','wp-admin/tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Ѱq\Z!;G','\0śN405\r2S )scZ-qz[/ݹ','',0,'?'),('!LT3ix','wp-admin/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FA	}6~p','Դz9XrU׆bJ3\\n\0\Z','',0,'?'),('!o\rAv7e','wp-admin/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iYQD<A@\Z','%U}zJ\'ccM:C:fjj1/','',0,'?'),('^@ղ{\'_92','wp-admin/upgrade-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\r6Wd˻','\r91|&QRl\ZԼ𷠝4Y;<H,=El ','',0,'?'),('j7r[,Z','wp-admin/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0:I%0\0','`⦬<Fh\'','',0,'?'),('&t!0^gbJc,>3','wp-admin/upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B}7Rg','PzL~k2a	1o0(Rv','',0,'?'),('^9(-(Ųy 0q*','wp-admin/user/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0ڍKN N-','gR\nz?9?Y b݂f͗','',0,'?'),('1s)6ӶCΗ','wp-admin/user/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p-R VEo$','٣jt\Z/<\r68','',0,'?'),('~\r\ZK4(#','wp-admin/user/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ǀ[K}Z','eϳCQF[^tCҲ[~=Y','',0,'?'),('R;lzO8m<3Nie','wp-admin/user/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˹޳Hti.','~l&P}@M 64gDz','',0,'?'),('[ꠏ|Koیb7','wp-admin/user/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-xNb','ݹMZX*hV\0gc!+5#5','',0,'?'),('y\0\"Q','wp-admin/user/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')»gEp','5kY#(|6P-~(','',0,'?'),('`&X<aQVh\\','wp-admin/user/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0yݤ&-','[#Bٽf_M!Pk;','',0,'?'),('=q\rljA+','wp-admin/user/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*zucm	Je','啱̱		p@\\ͩ؈9.a>vYʢ5','',0,'?'),('Jh|0`ZpE','wp-admin/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z+h#CoBb6ӑr','͙Löb(GһUCB3','',0,'?'),(' *@ADғ=puE','wp-admin/user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w?!=UF','7:LUsEEf<@5','',0,'?'),('Pizta}a','wp-admin/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c}F[','ο-/<`rmy\n+#DT','',0,'?'),('ThzPr','wp-admin/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*\0p(.LL϶4','{{B9%(=&i.0eȗqy','',0,'?'),('I:Bs#@','wp-blog-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','taMm?%,=tz','5Cz0ېuXI!X处','',0,'?'),('Sp>WrYE','wp-comments-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lp%,2Ѥ','D/@ZC2[ZpƦmZ`','',0,'?'),('~ťs\01y$L}h','wp-config-sample.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I?Ie V','jbCJ7/z,F>','',0,'?'),('vK;@saU1;	^','wp-config.php',0,'pQv~N','pQv~N','BgXw,pEʂ|\nyB','',0,'?'),('-^g̺@\0/','wp-content/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,V=\\bP','k~	UH\ZxPĀ<;X','',0,'?'),('wi.w(M;0D','wp-content/plugins/akismet/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9|2-#','JS\\<Cޏ=s\'WI&\Z(vaTo','',0,'?'),('I*:o','wp-content/plugins/akismet/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4MiHjJBc','\0v1sN>cID٦I0-','',0,'?'),('L\rȦ:nh\'','wp-content/plugins/akismet/_inc/akismet.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7İ\\̱\"2m','qú٫&UzHkoV!+lVO','',0,'?'),('̽ X$oB','wp-content/plugins/akismet/_inc/akismet.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i	[8cݝ@k)','\nTT\0\"-v	k','',0,'?'),('<BʱA51ӱ','wp-content/plugins/akismet/_inc/form.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'4l*&i','MB1QwoX4bxc)@D˥k','',0,'?'),('\'PT]	6~','wp-content/plugins/akismet/_inc/img/logo-full-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^K-^>As{','%>:1WRͩQi~^G','',0,'?'),(')̃2kh! ','wp-content/plugins/akismet/akismet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FΩ=tўкX','~\"=Bc\Z\rzn3^','',0,'?'),('jK&Y','wp-content/plugins/akismet/class.akismet-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QX$Y\"NH','?\"/i\r<Hi5+:~p1KG{','',0,'?'),('f餧xMP]~B','wp-content/plugins/akismet/class.akismet-cli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ZyJŎ;M*[G','$l۵	ns}Z?|:','',0,'?'),('lg<=l','wp-content/plugins/akismet/class.akismet-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1O2e1rJj','#TcxEyũH>','',0,'?'),('pb~oBkZ','wp-content/plugins/akismet/class.akismet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','un$Qu','詑ouj>]7!Ӈk','',0,'?'),('A$h՝`Qa','wp-content/plugins/akismet/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h PZݢ`Ef','}5e33mhyDQ(','',0,'?'),('o/d4x`','wp-content/plugins/akismet/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m[yߔ#^7','?V2T%<΋̪ѬJb+','',0,'?'),('>Zbo&','wp-content/plugins/akismet/views/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\':x#dE','\'G,~Ifř֛NoYt','',0,'?'),('bE3g\'cZ (','wp-content/plugins/akismet/views/get.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N^?,ړf/','gJ\Zop\']Mi@P;VK','',0,'?'),('Wd;C\rO','wp-content/plugins/akismet/views/notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M#p%iظh̝','45q$&Β9QO*zkBjdE,','',0,'?'),(';;/JKmR0','wp-content/plugins/akismet/views/start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r5J\rLX','M\0(@hF(¨o\ZBFA\rw7','',0,'?'),('sӣJ~k','wp-content/plugins/akismet/views/stats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AFh`','?O>uz/Aǚ	n5E-IGUh߳','',0,'?'),('dF=jHc','wp-content/plugins/akismet/wrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lRKvG\n.4&',':y8{#տm6mz6Y(9','',0,'?'),('+\"s','wp-content/plugins/contact-form-7/admin/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٹ.\n6Fu','Ӽ\\[VH69Vlaz&l^f\Zڮ^','',0,'?'),('NP<U','wp-content/plugins/contact-form-7/admin/css/styles-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M]TZ:o','\\\n7Ѻys[0RoKM~4e&','',0,'?'),('\rRШ<״U;\"','wp-content/plugins/contact-form-7/admin/css/styles.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Euōw([','_MW\\W%\\i`#q)l','',0,'?'),('F_=^aE}','wp-content/plugins/contact-form-7/admin/edit-contact-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';]3\Zgz',' h7ש^q\rSӤ_aL];X<','',0,'?'),('H	ڍQ$?9','wp-content/plugins/contact-form-7/admin/includes/admin-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o$C\r]b2','m(M^0z\\P\0%zugw\rqrJ','',0,'?'),(';!әAOZ','wp-content/plugins/contact-form-7/admin/includes/class-contact-forms-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T3}jPx\ni܀','=eĐɇF5Hf\0S<)5','',0,'?'),('93p^1','wp-content/plugins/contact-form-7/admin/includes/editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bqj^/','啺IGxw`۱~ʽ,>_!FA','',0,'?'),('wsYes{','wp-content/plugins/contact-form-7/admin/includes/help-tabs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\0VÐ	','fl3X)a*[g0\Z)Wl$','',0,'?'),('++uV67Sc','wp-content/plugins/contact-form-7/admin/includes/tag-generator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' DwK','p\0캩ɣ0/Kzٙ5܌','',0,'?'),('W[lF*QM','wp-content/plugins/contact-form-7/admin/includes/welcome-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b0{S_~!D','(lB/v\Z~R&$j~','',0,'?'),('>AXas(~','wp-content/plugins/contact-form-7/admin/js/scripts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s/Ǫ7/','r\r\r$CQ䞠28&\\|','',0,'?'),('lɃandv\"Q','wp-content/plugins/contact-form-7/admin/js/tag-generator.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>O&2<Q3',':i\"\'Ќ\'t!\\5ɭ߸WA̅ ','',0,'?'),(',A}2+/xў','wp-content/plugins/contact-form-7/images/ajax-loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+7wD:wk;z','H7;鸻gۺ]VC;y2s','',0,'?'),('Wkm`^ScVG','wp-content/plugins/contact-form-7/includes/capabilities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0=Ăb\rRV\rL6','u1ZZ[ؚ4lk','',0,'?'),('7A`|\'2`5=','wp-content/plugins/contact-form-7/includes/config-validator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1&\"4Jy8g','^V~ŲQCۥkqlC','',0,'?'),('8ѽbv\r','wp-content/plugins/contact-form-7/includes/contact-form-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<b*΀OD','9_E\rR&\r5p}\\','',0,'?'),('R0t]','wp-content/plugins/contact-form-7/includes/contact-form-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/\\6zUʿ<}$','uؕ[̛FѽMPFN2:','',0,'?'),('\"@OwQ_ܨ2M','wp-content/plugins/contact-form-7/includes/contact-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\npt65闚','?\Z77P@`rFquuYs','',0,'?'),('a.IctRs.','wp-content/plugins/contact-form-7/includes/controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dOTYhd?','sp^r=FtR278=t','',0,'?'),('/sNF>6','wp-content/plugins/contact-form-7/includes/css/styles-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PP;]W׺ph','NzĊJeAςJ>0vИP3','',0,'?'),('\rb!EjڵX','wp-content/plugins/contact-form-7/includes/css/styles.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}]<5\\ ^z','{OXFIݙFyBzKAL\0','',0,'?'),('043p2P>Ҥ>','wp-content/plugins/contact-form-7/includes/form-tag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n@V^$-z','us, @6g̮tPmf	','',0,'?'),('=5^L\n-[','wp-content/plugins/contact-form-7/includes/form-tags-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a~{eUY','b\"ꅱ*qL\Zli#3J5}','',0,'?'),('pI:Svu','wp-content/plugins/contact-form-7/includes/formatting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ւ/=&ԦtU','ʧ}u3P#1?k\"S','',0,'?'),('sז:hS','wp-content/plugins/contact-form-7/includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m8\n\0|q','yM׼jB]g~\Z=-UgX','',0,'?'),(':ӱ`JiL','wp-content/plugins/contact-form-7/includes/integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A33wp#i','3z:)V2)w:z','',0,'?'),('1鵿YlTKe','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pGK3+d','~ԣHdVA<̦4:,dLOV','',0,'?'),('Uu#dx]E','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','To	i5k','L˵6%w툄^Q','',0,'?'),('X[⋘Hn̖	$','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<YJQ#,','\n7Qv \ZdHJ$j]KYe','',0,'?'),('/Dclޏ','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H{pN;R','nnzTM_nƜ<B@x6L9(','',0,'?'),('0&MUe2j','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','do4˨ȶH}& _','޸{\"WhdZ~ߧ.og{z	','',0,'?'),('WzY!avwQ^ޱ','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}姭G$M3 =c','Fx\rb\0bQz&GBZW','',0,'?'),('EdZEZw','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?#\\KUtN','.YC#(*w_9#.#tV߂\'','',0,'?'),('Lϖ\0y\"P','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v|','&Y@f\Z{y=F#Fsaͮ','',0,'?'),('E<V6;NK_lSk','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\'AVwo1El','#/r`e,c[\'@ˉΑ˿','',0,'?'),('^DV!o$+','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QR\"$\\','\n3N?|c6mY5a1','',0,'?'),('\n5=IK&{P','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^YK#W9\'D˲','\'Mܣ_-\n0N1$AЗl=','',0,'?'),('F8*\"ڹpEm&-j','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<g\"<!uU','^,9T~̠=Xqtِ|,','',0,'?'),('+GI]$noR','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\neWb~Mv','#|KO85L~u}\"Z\0l~!','',0,'?'),('L9ԔLMU)M','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d߷^ixX','6@\0`$mvtfUv!','',0,'?'),('s2K\nlFu/G','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʔ?2KI','V1\Z\ncke!d','',0,'?'),('Tak\r80o,','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1,}Sa','RZhڴJEqZN)hy','',0,'?'),('9HM%j&u','wp-content/plugins/contact-form-7/includes/js/scripts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@Rb\ZT','\'0.A(&?ݏnv$j!2','',0,'?'),(')KW&\'EF%','wp-content/plugins/contact-form-7/includes/l10n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^AsL*','RNgW%§m-C5*','',0,'?'),('Xo~_k','wp-content/plugins/contact-form-7/includes/mail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Az>l6y','`5N?Nq\0U\\A*UuW2f','',0,'?'),('4:j;F?.','wp-content/plugins/contact-form-7/includes/pipe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EN(ڪ,h@ۭB2','3!^s{]]!ݣy0<','',0,'?'),('~Ftgr','wp-content/plugins/contact-form-7/includes/rest-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R.711','Q~to(׺]\Z)Dt:','',0,'?'),('DuKBLk','wp-content/plugins/contact-form-7/includes/shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڶݥ,RW\r','ܚOcksC[\'Uhj	4','',0,'?'),('?cKl}g5ᴐ','wp-content/plugins/contact-form-7/includes/submission.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cGO(4Ↄ;I','(b?Ѥ>Tyv:,\Z','',0,'?'),('\0pWG\r}^\r̈́L','wp-content/plugins/contact-form-7/includes/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4m\Z(9?1',']2C\nԜ^)j=\\\0sO','',0,'?'),(' .gw','wp-content/plugins/contact-form-7/includes/validation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aniMA','iqZMa+	\"','',0,'?'),('NOT)EH','wp-content/plugins/contact-form-7/languages/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YT&\Zo^GԨ}','MO(\rOv[/FBA>tCw','',0,'?'),('݋rn}zw\'','wp-content/plugins/contact-form-7/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`}v>^L:','>Zp<j\\8A;b','',0,'?'),('anFh #ۈ','wp-content/plugins/contact-form-7/modules/acceptance.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o3ZK<j','!ڥDD\n؊~ZCH;','',0,'?'),('ƿoFh','wp-content/plugins/contact-form-7/modules/akismet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ts~ʡ','XvʄXן:2 ߖgj WD#,','',0,'?'),('\rvkP-tGHm','wp-content/plugins/contact-form-7/modules/checkbox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LS\0zNL','<Ř()%J[j+ÍK@|','',0,'?'),('(,\0[734','wp-content/plugins/contact-form-7/modules/count.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oHJ\'C	','FϹʫAQWl%۠j ','',0,'?'),('\0@u2X','wp-content/plugins/contact-form-7/modules/date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')߲9T|','4#v_.+vClpN7','',0,'?'),('YIETt2L]','wp-content/plugins/contact-form-7/modules/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\rVΌI:l\Z','Ft\0/=oB\Z`\rg[9(Co2','',0,'?'),('x>E\\Q;\\','wp-content/plugins/contact-form-7/modules/flamingo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\0iؒ;ޏ','Qq\0֖)NSxb+ypHe','',0,'?'),('!B\Zl!Z0','wp-content/plugins/contact-form-7/modules/hidden.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@S|s','gZy\r	z7kRhODPў՗','',0,'?'),('=fd\\ӂv','wp-content/plugins/contact-form-7/modules/listo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\0){','ӈ!t/)lpZ|;n˄bS','',0,'?'),('k	<(Gw','wp-content/plugins/contact-form-7/modules/number.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oK?<OPu','VİJC0cgƿr{,}Ҡa\"','',0,'?'),('Ee\"^zT','wp-content/plugins/contact-form-7/modules/quiz.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Lp1',' D\\I=WCiS.ixXQS','',0,'?'),('#ɴ.\nI|+ɼ','wp-content/plugins/contact-form-7/modules/really-simple-captcha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I&Y\nJN27','Np|fjIJRC','',0,'?'),(']F}w}','wp-content/plugins/contact-form-7/modules/recaptcha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qMz','O$}v\'AY<6\\CTAWr<','',0,'?'),('\\\n;:I\"@Oh','wp-content/plugins/contact-form-7/modules/response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ն(.;','Z\ZbnKvcM?9','',0,'?'),('ݺ$;kJ	al1','wp-content/plugins/contact-form-7/modules/select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\",xv}(','dFx}z&OdO	+r@','',0,'?'),('J?4Yhe!>O','wp-content/plugins/contact-form-7/modules/submit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wk|Q_N\0~¿','Vq>7Y3n\n-yC	υEy','',0,'?'),('bN=,S','wp-content/plugins/contact-form-7/modules/text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2.cWP','\nCߥaPld5 	Z!S a','',0,'?'),('r\"-\0EwX','wp-content/plugins/contact-form-7/modules/textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#蒠WSMo','&[z_b*J%S%[m{ʰ>M','',0,'?'),('6o8NoL;','wp-content/plugins/contact-form-7/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qץ^','`<9?UyrAvhZO,d\Z','',0,'?'),('%&}p\\?ہ','wp-content/plugins/contact-form-7/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lJ\rx_','6T3z0	\'!n9ۇ	rܯ','',0,'?'),('\r¶2O2&@','wp-content/plugins/contact-form-7/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V2?\'%0','δX0҆p_3SP9J[qŒƛ','',0,'?'),('kN(lZfE\"Lm','wp-content/plugins/contact-form-7/wp-contact-form-7.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pӥbl)2)','hn~Giԋ\0MScCƘR͛˄A','',0,'?'),('K]`ͩ(l','wp-content/plugins/easy-theme-and-plugin-upgrades/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Axm`>HŻ2','̘L$*\n*yږIdCgdF','',0,'?'),(',D4|&yt','wp-content/plugins/easy-theme-and-plugin-upgrades/custom-plugin-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i#y}\Zy.w','E@&V%%Svb3A~-','',0,'?'),('zCz4 _','wp-content/plugins/easy-theme-and-plugin-upgrades/custom-theme-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FOJ:8Pu','Ww㰺O<؀\\nϡ ','',0,'?'),('\'vE\0:_','wp-content/plugins/easy-theme-and-plugin-upgrades/history.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%ܼ冀\\EVƼ','5_Qړ;Or >+j','',0,'?'),('6eZi6JA_n[b','wp-content/plugins/easy-theme-and-plugin-upgrades/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('KcDI','wp-content/plugins/easy-theme-and-plugin-upgrades/init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V_ʸkzDD:sY=','Ŏ\Z!tr:c^DCǵ','',0,'?'),('aq`hJmMU','wp-content/plugins/easy-theme-and-plugin-upgrades/readme.txt',0,'ȩx6$И','ȩx6$И','$פ{1xPvFJAT#XjxXh}jվn','',0,'?'),('puwSɴ0','wp-content/plugins/hello.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RbAot!_~','&.ݰMZ3yqNZӞ-\\T\0U@e','',0,'?'),('0*W','wp-content/plugins/index.php',0,'gD,V=\\bP','gD,V=\\bP','k~	UH\ZxPĀ<;X','',0,'?'),('[8\ZZ+','wp-content/plugins/js_composer_salient/assets/js/dist/backend-actions.min.js',0,'+\r\"SŸ\\?','+\r\"SŸ\\?','1C~#3\Z7Y>JT*J~ԠBIS;','',0,'?'),('\riӲA','wp-content/plugins/js_composer_salient/assets/js/dist/backend.min.js',0,'ǦZY','ǦZY','*rS#CS]*#`|D\Z','',0,'?'),('?ƌG+u\ZR2ל','wp-content/plugins/js_composer_salient/assets/js/dist/backend.real.min.js',0,'\\v˗Q@)Re9','\\v˗Q@)Re9','c\nK*lA[^1t\r=	x(','',0,'?'),('ܕ\"ft+yo·T','wp-content/plugins/js_composer_salient/assets/js/dist/edit-form.min.js',0,'_ J®ffNS	','_ J®ffNS	','QiE\"ш?js>t>בVF','',0,'?'),('aQ5	@*qK','wp-content/plugins/js_composer_salient/assets/js/dist/frontend-editor.min.js',0,'_gf(dq','_gf(dq','=o`ۯqL	-T؆`','',0,'?'),('gUEtN*f','wp-content/plugins/js_composer_salient/assets/js/dist/grid-builder.min.js',0,'|ߝȌ +\0>#','|ߝȌ +\0>#','Twd~YPeݐN|LRjw*','',0,'?'),('Bp9KZ.*','wp-content/plugins/js_composer_salient/assets/js/dist/js_composer_front.min.js',0,'_Kܤ^#*','_Kܤ^#*','*j{`Y	/z%smEʡo0','',0,'?'),('ܼ	XԢV.','wp-content/plugins/js_composer_salient/assets/js/dist/page_editable.min.js',0,'^àCd','^àCd','ɐL/Cj }M,g)','',0,'?'),('{ol\ZT-S6B','wp-content/plugins/js_composer_salient/assets/js/dist/settings.min.js',0,'s3}8%','s3}8%','@/r(vI,?)?(','',0,'?'),('2a249','wp-content/plugins/js_composer_salient/assets/js/dist/vc_grid.min.js',0,'=21j','=21j','6^)Ϥd׿cX8y','',0,'?'),('`PJCΫ38','wp-content/plugins/js_composer_salient/assets/js/editors/templates-preview.js',0,'WRVn4;w','WRVn4;w','o_60\Z].4ۂp2d<:֣','',0,'?'),('\"/6-س(','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/charts/vc_line_chart.js',0,'oT`?\\FO','oT`?\\FO','M`\\]Nw؊Abz;Ik؝','',0,'?'),('Ʋ]X=a-|','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/charts/vc_pie.js',0,'CPiY[%L,\"UF','CPiY[%L,\"UF','rȽrB%^ǧq_X0=6)','',0,'?'),('Pj.\\2E\nCL','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/charts/vc_round_chart.js',0,'\'f\'+w0','\'f\'+w0','-@CGfA@6H8p5?(','',0,'?'),('؇<^?*3N','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/containers/container.js',0,'R0)%ҊA{ad_','R0)%ҊA{ad_','s3PS˙KfnwyX3/','',0,'?'),('b4Zrcz{\ZX','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/containers/container_with_parent.js',0,'1H#bg7','1H#bg7','(TSnI+:&\\hnԻ','',0,'?'),('W%x\ZW2|up','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/containers/vc_column.js',0,'6MLgP]6D','6MLgP]6D','2@9O[w8$		Z','',0,'?'),('h[f@@KFBF\r','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/containers/vc_column_inner.js',0,'i,kYSM>17Xk','i,kYSM>17Xk','Ԯ)UǕ71[Z||8','',0,'?'),('=3c=','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/containers/vc_row.js',0,'H8fHwi','H8fHwi','W7ĩɵ3,ə`*u0\\ҨR','',0,'?'),('	U(g,','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/containers/vc_row_inner.js',0,'T#L4e:','T#L4e:','{S\'d,Q[[J{uG5CZ>*I','',0,'?'),('kxJр|n','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/containers/vc_section.js',0,'p[f.\"A__','p[f.\"A__','fz\\+k,?51o8Pg','',0,'?'),('פj:5','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/content/vc_column_text.js',0,'dJy>0VY#dc','dJy>0VY#dc','::8IWza.s\"\\)wȺ1','',0,'?'),('{ʇo+J','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/content/vc_flickr.js',0,'[Cm7eJ.\r/-','[Cm7eJ.\r/-','.&HOEjAq}ci8.r{:_0','',0,'?'),('`1 &*','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/content/vc_posts_slider.js',0,'\\Eg7C	}˧','\\Eg7C	}˧','^VWpUKwb','',0,'?'),('A18M8<n^D:','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/content/vc_raw_js.js',0,'/#*_C9n','/#*_C9n','coMT⍯@9@I=埴','',0,'?'),('kLY̣8','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/content/vc_toggle.js',0,'q]\Z-OQTN','q]\Z-OQTN','EfL*nGū>1.\0s@','',0,'?'),('6zrV','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/deprecated/tabs/vc_accordion.js',0,'YTu%9+\nqV','YTu%9+\nqV','ItH@AL_#o@*+7^˟','',0,'?'),('qG&߽p\\)\nu','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/deprecated/tabs/vc_accordion_tab.js',0,'ݷoA*','ݷoA*','UBh`/$}3@H|Jk^aT','',0,'?'),('Ջt	5','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/deprecated/tabs/vc_tab.js',0,'1xO\Zڍ','1xO\Zڍ','`$~z3(̀.8','',0,'?'),('.2Pxb|','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/deprecated/tabs/vc_tabs.js',0,'rY!!\"󏡌','rY!!\"󏡌','\nM[)xa[jwB6sOgY','',0,'?'),('?q{B֮=f','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/deprecated/tabs/vc_tour.js',0,'AyfKxh@PR','AyfKxh@PR','a@gDTÐjq}\n[\'A5ǈ','',0,'?'),('Or\nL94{','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/deprecated/vc_carousel.js',0,'}rI{Kvjmֆq','}rI{Kvjmֆq','Pnr~pLha^d&yi0','',0,'?'),('BxΞLynQBp_G','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/grids/vc_basic_grid.js',0,'`ۛ?w6~pc','`ۛ?w6~pc','6Ԁ0ieja?2<74','',0,'?'),('O\n7zs*>6OY','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/grids/vc_masonry_grid.js',0,'ӉxХA','ӉxХA','c(cV_X₋q~>ZGFhT$#','',0,'?'),('& 7r&4_wC|4','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/grids/vc_masonry_media_grid.js',0,'|iCE','|iCE','iљy[κ..$@/nR-{','',0,'?'),('ꖉ6\"t<FX7˕C','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/grids/vc_media_grid.js',0,'CEpʻځ٥,','CEpʻځ٥,','6HR]i#\n? u\"\0TX','',0,'?'),('.C٩49','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/images/vc_gallery.js',0,'io~&;\r]','io~&;\r]','.廿1Aua3vEu','',0,'?'),('qS>qzZ','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/images/vc_images_carousel.js',0,'-hpOw&','-hpOw&','n(RJB-XܘVe','',0,'?'),('/xN؊(j','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/images/vc_single_image.js',0,'Nk9y#*~','Nk9y#*~','/pԕGCW*=&}','',0,'?'),('HXF3~\ZZy','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/tta/tta_events.js',0,'-]ќ4|','-]ќ4|','Ti*/Cߛ銩YERi[f','',0,'?'),('P LZ藲','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/tta/vc_tta_accordion.js',0,'\r1j-','\r1j-','jlҀߎwSA޽x?*Zaz','',0,'?'),('5^n-ajAU7f','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/tta/vc_tta_pageable.js',0,'1/22f5=R','1/22f5=R','whlUg۶%dE\0\ZN_J)\Z','',0,'?'),('\"J!O(=\rp','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/tta/vc_tta_section.js',0,'iH1s?\Z','iH1s?\Z','\Z{T{z^eO2ܯ0H','',0,'?'),('Xf[CVAxlv','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/tta/vc_tta_tabs.js',0,'i>D?qs+','i>D?qs+','%zUF>*\Z/6¶ݰAdM%','',0,'?'),(' \ZZU\'4','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/tta/vc_tta_tour.js',0,'\nPS}W8s','\nPS}W8s','!&\r<rmIQ\"U@݊EWJ','',0,'?'),('.W j','wp-content/plugins/js_composer_salient/assets/js/frontend_editor/vendors/plugins/jwplayer.js',0,'p^39:\r^','p^39:\r^','6{ YY\"I	US6Q4T$','',0,'?'),('RTDHA]uGe','wp-content/plugins/js_composer_salient/assets/js/vendors/advanced_custom_fields.js',0,';gɦWc',';gɦWc','#o3mvl䡇PY0AOQN','',0,'?'),('ݾ30ӕ1','wp-content/plugins/js_composer_salient/assets/js/vendors/qtranslate_backend.js',0,'pb:S*\\/','pb:S*\\/','B#/9&6^:CKuw3I\ZQ','',0,'?'),('k%p#N','wp-content/plugins/js_composer_salient/assets/js/vendors/qtranslate_frontend.js',0,'H<ͼS','H<ͼS','_xbKY$Iq>LBd','',0,'?'),('gâ(E8efX','wp-content/plugins/js_composer_salient/assets/js/vendors/qtranslatex_backend.js',0,'Ei	','Ei	','ʶQlq[X}Vm','',0,'?'),('}ʬЎ)-','wp-content/plugins/js_composer_salient/assets/js/vendors/qtranslatex_frontend.js',0,'la\"ЬdP','la\"ЬdP','grnP=S,\rK-8pHm','',0,'?'),('3AJj㨱','wp-content/plugins/js_composer_salient/assets/js/vendors/woocommerce-add-to-cart.js',0,'+|I^U6\0&ߚ','+|I^U6\0&ߚ','zCHYWϰb{ML','',0,'?'),('E~bv!6h^','wp-content/plugins/js_composer_salient/assets/js/vendors/woocommerce.js',0,'$1qr]d','$1qr]d','\r};dT霸3hi#cf5X>','',0,'?'),('<1=Mr3qz','wp-content/plugins/js_composer_salient/assets/js/vendors/yoast.js',0,'dR3Kٔ1]T','dR3Kٔ1]T','+,q6<&M\r\"\"\nH','',0,'?'),('\"!\\O0&Za','wp-content/plugins/js_composer_salient/assets/lib/bower/ace-builds/src-min-noconflict/ace.js',0,'n`)=!.4l','n`)=!.4l','RVa^	fl8*<y0DQ\ZҭiT','',0,'?'),('ՕË#Sp','wp-content/plugins/js_composer_salient/assets/lib/bower/ace-builds/src-min-noconflict/mode-css.js',0,'w:qxo','w:qxo','lyD6DR*8\'<6;','',0,'?'),('f*SJ\"[ֵE','wp-content/plugins/js_composer_salient/assets/lib/bower/ace-builds/src-min-noconflict/theme-chrome.js',0,'U \0g[㵍','U \0g[㵍','>+_qk[eGg\\^5<Cr ','',0,'?'),('ge{0YIy\r','wp-content/plugins/js_composer_salient/assets/lib/bower/ace-builds/src-min-noconflict/worker-css.js',0,'|bt}Lsyjm','|bt}Lsyjm','c{q=1;DKQ\'AQ&O','',0,'?'),('UT],(lRHgh','wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/dist/js/bootstrap.min.js',0,'%ȳ%\r1^','%ȳ%\r1^','\0dISFF[]٥och`\n\ZA','',0,'?'),('EOEž0','wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/affix.min.js',0,'3JU(\\$7+','3JU(\\$7+','oˢ\rkA/w)jn\0X7k','',0,'?'),('!Pe\Zafi~','wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/alert.min.js',0,'ͥ0\ZF߱UF;','ͥ0\ZF߱UF;','\\!QXvryJm̠-Uu','',0,'?'),(' ŀA	\n ','wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/button.min.js',0,'P*s/\\0','P*s/\\0','BXVr/:0Du<','',0,'?'),('C_\\S,9QV','wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/carousel.min.js',0,'yJ#tp]','yJ#tp]','\n$(6<ba\"V@Z{','',0,'?'),('+2vj*4k_D(','wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/collapse.min.js',0,'^2J0c)p','^2J0c)p','0|c!؅h2l˾`f4','',0,'?'),('.FDa;','wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/dropdown.min.js',0,'CxM۰','CxM۰',']\0ѹ[{Uވ6Yۜ ','',0,'?'),('KplLnQ?^?','wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/modal.min.js',0,'J0Ϻ.DN','J0Ϻ.DN','x&rJmoct<vYd!;','',0,'?'),('\"<e,.>&E','wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/popover.min.js',0,'Fs)\Z;D\n>g|','Fs)\Z;D\n>g|','}DƴM {i; ]ion','',0,'?'),('cUuWrO$','wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/scrollspy.min.js',0,'ꃃtBWC8.6','ꃃtBWC8.6','-FǬD@WQU,g|l','',0,'?'),('4yo{	{tr c','wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/tab.min.js',0,'/禅M','/禅M','}Xxȓ&?\Z\n@cP|','',0,'?'),('԰V&D׿A','wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/tooltip.min.js',0,'$A߁\0jw','$A߁\0jw','lNUh\r\rV(q-qxG3_','',0,'?'),('W؏ʷ\rlp','wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/transition.min.js',0,'.}^ J','.}^ J','kw`g_Y\n\r!MtC \Z\\','',0,'?'),('m_u2ܨ','wp-content/plugins/js_composer_salient/assets/lib/bower/chartjs/Chart.min.js',0,'}g2gZSC','}g2gZSC','C&ZL̳[]Nw^','',0,'?'),('w0AjL{8','wp-content/plugins/js_composer_salient/assets/lib/bower/flexslider/jquery.flexslider-min.js',0,'CJXl:','CJXl:','t9⿔y\r=&A^l47\\','',0,'?'),('ӝO9dw@wĆ]','wp-content/plugins/js_composer_salient/assets/lib/bower/imagesloaded/imagesloaded.pkgd.min.js',0,'Qu2\\]2N~','Qu2\\]2N~','k3Y_Um/P!>O/Jo','',0,'?'),('\nme2','wp-content/plugins/js_composer_salient/assets/lib/bower/isotope/dist/isotope.pkgd.min.js',0,'U$UeC','U$UeC','cPrr:A|¬`\Zw\0TX','',0,'?'),('H|eFIN','wp-content/plugins/js_composer_salient/assets/lib/bower/jquery-ui-tabs-rotate/jquery-ui-tabs-rotate.min.js',0,'W\\޺x)','W\\޺x)','xbn`͓=yy8h!X','',0,'?'),('P֘kSQ','wp-content/plugins/js_composer_salient/assets/lib/bower/json-js/json2.min.js',0,'܅z\Zc.싔*','܅z\Zc.싔*','g<]yNcHς)OWW_#tI','',0,'?'),('kRϰ^}m\r&','wp-content/plugins/js_composer_salient/assets/lib/bower/lessjs/dist/less.min.js',0,'MM	F*n','MM	F*n','.9&\\:uHZ*-﮴D','',0,'?'),('j``3$,','wp-content/plugins/js_composer_salient/assets/lib/bower/masonry/dist/masonry.pkgd.min.js',0,'Gւp4','Gւp4','i̏N\rh	9fK)6G-','',0,'?'),('bQpJb','wp-content/plugins/js_composer_salient/assets/lib/bower/nivoslider/jquery.nivo.slider.pack.js',0,'w{mFme','w{mFme','[b҆):M:GH@','',0,'?'),('Y!Ll','wp-content/plugins/js_composer_salient/assets/lib/bower/progress-circle/ProgressCircle.min.js',0,']{~Z$',']{~Z$','MBbk&mMnLd3큰','',0,'?'),('R[y(&O1','wp-content/plugins/js_composer_salient/assets/lib/bower/scrollTo/jquery.scrollTo.min.js',0,'4$Vc%:-H8(','4$Vc%:-H8(','TJO%hhv\0Q@),OHu,e','',0,'?'),('A%/iji1,','wp-content/plugins/js_composer_salient/assets/lib/bower/skrollr/dist/skrollr.min.js',0,'Ƚí7>_-','Ƚí7>_-','/kkq8ү6gh0CD۪3tM','',0,'?'),('Ҵ}8qzSz','wp-content/plugins/js_composer_salient/assets/lib/bower/twbs-pagination/jquery.twbsPagination.min.js',0,'psċskј','psċskј','m+\"\0G+1=F9?i@;0\\A','',0,'?'),('ɗ6@gg&','wp-content/plugins/js_composer_salient/assets/lib/bower/vcIconPicker/jquery.fonticonpicker.min.js',0,'y&VLlq<G\"U<','y&VLlq<G\"U<','\rFm7Ev?:,?O\0EqEL)','',0,'?'),('.c*AZ3ivnG','wp-content/plugins/js_composer_salient/assets/lib/bower/zoom/jquery.zoom.min.js',0,'rߞr@\n~8\n','rߞr@\n~8\n','hJRvu͕RX[/#','',0,'?'),('zAZzq\'};','wp-content/plugins/js_composer_salient/assets/lib/owl-carousel2-dist/owl.carousel.min.js',0,'2Hu9dO','2Hu9dO','m5aWM5oRay','',0,'?'),('cE/lQg','wp-content/plugins/js_composer_salient/assets/lib/php.default/php.default.min.js',0,'&K%wD{','&K%wD{','=6Jj&4,b55Ĝ\\v','',0,'?'),('KLR\ndi','wp-content/plugins/js_composer_salient/assets/lib/prettyphoto/js/jquery.prettyPhoto.min.js',0,'^KU$\0ST	*q','^KU$\0ST	*q','*wWʓ\nf#âc/>\rOl','',0,'?'),('^ϴ^\0\\','wp-content/plugins/js_composer_salient/assets/lib/vc-tta-autoplay/vc-tta-autoplay.min.js',0,'6oT\0\0(','6oT\0\0(','/ι(6\";k$U(8ym*\\˾','',0,'?'),('. ٻ(%g','wp-content/plugins/js_composer_salient/assets/lib/vc_accordion/vc-accordion.min.js',0,'cXud\r9SNݽ}','cXud\r9SNݽ}','\'W蚩ݡ}\"tEwZ','',0,'?'),('#cohU_fk','wp-content/plugins/js_composer_salient/assets/lib/vc_carousel/js/transition.min.js',0,'kGE`Zb','kGE`Zb','\Z&tz)0/ڹT','',0,'?'),('Km)[','wp-content/plugins/js_composer_salient/assets/lib/vc_carousel/js/vc_carousel.min.js',0,'Qp8\r(70uJ','Qp8\r(70uJ','Tu/lO@{CQ<v\\\r\"','',0,'?'),('\n,r}v#T!{','wp-content/plugins/js_composer_salient/assets/lib/vc_chart/jquery.vc_chart.min.js',0,']19-\'RVD',']19-\'RVD','`\')0Tc*ss','',0,'?'),('( 0','wp-content/plugins/js_composer_salient/assets/lib/vc_image_zoom/vc_image_zoom.min.js',0,'\neU-,','\neU-,','<Y\Z}hTD:NbH_','',0,'?'),('y=l鞤\r=l','wp-content/plugins/js_composer_salient/assets/lib/vc_line_chart/vc_line_chart.min.js',0,'2ʢ޳+L','2ʢ޳+L','vrFRU3vpw)~|d!n','',0,'?'),('FeIhvˏ~2','wp-content/plugins/js_composer_salient/assets/lib/vc_round_chart/vc_round_chart.min.js',0,'LM\\\0~F','LM\\\0~F','kJa]}ݒ\0wr0L5ƵQ-','',0,'?'),('{č%CHg','wp-content/plugins/js_composer_salient/assets/lib/vc_tabs/vc-tabs.min.js',0,'+\nb*','+\nb*','n3Y@gRqbN꫚<?','',0,'?'),('LT17M_Em','wp-content/plugins/js_composer_salient/assets/lib/waypoints/waypoints.min.js',0,'X@p>j','X@p>j','GA-ESwkhNZ>?','',0,'?'),('eN:d+D_U z','wp-content/plugins/js_composer_salient/config/buttons/shortcode-vc-btn.php',0,'Y`.\"P','Y`.\"P','.Zy<KH]YySwh@HZd3','',0,'?'),('Ԑ\r|{~','wp-content/plugins/js_composer_salient/config/buttons/shortcode-vc-cta.php',0,'=T\0[j','=T\0[j','PZ?BXCdÒkWcp:{','',0,'?'),('Z^M]o:N','wp-content/plugins/js_composer_salient/config/containers/shortcode-vc-column-inner.php',0,'%Ph#ʦ*k{m','%Ph#ʦ*k{m','=ubn ŷAU*nUE6L޻\"','',0,'?'),('(.u;LI/>','wp-content/plugins/js_composer_salient/config/containers/shortcode-vc-column.php',0,';s2m8 }',';s2m8 }','ѧd.ʁxNbLL?CjC~','',0,'?'),('l,\'ez`]O','wp-content/plugins/js_composer_salient/config/containers/shortcode-vc-row-inner.php',0,'d$)ƾMɪ','d$)ƾMɪ',':jd*Y-.i	[5*dnF1B','',0,'?'),('M\0n`O(','wp-content/plugins/js_composer_salient/config/containers/shortcode-vc-row.php',0,'s\Z/uQ8w#\\','s\Z/uQ8w#\\','-nZt9/=H)+=y\0]I','',0,'?'),('Z^v>kE','wp-content/plugins/js_composer_salient/config/containers/shortcode-vc-section.php',0,'4]ꅾom$%l','4]ꅾom$%l','K*J]EؑLھ0OR\0NF/','',0,'?'),('e4EHZ6g_fU','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-column-text.php',0,'B6u=z/>%','B6u=z/>%','/#8u r\n14O|#9lu','',0,'?'),('4ր\0M9H;a','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-custom-heading.php',0,'Дyݙtj','Дyݙtj','440Ŷo$(>^^jTzL40','',0,'?'),('9IP}H','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-empty-space.php',0,'v9	KapL_dJk','v9	KapL_dJk','H¦b#\nj[-\',9&d:׋','',0,'?'),(')63A8','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-flickr.php',0,'`M\0;|/','`M\0;|/','K׋P\Z6sDɢ8\Zo@','',0,'?'),('it0\'ym0\n','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-gallery.php',0,'>d\'\0jܟi','>d\'\0jܟi','WT1,PT\Zi}̯1N7\0}7','',0,'?'),('p>}I	n','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-gmaps.php',0,'nڙkSKM^(@֊','nڙkSKM^(@֊','\r>t8ڦ|rrQo8h魞\'','',0,'?'),('l1>j{Ibb','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-icon.php',0,'^sx6Ի>~h','^sx6Ի>~h','KKKQ}Ju&!P})D','',0,'?'),('|7cE ','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-images-carousel.php',0,'#E+[$','#E+[$','Vy\n_IJ66\n89z~XF','',0,'?'),('%͵z0\Z','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-line-chart.php',0,'1ƺ.~rԸ','1ƺ.~rԸ','L36ߎ!nIba/;\nؾg!','',0,'?'),('4Wsx`','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-message.php',0,'_׬9xT*\\','_׬9xT*\\','|e;>Eݎ~6Q(ӎ5','',0,'?'),('9@ [T5<','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-pie.php',0,',IB\'ja(6*s',',IB\'ja(6*s','DPҊM8ԾM[1VM;','',0,'?'),('R2XRGW\Z;<v','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-posts-slider.php',0,'lAYS0[{','lAYS0[{','igy(A.\"%\0n','',0,'?'),('yqљYۺg','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-progress-bar.php',0,'\'Mj%ܬh˔]V}','\'Mj%ܬh˔]V}','g9wFҋWӝH\n','',0,'?'),('=(+Z-','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-round-chart.php',0,'0_3hX0_t,','0_3hX0_t,','|92Xf(2\'~:_{bqu','',0,'?'),('>z70R','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-separator.php',0,'\'\"\n<r*84\Z','\'\"\n<r*84\Z','{T4i:+\n/+V%','',0,'?'),('Xq,;','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-single-image.php',0,'ɋŪ|<','ɋŪ|<','W8\ZcV \\z5ylъ=','',0,'?'),(':Bb`\\_','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-text-separator.php',0,'\"kIi_2q','\"kIi_2q','{\'Y]䕤lQod\0b0','',0,'?'),('y%xHL','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-toggle.php',0,'AKiKV[3w','AKiKV[3w','oِ$ɭnr71!\r\noK','',0,'?'),('zl!҆','wp-content/plugins/js_composer_salient/config/content/shortcode-vc-video.php',0,'m(:E\Zh,JP5v','m(:E\Zh,JP5v','J0~z;9[&B/q)_>]','',0,'?'),('l?nB3a','wp-content/plugins/js_composer_salient/config/content/vc-custom-heading-element.php',0,'14X菍Z9','14X菍Z9','䧔b[Ҍ%VE','',0,'?'),('([[œ','wp-content/plugins/js_composer_salient/config/content/vc-icon-element.php',0,'Zq3}RX','Zq3}RX','Po<rudA0-Q%XgE߄zZ','',0,'?'),('\'Yh5䧴','wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-accordion-tab.php',0,'`D$:}','`D$:}','|A\0blF[<W\rROLb','',0,'?'),('\Z4,\'«c','wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-accordion.php',0,'ңsjQ$u7Q','ңsjQ$u7Q','/ŏWe)6ģDO39I>^','',0,'?'),(')>VEG','wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-button.php',0,'yK.MזI&','yK.MזI&','$ksB:Az8ʹZZ','',0,'?'),('b$38qfV3%','wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-button2.php',0,'o̳c;uz','o̳c;uz','CH\0eI	P|m\Z*,l','',0,'?'),('n9v@F','wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-carousel.php',0,'\"\r}_0$/+','\"\r}_0$/+','Ʀѓi=9},[wēe.','',0,'?'),('A(\Z]ւAj','wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-cta-button.php',0,'x_\\|\\N','x_\\|\\N','|ӯ\\J܎(MUL\0','',0,'?'),('`$EɼΣ?S6','wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-cta-button2.php',0,',B`\"vb',',B`\"vb','y\rƨ7HHFG\"zB[0.XF@','',0,'?'),('Hb9d|zis','wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-posts-grid.php',0,'添#\nᙖ7\'_','添#\nᙖ7\'_','$w%EK$맍kEwV8','',0,'?'),('#f\'b_xqe','wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-tab.php',0,'gUR~0Ex)','gUR~0Ex)','Љ]\\LL!OgT	̍՚','',0,'?'),('ާ9R0ߑ','wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-tabs.php',0,'n;}?K{-&U','n;}?K{-&U','nxAt0Wڸ קΥ`*w','',0,'?'),('pv#	2g','wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-tour.php',0,'ERDL`}','ERDL`}','7TI1Zx\rb;U9[n\"PR','',0,'?'),('	M.dKIl','wp-content/plugins/js_composer_salient/config/grids/class-vc-grids-common.php',0,'>\\<߻AT','>\\<߻AT','\nucA	b~GQă=\Z','',0,'?'),('F<SUIXd.','wp-content/plugins/js_composer_salient/config/grids/shortcode-vc-basic-grid.php',0,'-2DD]]','-2DD]]','ݸ\")L51o3K','',0,'?'),('qomjM`1','wp-content/plugins/js_composer_salient/config/grids/shortcode-vc-masonry-grid.php',0,'\ZZ>-QK}n','\ZZ>-QK}n','+)Qux^AL,-8L\ZH\nO\r','',0,'?'),('S`E)~i\0LU','wp-content/plugins/js_composer_salient/config/grids/shortcode-vc-masonry-media-grid.php',0,'bT((東','bT((東','r#f$82%M>:Zo{<','',0,'?'),('^ew;P4i?','wp-content/plugins/js_composer_salient/config/grids/shortcode-vc-media-grid.php',0,'ׂK虤_','ׂK虤_',',HoY<h@=-t.5IY)','',0,'?'),('Ny,&[F}','wp-content/plugins/js_composer_salient/config/grids/vc-grids-functions.php',0,'kМm D','kМm D','~Sh=bLaW`J&HO}k','',0,'?'),('<v՘Н_d4','wp-content/plugins/js_composer_salient/config/lean-map.php',0,'Aq/Qs.N|6','Aq/Qs.N|6','ě/W\"X\Z\nsI2g5[','',0,'?'),('y)|MxC>\"*z','wp-content/plugins/js_composer_salient/config/social/shortcode-vc-facebook.php',0,'7\nB2ꁭf9','7\nB2ꁭf9','S;_\\$\"VUu;','',0,'?'),('(Y\'aj)j','wp-content/plugins/js_composer_salient/config/social/shortcode-vc-googleplus.php',0,'K[@Vj#{','K[@Vj#{','P/mۼl*?=\0v ךbe}B','',0,'?'),('|/hSfhS','wp-content/plugins/js_composer_salient/config/social/shortcode-vc-pinterest.php',0,'cAՓX','cAՓX','K蓸vNa2}b¿','',0,'?'),('kĸ!XJY1ն','wp-content/plugins/js_composer_salient/config/social/shortcode-vc-tweetmeme.php',0,'Oj!_,R35;^V','Oj!_,R35;^V','-b\"=88PwcѬ&C-Q\\','',0,'?'),('ײV!4QY','wp-content/plugins/js_composer_salient/config/structure/shortcode-vc-raw-html.php',0,'fMlt%$)Ж+','fMlt%$)Ж+','	M\Zl{|E>29b{<B','',0,'?'),('7pQs~RI','wp-content/plugins/js_composer_salient/config/structure/shortcode-vc-raw-js.php',0,'0~}Q#v','0~}Q#v','-9*0|3B:>|Hte\'d.','',0,'?'),('}K8L֖','wp-content/plugins/js_composer_salient/config/structure/shortcode-vc-widget-sidebar.php',0,'uhh4ue','uhh4ue','[a7¯MD1Z}\\awi','',0,'?'),('E%9(liHT/&','wp-content/plugins/js_composer_salient/config/templates.php',0,'3Ҟ\r7p2','3Ҟ\r7p2','>+0tN.w=\"\0OA','',0,'?'),('haǬ`','wp-content/plugins/js_composer_salient/config/tta/shortcode-vc-tta-accordion.php',0,'wF`o}D','wF`o}D','dRq|:nB\r yfv͛R\r','',0,'?'),('%[䵹P11','wp-content/plugins/js_composer_salient/config/tta/shortcode-vc-tta-pageable.php',0,']Ʒd)',']Ʒd)','Q{Y,\\[Bi)cqWDxu*IK$','',0,'?'),('~~_n\Z','wp-content/plugins/js_composer_salient/config/tta/shortcode-vc-tta-section.php',0,'m=X46','m=X46','M\Zy\"tǜtֶrP=dfS','',0,'?'),('tUj&޸8m>','wp-content/plugins/js_composer_salient/config/tta/shortcode-vc-tta-tabs.php',0,'e8so+>','e8so+>','j(݇-r^g&l}L','',0,'?'),('쉞yw3jVrNa','wp-content/plugins/js_composer_salient/config/tta/shortcode-vc-tta-tour.php',0,'ʘ<)$vn','ʘ<)$vn','vI6]#%C5fpoR5@*','',0,'?'),('Kbr)YZF','wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-archives.php',0,'r(fe5$e','r(fe5$e','ZXTI%+$gm+\0rK8','',0,'?'),('Ǧs~S','wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-calendar.php',0,'ktdZ<s','ktdZ<s','FP2QET;~/P4~,','',0,'?'),('ˬ9/dQ{`','wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-categories.php',0,'ck,\nFa','ck,\nFa','l)ۧ<<?ʮ*Ū\nu4:','',0,'?'),(';HنK7','wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-custommenu.php',0,'kdrx$Ue','kdrx$Ue',':a5w>^#t45,','',0,'?'),('EWBÝ\\@','wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-links.php',0,'?]Ђ+','?]Ђ+','Z>O~%`˖S.\Z%Y','',0,'?'),('t_C*@RN63D','wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-meta.php',0,'0KGzĨ4\'','0KGzĨ4\'','P8lЧ6;d\\_','',0,'?'),('cF7Y0\'W','wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-pages.php',0,'\n\"s Kၥu\0S','\n\"s Kၥu\0S','~xz]\"=	&>B\"#\nJ','',0,'?'),('F~k','wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-posts.php',0,'`(\'vэ','`(\'vэ','3=rmx}DX	','',0,'?'),('|iHS','wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-recentcomments.php',0,'KֲS1\r0','KֲS1\r0','\"<\\S?J>i jG','',0,'?'),('4crf{\0','wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-rss.php',0,'rRdZ=JZ\'','rRdZ=JZ\'','րA@<jk?C!\rQtԿ','',0,'?'),('znH=2u\0r','wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-search.php',0,'2g[Z','2g[Z','ZLʂM+mğ\'Tv8jц','',0,'?'),('W\rv/D','wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-tagcloud.php',0,'Uقu@0?2','Uقu@0?2','USB\ZDN* J$5B3X','',0,'?'),('$tvndK!--','wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-text.php',0,'sN5dSS','sN5dSS','].e~=RT~>3+nG&~q','',0,'?'),('j[B;M>10','wp-content/plugins/js_composer_salient/include/autoload/backend-editor-ie.php',0,' NPOqq4',' NPOqq4','\'Ԇ}QfS_[ﭬ/\ZhiWԬ),ʒ','',0,'?'),('[Bz$','wp-content/plugins/js_composer_salient/include/autoload/bc-access-rules-4.8.php',0,'+k[X\Zq!','+k[X\Zq!','+FƗ\ra*t[fa\ri[߰XB','',0,'?'),('E.qh\0iYM1','wp-content/plugins/js_composer_salient/include/autoload/bc-multisite-options.php',0,']u* FLS,',']u* FLS,','oF`Wاp`@UxzM{Q','',0,'?'),('3FicR^;leބ','wp-content/plugins/js_composer_salient/include/autoload/class-vc-settings-presets.php',0,'{=_$+ki','{=_$+ki','HDdZIa3t=}i]/dq','',0,'?'),('|9,GGu;OW','wp-content/plugins/js_composer_salient/include/autoload/class-vc-vendor-presets.php',0,'>:I]8߱G','>:I]8߱G','\Z>JgN8@ӡEUdK]_d6','',0,'?'),('Omhc)\n\"\03','wp-content/plugins/js_composer_salient/include/autoload/frontend-editor-ie.php',0,',ڰ_܊ְS',',ڰ_܊ְS','dJlG9]\nB|]/Utv','',0,'?'),('.4NV|mk','wp-content/plugins/js_composer_salient/include/autoload/hook-vc-grid.php',0,'JZxy⃇','JZxy⃇','?07P\0]TT޿e','',0,'?'),('7s~mChB\ZfDM','wp-content/plugins/js_composer_salient/include/autoload/hook-vc-iconpicker-param.php',0,'	#mUs,G%','	#mUs,G%','$8%M)e\0\'8?','',0,'?'),('V$(B5}','wp-content/plugins/js_composer_salient/include/autoload/hook-vc-message.php',0,'#hvLcUU','#hvLcUU','W99&UD0ctw0Ѿ,+$>','',0,'?'),('}?ߢyXWY$','wp-content/plugins/js_composer_salient/include/autoload/hook-vc-pie.php',0,'҅18\rՂHE','҅18\rՂHE','%)	^uSEfo;D;BϹx\"f','',0,'?'),('?VBiBSG|BN','wp-content/plugins/js_composer_salient/include/autoload/hook-vc-progress-bar.php',0,'PNs\'','PNs\'','cǇ)Qqg]\\KKQB','',0,'?'),('O\nV員\r','wp-content/plugins/js_composer_salient/include/autoload/hook-vc-wp-text.php',0,'h4}DYG','h4}DYG','3QQ	PD1}f8Ph,emN{','',0,'?'),('`t&qL','wp-content/plugins/js_composer_salient/include/autoload/params/hidden.php',0,'Q%Po\Z%E*','Q%Po\Z%E*','xAIîYX,{ކZۛ[S','',0,'?'),('mY\n','wp-content/plugins/js_composer_salient/include/autoload/params/vc_grid_item.php',0,'fS8/','fS8/','HkJ5VKϠ5Pʹ(','',0,'?'),('n/86V/@Hx','wp-content/plugins/js_composer_salient/include/autoload/params-to-init.php',0,'mk_8u&qv','mk_8u&qv','.\'Х9LxD*wn<%aJfO','',0,'?'),('1#>','wp-content/plugins/js_composer_salient/include/autoload/post-type-default-template.php',0,'=2.C!l$]c','=2.C!l$]c','g:d6\"{.O\"n','',0,'?'),('VaI,j:Uc','wp-content/plugins/js_composer_salient/include/autoload/ui-vc-pointers.php',0,'Hqݮ:&	p','Hqݮ:&	p','I4ḴA8oC	n\'n29','',0,'?'),('#Eu\n)','wp-content/plugins/js_composer_salient/include/autoload/vc-grid-item-editor.php',0,'NCFAo^','NCFAo^','b@ȘO.0\n@j4׼&3E^j','',0,'?'),('$PmKg^E','wp-content/plugins/js_composer_salient/include/autoload/vc-image-filters.php',0,'T3tA1?xCp','T3tA1?xCp','ӁU<\r7C]fVuu*G?','',0,'?'),('8yL(UFރGT','wp-content/plugins/js_composer_salient/include/autoload/vc-pages/automapper.php',0,'®fAט3&-|q','®fAט3&-|q','߼f_H\"X OBEg\0*ZY','',0,'?'),('u\'Tbx','wp-content/plugins/js_composer_salient/include/autoload/vc-pages/page-custom-css.php',0,'\'}xĆ[-}0','\'}xĆ[-}0','nm\'mfLຘ)X_}a','',0,'?'),('߁2.kK-d','wp-content/plugins/js_composer_salient/include/autoload/vc-pages/page-design-options.php',0,'%;݃L|U','%;݃L|U','.)\")Ȳ|~=\\[]\06j>!','',0,'?'),('Yx,oF','wp-content/plugins/js_composer_salient/include/autoload/vc-pages/page-role-manager.php',0,'!>oxaq_','!>oxaq_','\"̥	xOr4)͞6H$z:','',0,'?'),('M#','wp-content/plugins/js_composer_salient/include/autoload/vc-pages/pages.php',0,'hdI[>_','hdI[>_','ZgK;q#x ,/6','',0,'?'),('+1Z','wp-content/plugins/js_composer_salient/include/autoload/vc-pages/settings-tabs.php',0,'>j_ܨL`|','>j_ܨL`|',')&CL)\Z1:bmt','',0,'?'),('Dmg]YV ','wp-content/plugins/js_composer_salient/include/autoload/vc-pages/welcome-screen.php',0,'`/M7L\\XL','`/M7L\\XL','\Zl<ÝI2xNʼsH;','',0,'?'),('&$ʱ\n_','wp-content/plugins/js_composer_salient/include/autoload/vc-pointers-backend-editor.php',0,'(\"1w','(\"1w','`<=Z|Vz5f}tfv@d','',0,'?'),('0v\'Y6r2\\q','wp-content/plugins/js_composer_salient/include/autoload/vc-pointers-frontend-editor.php',0,'hmN;.j$\'','hmN;.j$\'','=tBl\\z\\6ҷԖ\r(','',0,'?'),('o()Ymm,','wp-content/plugins/js_composer_salient/include/autoload/vc-settings-presets.php',0,'KÌZk.t;C5\Z','KÌZk.t;C5\Z','u\Z4izQBra~H','',0,'?'),('[jUnb','wp-content/plugins/js_composer_salient/include/autoload/vc-shortcode-autoloader.php',0,'>]͟Av7h59','>]͟Av7h59','q3i\"39sn/\n%o틁N5Y#','',0,'?'),('߾M}̖䈥u','wp-content/plugins/js_composer_salient/include/autoload/vc-single-image.php',0,'HQ\"\\9?,2','HQ\"\\9?,2','Djhv@l~E_edh','',0,'?'),(':V34\0.5VC3','wp-content/plugins/js_composer_salient/include/autoload/vendors/acf.php',0,'6ͥ9⭨|pX','6ͥ9⭨|pX','dϚ3%&Ri$.pv豚@vۤ','',0,'?'),('>p\0=Ö:','wp-content/plugins/js_composer_salient/include/autoload/vendors/cf7.php',0,'x\'e&`։G','x\'e&`։G','nd&NZ=\'㨏{W컕Z','',0,'?'),('ѕn;$','wp-content/plugins/js_composer_salient/include/autoload/vendors/gravity_forms.php',0,'auKf@k<','auKf@k<','vtf[Hwo(','',0,'?'),(',&dx\'ruf','wp-content/plugins/js_composer_salient/include/autoload/vendors/jwplayer.php',0,'6ZuwrL!.','6ZuwrL!.','Ӝ|Z5Ż~j8F\n	e','',0,'?'),('R\')@ʎ\"rҶ]','wp-content/plugins/js_composer_salient/include/autoload/vendors/layerslider.php',0,'{+a9','{+a9','W:_pd> PkZg','',0,'?'),('0!\0G⋅v','wp-content/plugins/js_composer_salient/include/autoload/vendors/mqtranslate.php',0,'hŽ+&\rI5','hŽ+&\rI5','X3I+gy$\n EOza','',0,'?'),('Fu`>zp@,s: ','wp-content/plugins/js_composer_salient/include/autoload/vendors/ninja_forms.php',0,'[_ƑG','[_ƑG','xZE*(Kn@ݔXOhc=B/','',0,'?'),('5_ M[qR4','wp-content/plugins/js_composer_salient/include/autoload/vendors/qtranslate-x.php',0,'&\ZFw=s','&\ZFw=s','H`꨼|s;草5ƻ','',0,'?'),('-Jps2','wp-content/plugins/js_composer_salient/include/autoload/vendors/qtranslate.php',0,'_wڙZa}e','_wڙZa}e','S\'>A;R/˕AlV2u\\','',0,'?'),('p]0\"!d^','wp-content/plugins/js_composer_salient/include/autoload/vendors/revslider.php',0,'>]̪=swZA','>]̪=swZA','y,龊W[l`F	UkgZ','',0,'?'),('>FղG','wp-content/plugins/js_composer_salient/include/autoload/vendors/woocommerce.php',0,'XM(zZuɗE','XM(zZuɗE','\"	tEJ-Dɗ\r*Ǩ:Nv>k/V,','',0,'?'),('\n6ۓ$wX','wp-content/plugins/js_composer_salient/include/autoload/vendors/wp_customize.php',0,'ElIaFC٤','ElIaFC٤','J)(!=$GSLDGmnK.','',0,'?'),(']	ɆNn','wp-content/plugins/js_composer_salient/include/autoload/vendors/wpml.php',0,'@eʷNgc','@eʷNgc','È~vbYM|\n+]>Q','',0,'?'),('\n`[1U7','wp-content/plugins/js_composer_salient/include/autoload/vendors/yoast_seo.php',0,'+N DIs%-\0','+N DIs%-\0','SQp$FW988<n!qb<','',0,'?'),(',Q!/ziYb','wp-content/plugins/js_composer_salient/include/classes/core/access/abstract-class-vc-access.php',0,'nH9}G\r([','nH9}G\r([','/M%A:ZqЅjlNZI\nj8','',0,'?'),('&~~}]&','wp-content/plugins/js_composer_salient/include/classes/core/access/class-vc-current-user-access-controller.php',0,'HM+jN+sO','HM+jN+sO','fKPhŒxی{Ps!\Ze6W~g','',0,'?'),('\rYoq\0\"','wp-content/plugins/js_composer_salient/include/classes/core/access/class-vc-current-user-access.php',0,'@MrRVq[','@MrRVq[','	qvI9\Z9-','',0,'?'),('V;@Bh','wp-content/plugins/js_composer_salient/include/classes/core/access/class-vc-role-access-controller.php',0,'{-/E!;yF','{-/E!;yF','!OI`<K康ܽCr|Z;7}','',0,'?'),('D{D	AeG','wp-content/plugins/js_composer_salient/include/classes/core/access/class-vc-role-access.php',0,'1	+XjbD','1	+XjbD','Ҷs|\0eQD^^v=','',0,'?'),('UX0?Gn5','wp-content/plugins/js_composer_salient/include/classes/core/class-vc-base.php',0,'g\n\n=','g\n\n=','&껥\'?ԮeԳ*8Zs \\Ͱ\'','',0,'?'),('˓Rl*F+','wp-content/plugins/js_composer_salient/include/classes/core/class-vc-mapper.php',0,'a0pMϢb','a0pMϢb','rb>+skFV q՛{L','',0,'?'),('a\"ү1BM','wp-content/plugins/js_composer_salient/include/classes/core/class-vc-page.php',0,'%lw̻','%lw̻','gGnJ=~71n%u%Z[*&ֲDd','',0,'?'),('d,\Z.','wp-content/plugins/js_composer_salient/include/classes/core/class-vc-pages-group.php',0,'(h3\0$WPZr','(h3\0$WPZr','UUA[ʂ/ВKjKX`b','',0,'?'),('$$\0','wp-content/plugins/js_composer_salient/include/classes/core/class-vc-post-admin.php',0,'\ZR6,]ֺ','\ZR6,]ֺ','nw|jz·\">UD','',0,'?'),('Za1btk@hH','wp-content/plugins/js_composer_salient/include/classes/core/class-vc-shared-library.php',0,'k^ǡRW1Y','k^ǡRW1Y','+*tYVD_P門\r1pC*','',0,'?'),('&1ߓd2\0','wp-content/plugins/js_composer_salient/include/classes/core/class-vc-sort.php',0,'HEfH,','HEfH,','D1IC\\nFsJ$?g{v','',0,'?'),('2bNm','wp-content/plugins/js_composer_salient/include/classes/core/class-wpb-map.php',0,'Ul.Q`B','Ul.Q`B','B0&ӽbB+Z\\P12[\\\ZJG','',0,'?'),('1\nqb','wp-content/plugins/js_composer_salient/include/classes/core/interfaces.php',0,'usՋ)!u','usՋ)!u','Śv[N`2Jv=_R','',0,'?'),(':A=gV','wp-content/plugins/js_composer_salient/include/classes/core/shared-templates/class-vc-shared-templates.php',0,'KʛľLزvU','KʛľLزvU','3O_ĬM:O ;Ve^x\0','',0,'?'),('gS8gp~4BpBlx','wp-content/plugins/js_composer_salient/include/classes/core/shared-templates/importer/parsers.php',0,'DUy.\n]B','DUy.\n]B','4Z6x}Tmr0MF@VΖ','',0,'?'),('[SaX}mɝXv','wp-content/plugins/js_composer_salient/include/classes/core/shared-templates/importer/plugin.php',0,'\0J6ˋ^6','\0J6ˋ^6','F)I?A:EODh{LredQ','',0,'?'),('?OQH!M|| 3','wp-content/plugins/js_composer_salient/include/classes/core/shared-templates/importer/wordpress-importer.php',0,'yH|²','yH|²','zkgaSinht(Jָp\";\rN2','',0,'?'),('ԡ6}ڦ','wp-content/plugins/js_composer_salient/include/classes/editors/class-vc-backend-editor.php',0,'|q5_f\"','|q5_f\"','cf5mT{<?ׅV\Z?Ek͚','',0,'?'),('5A{@M.zm%d,U','wp-content/plugins/js_composer_salient/include/classes/editors/class-vc-edit-form-fields.php',0,'mHԉ1f$(','mHԉ1f$(','\"ڔK1/~d)9[Jt=q0T','',0,'?'),(']b	g','wp-content/plugins/js_composer_salient/include/classes/editors/class-vc-frontend-editor.php',0,'e\0	l','e\0	l','o\";mσ\'*N</	]sZ5	','',0,'?'),('@bpdQd','wp-content/plugins/js_composer_salient/include/classes/editors/navbar/class-vc-navbar-frontend.php',0,'\'퉼(','\'퉼(','\"n,x9[_annmŚa{}Ɯ','',0,'?'),('U,e,','wp-content/plugins/js_composer_salient/include/classes/editors/navbar/class-vc-navbar.php',0,'͔\nOi	HGRj','͔\nOi	HGRj','9철=@|m!LWS؜OHT','',0,'?'),('aby\"1x','wp-content/plugins/js_composer_salient/include/classes/editors/popups/class-vc-add-element-box.php',0,'/(.:{','/(.:{','b.Q!8$oł`\"k$]','',0,'?'),(',>>A|/ ','wp-content/plugins/js_composer_salient/include/classes/editors/popups/class-vc-edit-layout.php',0,'SWK2Ȗ,u','SWK2Ȗ,u','__d#F~Pl͏H>','',0,'?'),('3HA`Л','wp-content/plugins/js_composer_salient/include/classes/editors/popups/class-vc-post-settings.php',0,'jO֕21','jO֕21','d}cuYqѺX#U~Eƈu','',0,'?'),('+LH_˻31\"Q','wp-content/plugins/js_composer_salient/include/classes/editors/popups/class-vc-shortcode-edit-form.php',0,'+~P_XқeE','+~P_XқeE','H6~{E9S@PI2','',0,'?'),('sՕHbqUx4','wp-content/plugins/js_composer_salient/include/classes/editors/popups/class-vc-templates-editor.php',0,'8xW\rX`?VLI','8xW\rX`?VLI','XE)gyVI?tMZNዞsm','',0,'?'),('=qIk~{','wp-content/plugins/js_composer_salient/include/classes/editors/popups/class-vc-templates-panel-editor.php',0,'ʭ>\Z','ʭ>\Z','5$2_Q\n#D.f	\n%>p2','',0,'?'),(':׼\nt','wp-content/plugins/js_composer_salient/include/classes/settings/class-vc-automapper.php',0,';&^oP	l',';&^oP	l','F\n@_ϗ?,,UُΝ','',0,'?'),('Kߠ_O7K','wp-content/plugins/js_composer_salient/include/classes/settings/class-vc-license.php',0,'D0\\b͝9W@','D0\\b͝9W@','mӪeXsi<ިxOI*yL__F','',0,'?'),('O@y=S','wp-content/plugins/js_composer_salient/include/classes/settings/class-vc-roles.php',0,'a}+c!r','a}+c!r','t:w**4*Q77$݆Y','',0,'?'),('1D\0FdTt','wp-content/plugins/js_composer_salient/include/classes/settings/class-vc-settings.php',0,'o.0\rz_5.\0','o.0\rz_5.\0','P$R,x\r@Աt jzs<?v','',0,'?'),('Wci?(','wp-content/plugins/js_composer_salient/include/classes/shortcodes/example.php',0,'\r:pfe!I','\r:pfe!I','<{Kxﳖ1ҡ\n~ǅa&h`','',0,'?'),('K~w\n`5','wp-content/plugins/js_composer_salient/include/classes/shortcodes/layerslider-vc.php',0,'@LzsTڛj','@LzsTڛj','0O(a_7TXWؖ)\';qC	','',0,'?'),('Cŝ]nRR','wp-content/plugins/js_composer_salient/include/classes/shortcodes/paginator/class-vc-pageable.php',0,'2ɮ~9 K','2ɮ~9 K','LBb5NS8?V}AM0ŷ_\n','',0,'?'),('X;(ji','wp-content/plugins/js_composer_salient/include/classes/shortcodes/rev-slider-vc.php',0,'>\Z̓{\\W','>\Z̓{\\W','8wcSS\'=~*7,f5\\\r','',0,'?'),('g85e','wp-content/plugins/js_composer_salient/include/classes/shortcodes/shortcodes.php',0,'a/<ۢ>','a/<ۢ>','ݮI31rT)X©6!c\'8','',0,'?'),('9?.M','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-accordion-tab.php',0,'4쮼BWq','4쮼BWq','h͍}6d;Es0','',0,'?'),('bE4Lu\"@w','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-accordion.php',0,'u`Q_a{kI','u`Q_a{kI','#\0h_>>#08\ZSl?$(e','',0,'?'),('Kk.1Bݏu','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-basic-grid.php',0,'H`#-y|(z','H`#-y|(z','d	3jT6h-pO>[H\"{','',0,'?'),('YA}F}','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-btn.php',0,'0fJ^F&e','0fJ^F&e','>W|fг _Lkz:)W-t','',0,'?'),('A((-2`⌁2	','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-button.php',0,'$1KN6[Rk','$1KN6[Rk','5GQ0~H¶ioZ0#Ѝֈ','',0,'?'),('_n+)U\Z:','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-button2.php',0,'I2K{QHYO','I2K{QHYO','vARS|c_#R$\rnl	7','',0,'?'),('[V߄P1','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-carousel.php',0,'<ٗ%^,','<ٗ%^,','BcNOsudQD՞','',0,'?'),('\ZK3k~42','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-column-inner.php',0,'jZCfm','jZCfm','MZ>2u\'sAoA`go\rhc','',0,'?'),('GB\nI~EV|','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-column-text.php',0,'r8)d\nMF','r8)d\nMF','M\"P~>y3Na$nx','',0,'?'),('JT6lh,VrV_q|','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-column.php',0,'=Ho`)$3_?#','=Ho`)$3_?#','VU@Z{:fD6`f5','',0,'?'),('K&]m','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-cta-button.php',0,'-oJ@KN&','-oJ@KN&','QElV9<|d\rؐe)bgӵ\r','',0,'?'),('Bxf`Ey','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-cta-button2.php',0,'6ٟ\'TБ;','6ٟ\'TБ;','4q<`\Z%oN%f1G','',0,'?'),('V\Z6<2\"','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-cta.php',0,'}Թ@n2','}Թ@n2','Yexu*hT4U>W`d','',0,'?'),('ęۯZ%%','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-custom-field.php',0,'rh֞(}zQ','rh֞(}zQ','3%gH]#Voȭ^~vPN','',0,'?'),('){Vdkda8','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-custom-heading.php',0,'\\р/ _;,!','\\р/ _;,!','8(tn<Scp4M\nc*>Q','',0,'?'),('T;2~=	0','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-empty-space.php',0,'~<lsؚ!','~<lsؚ!','~x4taVlۚ56\r#RvQ','',0,'?'),('·tbk/ڏFɫOD','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-facebook.php',0,'ӰpQz','ӰpQz','gH\'lv\\*e5n-Y:]#3','',0,'?'),('>03A	6','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-flickr.php',0,'G5dT\r W\nB0','G5dT\r W\nB0','A6>ZE9ⳗ^q>.Bz','',0,'?'),('$&?w\"<PVo`','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gallery.php',0,'nImG5','nImG5','\\_7xǤ5< iF@','',0,'?'),('ܒ)bV˨Z2>','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-animated-block.php',0,'|ݭ\Z','|ݭ\Z','7p+VZezjD	UsD','',0,'?'),('`51|M','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-col.php',0,'=*llήzK\'P','=*llήzK\'P','\r5NV&dT\'; ','',0,'?'),('S\ZПfS,)	','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-image.php',0,'?fS)\Zݢ~','?fS)\Zݢ~','J- I4̊vE','',0,'?'),('5E<5y)Uue`b','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-post-author.php',0,'CXc^V','CXc^V','SEiJ =H0T*KoyyTcIu','',0,'?'),('(y{0qJ\\y:','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-post-categories.php',0,'a>4\n8','a>4\n8','%Il\Z;zɐK	b^h!wܹC','',0,'?'),('{WAi[RF3','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-post-data.php',0,'MY%{؟M','MY%{؟M','A@U1=,0N1u:D](Χm9','',0,'?'),('4Ȋ^Y*`\0','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-post-date.php',0,'\ZiN𘟭چ','\ZiN𘟭چ','O|МZ\ZӃ_}99)','',0,'?'),('=^PlB`}5N_+]','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-post-excerpt.php',0,'Kjs>DM0','Kjs>DM0','sCXwc`?kLn%ܦ\'1Y','',0,'?'),('_S4Ie1','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-post-meta.php',0,'d-T\'G[','d-T\'G[','(@oxuzoajC0h','',0,'?'),('R&kgBΰj_','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-post-title.php',0,'d^䘁B y\Zj','d^䘁B y\Zj','FR3$)Kl\'^j','',0,'?'),('ּh\Z#%8,bHR','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-row.php',0,'fDvGq~Nh','fDvGq~Nh','.V	ǣv?v}ɦtCIA','',0,'?'),('_\Z%Nh{ң&!','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-zone-a.php',0,'no8{6~ah','no8{6~ah','@ַN&H&@(!8','',0,'?'),('MUԷE4,X`','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-zone-b.php',0,'uv>.(hU','uv>.(hU','M<#6[)gfösj|~_','',0,'?'),('!mrkN','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-zone-c.php',0,',S	^*X',',S	^*X','>@\0]E7T\'\"x>CI','',0,'?'),('spgAhc','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-zone.php',0,'\0a	J','\0a	J','k3N<1\n`%Wu`O 9Y-S','',0,'?'),('Lڃg','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem.php',0,'@ o $\"','@ o $\"','pH	m>ф[s','',0,'?'),('<#V3e&M`','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gmaps.php',0,'ՀX\ni^ɽk]','ՀX\ni^ɽk]','q/?C-hr0tu\Z?h$ߴp','',0,'?'),('ľVH=T','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-googleplus.php',0,'Q(q%','Q(q%','(o7bi)~ט<ʆ3','',0,'?'),('Z@Z@ _','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-icon.php',0,'VKFd\r','VKFd\r','FЙWsNc1+MaK','',0,'?'),('ֈ/v\00>y','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-images-carousel.php',0,'1Z^\nvr-F','1Z^\nvr-F','Js|\'?oY=()pư)wm_','',0,'?'),('1mFP`ۯ','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-line-chart.php',0,'xH̛ZE\n','xH̛ZE\n','.e+l{EԔTZ!$A:','',0,'?'),('fNį*rk','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-masonry-grid.php',0,'phxB','phxB','pt(m2:ǆhdq<ꗼt#sP','',0,'?'),('Ou9@;sjbk','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-masonry-media-grid.php',0,')mP,pk`q',')mP,pk`q','H5Q-c]]H2/?-%N\'z','',0,'?'),('.JWxCb','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-media-grid.php',0,',J*r1Kc+W',',J*r1Kc+W','j)k\Z\"{&LSSćX F<','',0,'?'),('k95y[','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-message.php',0,'(X&w','(X&w','iˋ?yz\"PPsE&gJ1>;','',0,'?'),('\0C7\n9$2','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-pie.php',0,'WD6༬ݛ\0','WD6༬ݛ\0','>]UC9\Zi8؝7ԌX\"y','',0,'?'),('`MZt*1c','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-pinterest.php',0,'7@m','7@m',' Ԟex8ic*ftgJ*','',0,'?'),('MO]rf[+d','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-posts-grid.php',0,'|ztLz,+/','|ztLz,+/','4Ԝ\r~|i03i+WGd','',0,'?'),('4(}S\0@}݉T/','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-posts-slider.php',0,'Ks\n^@6ΔF','Ks\n^@6ΔF','d=\"T-C0ǅs5Mъc~բR','',0,'?'),('\\.̀+/','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-progress-bar.php',0,'kj}qORq','kj}qORq','FjpeG#ـ`@:;v.','',0,'?'),('tP	g','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-raw-html.php',0,'0QT\rU!\"X','0QT\rU!\"X','vQՙ|RWF-dX1-P','',0,'?'),('H*88w	`8ɨ','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-raw-js.php',0,'ٓ	HIjѶ͋','ٓ	HIjѶ͋','׎	wTnۉfh2Hǐȏ','',0,'?'),(' Z;jsǾ','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-round-chart.php',0,'-(}V{wƈtn','-(}V{wƈtn','g$<9Y$9=[\0R	_q:T','',0,'?'),('4\Z\\z','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-row-inner.php',0,'x\ZI^%護;','x\ZI^%護;',' #ܭk.ՃE~>J.fٌ','',0,'?'),('-JAo/| |A=','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-row.php',0,'pRR?Z86f6','pRR?Z86f6','\\#?ME[\\?Rx;4jc\04','',0,'?'),('2B<s','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-section.php',0,'Oux=','Oux=','mFZBZc$.i#^R9','',0,'?'),('tU;7%Yod','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-separator.php',0,'f\n)Ҿ8s','f\n)Ҿ8s','eˤYNt5G','',0,'?'),('3#?D!	tڥ','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-single-image.php',0,'p$z	(','p$z	(','s;z@HIz/+8H~i^D%Hm','',0,'?'),('c</H(','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tab.php',0,'U\ZG>7\'0','U\ZG>7\'0','ͅA\0?\Zočޘ~','',0,'?'),('̈́fYo	È	','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tabs.php',0,'\ZL[4','\ZL[4','h8xA=PC$e$','',0,'?'),('|lAt量̚l','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-text-separator.php',0,'$%_2Mp','$%_2Mp','#OqvB[I\" \0+\0','',0,'?'),('69nok$S','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-toggle.php',0,'ZkC','ZkC','dH\'5Li~Q[cx0h􉩼 ','',0,'?'),('\0#9X1\0L','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tour.php',0,'5c]3a','5c]3a','<B͹o6C(0}İ\"','',0,'?'),('Ѫ~V','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tta-accordion.php',0,'TCV%I4ZA','TCV%I4ZA','RUhY-W+(ndQ','',0,'?'),('8;$\'JmxCm\'nb','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tta-pageable.php',0,'gs-߷\"5r','gs-߷\"5r','V=K.H4 :8emYb','',0,'?'),('}%\r+','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tta-section.php',0,'챈T\ZX\nX','챈T\ZX\nX','<HJ\0rk>	9$K','',0,'?'),('S>NWln2M','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tta-tabs.php',0,'rL	ߢƉ','rL	ߢƉ','\0H3(F92:	','',0,'?'),('/bpW&','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tta-tour.php',0,'vfLAmj','vfLAmj','VFѴ.6DBz@CX{4Or\0Z','',0,'?'),('3c2 ','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tweetmeme.php',0,'#&;cu`v','#&;cu`v','?MUP9Q\0Jd2\0ggz','',0,'?'),('+؆be','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-twitter.php',0,'-?ChF','-?ChF','/4=JHK.ꫝwS:{ʽ1','',0,'?'),('OLF!kI*ow','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-video.php',0,'*\Z˟ oe˾','*\Z˟ oe˾','][o{Qӿ,$fgh2','',0,'?'),('qfQMq|{\\','wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-widget-sidebar.php',0,'K\'d]_','K\'d]_','AE:7zY&UD4չ!8$I\0','',0,'?'),('\'ȍ;pl\"lu','wp-content/plugins/js_composer_salient/include/classes/shortcodes/wordpress-widgets.php',0,'1k+li','1k+li','$n,)e8򠬳_U-TQJX_','',0,'?'),('f}D瀾\00','wp-content/plugins/js_composer_salient/include/classes/updaters/class-vc-updater.php',0,'B?%eҤ=0','B?%eҤ=0',' c]p>\"$=kQ','',0,'?'),('sEN;0xH{v&','wp-content/plugins/js_composer_salient/include/classes/updaters/class-vc-updating-manager.php',0,'v~NFh=','v~NFh=','|Or1RMr%`HHBI','',0,'?'),('-DnS;bqKx)','wp-content/plugins/js_composer_salient/include/classes/vendors/class-vc-vendors-manager.php',0,'Ner','Ner','>,eTdoyq?pP*rK{\Z','',0,'?'),('UX9#','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/acf/class-vc-acf-shortcode.php',0,'{am4','{am4','ƋV2eDZ\rtBQLȸK)y','',0,'?'),('Byd\0R05','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/acf/class-vc-gitem-acf-shortcode.php',0,'7\r2i6*[','7\r2i6*[','[΄[PWGǁ`oZ','',0,'?'),('wín5KrO*{','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/acf/grid-item-attributes.php',0,'R0?p[/qW]','R0?p[/qW]','虬FWnu|#zJC','',0,'?'),('{:KU\05bP','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/acf/grid-item-shortcodes.php',0,'nD^HaW	1f','nD^HaW	1f','R{Җ\Z\"cF6anSf','',0,'?'),('Q+nӡ44P','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/acf/shortcode.php',0,'BQK+-<H\Zf','BQK+-<H\Zf','$olGꯃZwK2eM4','',0,'?'),(';c\rARYW^','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-advanced-custom-fields.php',0,'H}*`EK9-/','H}*`EK9-/','	D`[H٣`uT','',0,'?'),('T?s^T_]Ej','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-contact-form7.php',0,'Q2Lughhڕb','Q2Lughhڕb','+`E\'U\'\"ϟ]=]g,','',0,'?'),('5т-^3c5','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-jwplayer.php',0,'NyGxcX','NyGxcX','KYcsvN\"\02e0Bm','',0,'?'),(':eJ»^@	gf','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-layerslider.php',0,'Ɨ\nH\'hDƟ̲','Ɨ\nH\'hDƟ̲','+SUKw~k_?X{','',0,'?'),('ISIب\rE^{','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-mqtranslate.php',0,'k\'}0}','k\'}0}','  `\nltf2gSd)A{-','',0,'?'),('\"ϙ ^}','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-ninja-forms.php',0,'#\0,','#\0,','E@/$eg7X_0j\'8_ʍ','',0,'?'),('U<a04ۦ','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-qtranslate-x.php',0,'=>>\0u%@','=>>\0u%@','u6M	纟t8^߮I','',0,'?'),('dcF-!e5p','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-qtranslate.php',0,'X\0b(\\','X\0b(\\','^DSk[K Jn,H-$KOH4','',0,'?'),('\'3.qV ˵','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-revslider.php',0,'LYU\Zw{~','LYU\Zw{~','ү@LǨ@c:֣y=dB','',0,'?'),('Dh7Jx\n0','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-woocommerce.php',0,'S*::~C=p','S*::~C=p','1C\0Q\0\'=l\ZFБ ','',0,'?'),('eq\0jNn2\n\r','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-wpml.php',0,'\']c@','\']c@','H^b4fna4W63','',0,'?'),('0V`Dy\ZH','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-yoast_seo.php',0,':?\0lq\r1',':?\0lq\r1','\Z&44bG7ouH]\\W','',0,'?'),('M[˖\r=tM','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/woocommerce/class-vc-gitem-woocommerce-shortcode.php',0,'u\"I9DϮL\n)','u\"I9DϮL\n)',' 6meI_,	xCuFs','',0,'?'),('\\f!5T&ڞ״','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/woocommerce/grid-item-attributes.php',0,'C@2U&1^','C@2U&1^','ζ	u_OyQ=1E/','',0,'?'),('8^5J	','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/woocommerce/grid-item-filters.php',0,'[	#dw%','[	#dw%','AZꀡV\'8Ȇ^~j\'?','',0,'?'),('D[ʪWkXQ','wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/woocommerce/grid-item-shortcodes.php',0,'`DD2̤ɕy;]','`DD2̤ɕy;]','LI\Zl?R%<_a}','',0,'?'),(';h,sכl	','wp-content/plugins/js_composer_salient/include/helpers/class-vc-color-helper.php',0,'q-<q','q-<q','a `Չ~N)JYxԡ','',0,'?'),('7]f,N=u','wp-content/plugins/js_composer_salient/include/helpers/filters.php',0,'^\rFHAfX ','^\rFHAfX ','PiHo;u$Uj\0Ǩ]Ҳ','',0,'?'),('9.aȦRZLk','wp-content/plugins/js_composer_salient/include/helpers/helpers.php',0,'<<-k','<<-k','IaD|pn0~k,xXٻ@Z-','',0,'?'),('^*:\'n}t','wp-content/plugins/js_composer_salient/include/helpers/helpers_api.php',0,'̯K3|eoz\0~s','̯K3|eoz\0~s','b|9a=ũmǙ69rD','',0,'?'),('d:B87N\n','wp-content/plugins/js_composer_salient/include/helpers/helpers_factory.php',0,'YM^6UB','YM^6UB','Xv>8`hIʞi;;1','',0,'?'),('1.Юܮ6','wp-content/plugins/js_composer_salient/include/params/animation_style/animation_style.php',0,'&m1%2 O=5n','&m1%2 O=5n','1V5i5]`?^3q-yW+','',0,'?'),('n|[NZZp<V','wp-content/plugins/js_composer_salient/include/params/autocomplete/autocomplete.php',0,'p!IG','p!IG',':yRvCyz<V~:6tB','',0,'?'),('l%]CBˀ','wp-content/plugins/js_composer_salient/include/params/colorpicker/colorpicker.php',0,'u1feP\r','u1feP\r','¦\'[ЄM?rG\0h#Gf','',0,'?'),('ק<	OC','wp-content/plugins/js_composer_salient/include/params/column_offset/column_offset.php',0,'\r~O|#b.','\r~O|#b.','/0c/KRש^ie|$%ޓt','',0,'?'),('K(hb\02M[	y','wp-content/plugins/js_composer_salient/include/params/css_editor/css_editor.php',0,'%&P1oQg#_~p(','%&P1oQg#_~p(','A6oX漐	kȍۚo!7N','',0,'?'),('UP%xNs<C','wp-content/plugins/js_composer_salient/include/params/custom_markup/custom_markup.php',0,'\\vERz\n<l','\\vERz\n<l','f.ϿJ;ϚqVJ⩟MK','',0,'?'),('\\3\'eM#','wp-content/plugins/js_composer_salient/include/params/default_params.php',0,'dQouO}jA,H','dQouO}jA,H','$Ph[nE\\ng+uQNmx','',0,'?'),('~jwk','wp-content/plugins/js_composer_salient/include/params/el_id/el_id.php',0,'e۲xVl ','e۲xVl ','`0ږt1fFb2Ԓ䖧=h','',0,'?'),('@鬸C5c-','wp-content/plugins/js_composer_salient/include/params/font_container/font_container.php',0,'\rC*M{Gr','\rC*M{Gr','N\0Y\\#Jx@7%K*y','',0,'?'),('xs\\(z)=','wp-content/plugins/js_composer_salient/include/params/google_fonts/google_fonts.php',0,'aj:9q','aj:9q','?GV e3Q>b!˘	ר/(','',0,'?'),('B\r-u\\','wp-content/plugins/js_composer_salient/include/params/hidden/hidden.php',0,'`V:nc\\','`V:nc\\','qEF,G]+lL|_Q`l\'^','',0,'?'),(':-sQBȭQWOc','wp-content/plugins/js_composer_salient/include/params/href/href.php',0,'5\ZpoCPV\ZS','5\ZpoCPV\ZS','=d\\dUW//W','',0,'?'),('dq4','wp-content/plugins/js_composer_salient/include/params/iconpicker/iconpicker.php',0,'}V~_-.:q\nF','}V~_-.:q\nF','\"LgRh_c1%Hɰ!LoW','',0,'?'),('`cBO\ny','wp-content/plugins/js_composer_salient/include/params/load.php',0,'<dJHVEﺮ','<dJHVEﺮ','Ɉf9p+8)@.j\\5~','',0,'?'),('-$T','wp-content/plugins/js_composer_salient/include/params/loop/loop.php',0,'l2ۈw*sH','l2ۈw*sH','M|L;Eul7{<=j\rX','',0,'?'),('q{\'e&s	E','wp-content/plugins/js_composer_salient/include/params/options/options.php',0,'6^hyՙ	͋','6^hyՙ	͋','@R{uLR-Bʭ	(	pٌL','',0,'?'),('`Pao4hZV','wp-content/plugins/js_composer_salient/include/params/param_group/param_group.php',0,'*<v.G}1l','*<v.G}1l','xvcm>&:<_Lr','',0,'?'),('yg,tWkb','wp-content/plugins/js_composer_salient/include/params/params.php',0,'ι= 5iB','ι= 5iB','Tt߻Czt͟=.dFq7r','',0,'?'),('\Z[ɦ g	lX','wp-content/plugins/js_composer_salient/include/params/params_preset/params_preset.php',0,'ue\n;?EoX','ue\n;?EoX',' A\ro/<v	Fj\\mBNf','',0,'?'),('YwK3jva','wp-content/plugins/js_composer_salient/include/params/sorted_list/sorted_list.php',0,'J9[G,8R祂','J9[G,8R祂','PTNV?c^/F8|Ylvf~T','',0,'?'),('C UГȶ','wp-content/plugins/js_composer_salient/include/params/tab_id/tab_id.php',0,'xԨRY\"','xԨRY\"','W/gZ6uZi&CeJw','',0,'?'),('2:F+%{','wp-content/plugins/js_composer_salient/include/params/textarea_html/textarea_html.php',0,'$NӼa3Ҍ%','$NӼa3Ҍ%','pE+i\\-L߬ULNߍ','',0,'?'),(':%ܧ9','wp-content/plugins/js_composer_salient/include/params/vc_grid_element/vc_grid_element.php',0,'\\C\0KSd','\\C\0KSd','P/QD}f:4aoD\0A\\9','',0,'?'),('2RDf','wp-content/plugins/js_composer_salient/include/params/vc_grid_element/vc_grid_id/vc_grid_id.php',0,'7q(eϲH\\','7q(eϲH\\','/(|ѿ1&-Orۮ7ofg','',0,'?'),('VtJ p','wp-content/plugins/js_composer_salient/include/params/vc_grid_item/attributes.php',0,'x&@SUnp','x&@SUnp','1Nk6^_1s}SA]]d	','',0,'?'),('~z;%Ŷ','wp-content/plugins/js_composer_salient/include/params/vc_grid_item/class-vc-grid-item.php',0,'U:bOPZm','U:bOPZm','pyUJ>T\n9R9nf$','',0,'?'),('>1C_h','wp-content/plugins/js_composer_salient/include/params/vc_grid_item/class-wpb-map-grid-item.php',0,'1W2/\"1O6Lj=','1W2/\"1O6Lj=','W,\0nV;UX,{Mۂg\'I1CR-','',0,'?'),(':r1B8d','wp-content/plugins/js_composer_salient/include/params/vc_grid_item/editor/class-vc-grid-item-editor.php',0,'k:\r\0VM','k:\r\0VM','-^Mᛧ\ZAc9lB	Y','',0,'?'),(':MgDujG','wp-content/plugins/js_composer_salient/include/params/vc_grid_item/editor/class-vc-grid-item-preview.php',0,',yl?Ejˠ',',yl?Ejˠ','.\rOIpWM.f\\$\r{','',0,'?'),('yμ}lZ5&','wp-content/plugins/js_composer_salient/include/params/vc_grid_item/editor/navbar/class-vc-navbar-grid-item.php',0,'^ڐݞ0SO','^ڐݞ0SO','5Q\n	_xlY,b($zUAF6','',0,'?'),('[:%','wp-content/plugins/js_composer_salient/include/params/vc_grid_item/editor/popups/class-vc-add-element-box-grid-item.php',0,'Q>+_c-|cB','Q>+_c-|cB','-[\':ik&kLHw_&M','',0,'?'),('9i@nnn','wp-content/plugins/js_composer_salient/include/params/vc_grid_item/editor/popups/class-vc-templates-editor-grid-item.php',0,'ҼR^','ҼR^','f|ՏNI\0?\n\0޻_R(h','',0,'?'),('\0BX;%.	','wp-content/plugins/js_composer_salient/include/params/vc_grid_item/shortcodes.php',0,'`&7UL_}Кw','`&7UL_}Кw','saԊ	AFR鄋Jo Q%','',0,'?'),('ouf9M','wp-content/plugins/js_composer_salient/include/params/vc_grid_item/templates.php',0,':4X[,',':4X[,','y^-Klm1͇mli\"3)g','',0,'?'),('ܱ+\0hq','wp-content/plugins/js_composer_salient/include/params/vc_link/vc_link.php',0,'2\0E;O7&ޓz','2\0E;O7&ޓz','zA(TJZ2g.G.l','',0,'?'),('Du','wp-content/plugins/js_composer_salient/include/templates/editors/backend_editor.tpl.php',0,'T$\Zv{Qߢ','T$\Zv{Qߢ','a,NlK7Ux\'8j','',0,'?'),('VF{ʣQ^I','wp-content/plugins/js_composer_salient/include/templates/editors/frontend_editor.tpl.php',0,'#W\'O$r','#W\'O$r','ixn*DWYm:)=e<ˣr','',0,'?'),('iX|','wp-content/plugins/js_composer_salient/include/templates/editors/frontend_template.tpl.php',0,'i[3/6M[','i[3/6M[','ߔu!<b`CH4}e','',0,'?'),('7;s.KnP','wp-content/plugins/js_composer_salient/include/templates/editors/navbar/navbar.tpl.php',0,'/\"n;Jf','/\"n;Jf','M.\n1Ld3\'y_','',0,'?'),('<h@\n{','wp-content/plugins/js_composer_salient/include/templates/editors/partials/access-manager-js.tpl.php',0,')MC\Z&:',')MC\Z&:','\\2\Z\n$TԢWY˿H\\MeX9J','',0,'?'),('a.}pu^','wp-content/plugins/js_composer_salient/include/templates/editors/partials/add_element_search.tpl.php',0,'pǯ~	2K','pǯ~	2K','8mDԘkG42vJF','',0,'?'),('MfXv`#','wp-content/plugins/js_composer_salient/include/templates/editors/partials/add_element_tabs.tpl.php',0,'yqelPH*@','yqelPH*@','vZEd%;x)LނL&','',0,'?'),(')v+#*7!','wp-content/plugins/js_composer_salient/include/templates/editors/partials/backend-shortcodes-templates.tpl.php',0,'Ui1\nN+hF','Ui1\nN+hF','&U1p@}b	kꁵ$LZbx','',0,'?'),('NIhR:W4˭=','wp-content/plugins/js_composer_salient/include/templates/editors/partials/backend_controls.tpl.php',0,'VXܒ','VXܒ','Ӹ>8\"V[K_(\Z뺺\rL`\"Ci','',0,'?'),('3uoB+','wp-content/plugins/js_composer_salient/include/templates/editors/partials/backend_controls_tab.tpl.php',0,' Mw	P',' Mw	P','@ϰ\Z~ʨ+cm\'A9.d','',0,'?'),('H(zbBz8','wp-content/plugins/js_composer_salient/include/templates/editors/partials/backend_editor_footer.tpl.php',0,'w9e,e*$','w9e,e*$','Ǟʕ1z ~dbê7-u3~TD','',0,'?'),('!+;,<epb','wp-content/plugins/js_composer_salient/include/templates/editors/partials/frontend_controls.tpl.php',0,'ܙç\')H!a','ܙç\')H!a','ݲe%<A.TK?ܨX:HC','',0,'?'),('C)t# qc','wp-content/plugins/js_composer_salient/include/templates/editors/partials/post_shortcodes.tpl.php',0,' up)We',' up)We','UH{rk\'z!)(W=\\','',0,'?'),('(?,+E','wp-content/plugins/js_composer_salient/include/templates/editors/partials/prompt-presets.tpl.php',0,'\'n0DP=gԔ','\'n0DP=gԔ','`w)[Љ\Z_r)$kU\\-\'_v7o','',0,'?'),('[8]VF䖣1','wp-content/plugins/js_composer_salient/include/templates/editors/partials/prompt-templates.tpl.php',0,'T\Z*B=;','T\Z*B=;','\0}I2IH㾕~WrRWKM','',0,'?'),('$Fː._u>O','wp-content/plugins/js_composer_salient/include/templates/editors/partials/settings_presets_popup.tpl.php',0,'H$I`mk','H$I`mk','ww!/MLXw>wTkhY','',0,'?'),('/xFܼgw','wp-content/plugins/js_composer_salient/include/templates/editors/partials/templates_search.tpl.php',0,'~*\'.8_','~*\'.8_','hd7,4wvM֬(ih','',0,'?'),('s_^8','wp-content/plugins/js_composer_salient/include/templates/editors/partials/vc_settings-image-block.tpl.php',0,'e\'kwTYC','e\'kwTYC','sc~&<L','',0,'?'),('lVކZlQ','wp-content/plugins/js_composer_salient/include/templates/editors/partials/vc_ui-settings-dropdown.tpl.php',0,'foZ8R#[MR\"0','foZ8R#[MR\"0','ztKx5h::r=g}','',0,'?'),('\'\rimNN\r','wp-content/plugins/js_composer_salient/include/templates/editors/partials/vc_ui-templates-tabs.tpl.php',0,'^ʃ|<u#\\','^ʃ|<u#\\','.&P{*%>\'24','',0,'?'),('fȻ7/btA\nv','wp-content/plugins/js_composer_salient/include/templates/editors/partials/vc_welcome_block.tpl.php',0,'V~@|YDê','V~@|YDê','8zTw@kѰ*Bt7YrĀ','',0,'?'),('nطx*v*','wp-content/plugins/js_composer_salient/include/templates/editors/popups/modal_edit_element.tpl.php',0,'g\n.g+a','g\n.g+a','풓\r@7!M=gKe*x','',0,'?'),('`Edb)','wp-content/plugins/js_composer_salient/include/templates/editors/popups/panel_multi_shortcode_edit_form.tpl.php',0,';$oyQ6Jb',';$oyQ6Jb','\\565f. iSYkU>XDr;qΓ','',0,'?'),('a)5{\'W','wp-content/plugins/js_composer_salient/include/templates/editors/popups/panel_shortcode_edit_form.tpl.php',0,',q-h',',q-h','%\rNWPfb:U','',0,'?'),(':5pV!w--','wp-content/plugins/js_composer_salient/include/templates/editors/popups/panel_templates_editor.tpl.php',0,'GSF򫚤sP','GSF򫚤sP','-{ׅ?+e#<䦎Q-(\Z.','',0,'?'),('+&7hӳ8','wp-content/plugins/js_composer_salient/include/templates/editors/popups/shared-templates/category.tpl.php',0,'#{Կ5Ozl','#{Կ5Ozl','B~%I\n%/7.','',0,'?'),('un4(IcX','wp-content/plugins/js_composer_salient/include/templates/editors/popups/vc_ui-footer.tpl.php',0,'򥄯W\rit','򥄯W\rit','b8Wl41NOGm	{%4XK','',0,'?'),('~K','wp-content/plugins/js_composer_salient/include/templates/editors/popups/vc_ui-header.tpl.php',0,'Dͪq/xTu:?V','Dͪq/xTu:?V','\"͒.liz`#d<q+!:+','',0,'?'),('L׽Lfr\r','wp-content/plugins/js_composer_salient/include/templates/editors/popups/vc_ui-panel-add-element.tpl.php',0,'\Zݐp@[օ&>','\Zݐp@[օ&>','u\0\0IK-kjr7j\\','',0,'?'),('3+S\'7','wp-content/plugins/js_composer_salient/include/templates/editors/popups/vc_ui-panel-edit-element.tpl.php',0,'>,&b1\Z^&I','>,&b1\Z^&I','Xj٫0]5lQj$4@','',0,'?'),('䳢X-','wp-content/plugins/js_composer_salient/include/templates/editors/popups/vc_ui-panel-post-settings.tpl.php',0,'Srx7c8','Srx7c8','-laBJGPxR*','',0,'?'),('oo7\rځQ&','wp-content/plugins/js_composer_salient/include/templates/editors/popups/vc_ui-panel-row-layout.tpl.php',0,';9\r}0Zޏ',';9\r}0Zޏ','Pmu〥G52Z7+t=#dt9߼','',0,'?'),('*2.^f','wp-content/plugins/js_composer_salient/include/templates/editors/popups/vc_ui-panel-templates.tpl.php',0,'\'ܐMqO','\'ܐMqO','(Dj?V5\'ƍFؑ/%U','',0,'?'),('ޣn@0\Z`:q','wp-content/plugins/js_composer_salient/include/templates/editors/vc_ui-template-preview.tpl.php',0,'#ӦCV?űd','#ӦCV?űd','eO\"@V)Q2V.t?;\nK','',0,'?'),('O\\U','wp-content/plugins/js_composer_salient/include/templates/pages/partials/_settings_tabs.php',0,'ycm21	','ycm21	','|}	0T!`\Z[','',0,'?'),('\nf&eϑ֖\0u0\"','wp-content/plugins/js_composer_salient/include/templates/pages/partials/_tabs.php',0,'/uOvd1','/uOvd1','PG?C7?ZS/}\"z1','',0,'?'),('`_{W$>','wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_backend_editor.tpl.php',0,'Ol̊X!S.sӖ','Ol̊X!S.sӖ','\nHLqdmXiSJȆĤ','',0,'?'),('f:,QN','wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_frontend_editor.tpl.php',0,'ĥt<s','ĥt<s','Ҳ[|~EQc?','',0,'?'),(']po6`y','wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_grid_builder.tpl.php',0,'*=LuR','*=LuR','ME%HX:`I #qL|u','',0,'?'),('Jb&HYV','wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_part.tpl.php',0,'q*tF|F','q*tF|F','ȫ#g~]eq\'گ?uY','',0,'?'),('!W`\'؂``','wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_post_settings.tpl.php',0,'E{r{]a{.GF_w','E{r{]a{.GF_w','xXGCZzvgi48yċc','',0,'?'),(';䝻g<j','wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_post_types.tpl.php',0,'y~ 9]','y~ 9]','je\r?|AEM1;@H۽c','',0,'?'),('ȥV6xHi0','wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_presets.tpl.php',0,'`#-ݏf}_sK','`#-ݏf}_sK','?P!lPDC+?(E\'Y&q<Y','',0,'?'),('y{wm&','wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_settings.tpl.php',0,'ZM\'bdZcp','ZM\'bdZcp','t:o/,s2/*X_\0w5xt*ԆC|','',0,'?'),('܉M`o]9cZ','wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_shortcodes.tpl.php',0,'\nY\n&','\nY\n&','TP)2zLf4܎ۗXK7','',0,'?'),('F`]#o9[','wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_templates.tpl.php',0,'xc:a#','xc:a#','(tbdCGӏUQ','',0,'?'),('8L/98ʙ','wp-content/plugins/js_composer_salient/include/templates/pages/vc-settings/default-template-post-type.tpl.php',0,')r~Ikπg',')r~Ikπg','07@qM\n_(Kk','',0,'?'),('{LY<5','wp-content/plugins/js_composer_salient/include/templates/pages/vc-settings/index.php',0,'1IL-\r+','1IL-\r+','c;R9\\ýns=HlHwc+4}6d','',0,'?'),('w8Q;%VNf','wp-content/plugins/js_composer_salient/include/templates/pages/vc-settings/tab-vc-roles.php',0,'\0ӘphρTKq~','\0ӘphρTKq~','F<:N̝]3,@8[Jo7)C','',0,'?'),('/:pѤ5G','wp-content/plugins/js_composer_salient/include/templates/pages/vc-settings/tab.php',0,'\'b`e.','\'b`e.','n ! S4\\CXhL\nuKWm\Z','',0,'?'),('pKr/\Zb','wp-content/plugins/js_composer_salient/include/templates/pages/vc-settings/vc-automapper.php',0,'6\\Y#*R','6\\Y#*R','\nYslْEd\\؇D','',0,'?'),('U(o/\'L՜','wp-content/plugins/js_composer_salient/include/templates/pages/vc-welcome/index.php',0,']8BI|&M/:',']8BI|&M/:','rpW$36瘃?6޵A*ʱI','',0,'?'),('G`UsS+QD>','wp-content/plugins/js_composer_salient/include/templates/pages/vc-welcome/vc-faq.php',0,'UX.t1v/.1\n\Z','UX.t1v/.1\n\Z','D]\"jez̻uv{SnLrSݸ8','',0,'?'),('ܗ\\Z:y`','wp-content/plugins/js_composer_salient/include/templates/pages/vc-welcome/vc-resources.php',0,'AzoP!He','AzoP!He','f8/3Αrgns*EL','',0,'?'),('H =	[!Rh','wp-content/plugins/js_composer_salient/include/templates/pages/vc-welcome/vc-welcome.php',0,'ǰv**','ǰv**','ñcyͩJ ;>','',0,'?'),('-F㠹','wp-content/plugins/js_composer_salient/include/templates/params/column_offset/template.tpl.php',0,'nӝ+\ZBTI$~','nӝ+\ZBTI$~','و^3EWM0p!','',0,'?'),('\Z\ZSE\r7_!','wp-content/plugins/js_composer_salient/include/templates/params/google_fonts/template.php',0,'˓9$R','˓9$R','WthjGb4\0V4D','',0,'?'),('UNKT6(','wp-content/plugins/js_composer_salient/include/templates/params/loop/templates.html',0,'J*u!mI۞\0RW ','J*u!mI۞\0RW ','P~g+y1U6%|TtJ','',0,'?'),('J_>O>eq','wp-content/plugins/js_composer_salient/include/templates/params/options/templates.html',0,'LCoݑ#_=','LCoݑ#_=','h\"Ԏ[Ov/Ū&p<K','',0,'?'),('X_qÜ','wp-content/plugins/js_composer_salient/include/templates/params/param_group/add.tpl.php',0,'wj\0S@c','wj\0S@c','\rTybIBx<gUV\0<\'J','',0,'?'),('$bH\Z.[&w3F','wp-content/plugins/js_composer_salient/include/templates/params/param_group/content.tpl.php',0,'\\0T|S','\\0T|S','?@zIM=wQHri','',0,'?'),('ǧ6O5\Z\'w!','wp-content/plugins/js_composer_salient/include/templates/params/param_group/inner_content.tpl.php',0,'D=`̶>ΠS','D=`̶>ΠS','MoyyUo~','',0,'?'),('nMr\\r','wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/attributes/featured_image.php',0,'@%AF\\;]`*','@%AF\\;]`*','zaL\0Oܛ!\'G$KmXS2','',0,'?'),('QɋQp~','wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/attributes/post_categories.php',0,'=%?7n!MBZJ','=%?7n!MBZJ','|W]y:Ֆ,M:JZ','',0,'?'),('@!+$y.+^jP','wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/attributes/vc_btn.php',0,'v\'A]','v\'A]','^*7%z+>j4~\0D','',0,'?'),('PQxŰO+1k_','wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/editor/partials/vc_grid_item_editor_footer.tpl.php',0,'\\Mz_','\\Mz_','jlf C~-pS=RU.-)7','',0,'?'),('h\\_tҊ*','wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/editor/vc_grid_item_editor.tpl.php',0,'r&FpD-`^','r&FpD-`^','1ی޻Y;˹tjhRdK<','',0,'?'),('V?p%!','wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/editor/vc_ui-template-preview.tpl.php',0,'cHHn','cHHn','^\'eؓ-WKր!QV͛','',0,'?'),('`S=-唔k#%','wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/preview.tpl.php',0,'XOlM}','XOlM}','f.~Rm,[CZ5c(fvXI','',0,'?'),('(u!NJLx7]','wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/shortcodes/vc_btn.php',0,'I+j3B]','I+j3B]','Glbq{_1ud\Zzp\'','',0,'?'),(']jdSŀN','wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/shortcodes/vc_button2.php',0,'t:g}(,\ZlA','t:g}(,\ZlA','5VH/y۪a5zP{','',0,'?'),('x/z̽\'','wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/shortcodes/vc_custom_heading.php',0,'}Q8էt','}Q8էt','*w%TDW	؜m586DQ@','',0,'?'),('\nܰT	kn','wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/shortcodes/vc_icon.php',0,'ίao+>8~','ίao+>8~','(JH7ϱˑjt(','',0,'?'),('&1|zե','wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/shortcodes/vc_single_image.php',0,'\Z+M!0\'i.N','\Z+M!0\'i.N','M]f`z*ʶˣA\r+kg5H','',0,'?'),('as1ʈJ>:','wp-content/plugins/js_composer_salient/include/templates/shortcodes/layerslider_vc.php',0,'K,	`{ީZ','K,	`{ީZ','9tĀs;7<lRJ	Ҋ^','',0,'?'),('{섡n@9x','wp-content/plugins/js_composer_salient/include/templates/shortcodes/post_block/_item.php',0,'É va]}X','É va]}X','sҦc2Y,#e oӺrfŁ','',0,'?'),('1\ZG44FE','wp-content/plugins/js_composer_salient/include/templates/shortcodes/rev_slider_vc.php',0,'i|ߨiTfm`','i|ߨiTfm`','Zsv*¾ntR <*I<z','',0,'?'),('Xλ)V\r%RCQ','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_accordion.php',0,',W-yK|m1-',',W-yK|m1-','D0Ë|1Tai)Ŋ\r','',0,'?'),('a$m14Aw','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_accordion_tab.php',0,'!wUT','!wUT','cg_x4?>ak{\Z\\jw','',0,'?'),('d>r(D','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_basic_grid.php',0,'XyiZᛢ^','XyiZᛢ^','v*hM}63{Tm(4~','',0,'?'),('4dN5\\','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_basic_grid_filter.php',0,'#WiY<r[','#WiY<r[','d橻B[\0V>:','',0,'?'),(' 1~x^m/','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_btn.php',0,'!y<D','!y<D',')/+0Q\'v88dx.,[(2','',0,'?'),(';jL&^*Xo}','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_button.php',0,'l>:Z#&ZV','l>:Z#&ZV','ISbus\\:h ','',0,'?'),('\n+~幻T Gr%','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_button2.php',0,'g	.*\"Oy','g	.*\"Oy','a3ܠYzńH\"ڔFH܅^','',0,'?'),('rϋv\'h*ƶD#\0','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_carousel.php',0,'w;]v4C~/o\"','w;]v4C~/o\"','<Z]GK}w _8_%-','',0,'?'),('t0)Y A','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_column.php',0,'6~viB#.','6~viB#.','Xmź|KN`z^`*B(%','',0,'?'),('z5<y)%','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_column_inner.php',0,'E~DD&N{ݻ','E~DD&N{ݻ','5%ɦ{=m[3E','',0,'?'),('jrn	9.','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_column_text.php',0,'\"hՀg8wMv','\"hՀg8wMv','	b*gF:.[̕yl2^','',0,'?'),('C\n~!z ','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_cta.php',0,'MYˤ{wi\"tT','MYˤ{wi\"tT','Z\"]1\Z_(ʧj3vTD','',0,'?'),('P`wx{N','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_cta_button.php',0,'5LFμ0l\"','5LFμ0l\"','jd]SU*=3dv*JX','',0,'?'),('+|INFVo:(t','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_cta_button2.php',0,'XN\"C|3','XN\"C|3','yo;/ñ:\'7$jk','',0,'?'),('[5y','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_custom_field.php',0,'H~iDA','H~iDA','XIY\r\';uɻ`/\"Cy','',0,'?'),('sF80B','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_custom_heading.php',0,'#Je#\rµ','#Je#\rµ','˨==S5Qu\ryyf@','',0,'?'),(';\rͶ4l\r_tey','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_empty_space.php',0,'<|^/؟gF@l','<|^/؟gF@l','μv, uj$߳-b!F','',0,'?'),('	y@`7T','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_facebook.php',0,'Sרu\0ګ,˓\\_','Sרu\0ګ,˓\\_','|ʌLlEdY^s	ꓵWfEf0','',0,'?'),('p)O\ZVf','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_flickr.php',0,'\rVBؓW\n','\rVBؓW\n','5U6}2AtNvdQNڀEL۫C','',0,'?'),('asrz[\n:','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gallery.php',0,'酅^\"#t','酅^\"#t','UQ\"nyOrT\"Bd','',0,'?'),('ꖕKXMozV','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem.php',0,'?\rv]%YZ','?\rv]%YZ','b<&4[ec.~Tfwu0H','',0,'?'),('ۻ\0((','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_animated_block.php',0,'nq	.K9B.5~','nq	.K9B.5~','S=+RV2]X2ӯ!Kjn jxJ','',0,'?'),('%ȜkE)\"=','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_block.php',0,'zyӋ8Xr)r','zyӋ8Xr)r','c\nZ?޻<FQ/N!Kh','',0,'?'),('hY/.b^','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_col.php',0,'Ai~DhCrcE`;','Ai~DhCrcE`;','onz&ٽ}?`-f0^8','',0,'?'),('d-<@:','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_image.php',0,'vD>ߔD\r','vD>ߔD\r','\Z[m({ץa#b7kx-Q','',0,'?'),('~%PaN','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_post_author.php',0,'6v\'];','6v\'];','vR`ь_Rkዡs{B^4|','',0,'?'),(':t8Qԃ1','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_post_categories.php',0,'Lz#K\\','Lz#K\\','|63<C9=`̡$K]','',0,'?'),('ֺwSeF','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_post_data.php',0,'3ѷM޸ 5','3ѷM޸ 5','G2c:Br2\r\'','',0,'?'),('d󠲫2!OEv','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_post_meta.php',0,'8eEƖpY','8eEƖpY','5z~d5CA8`!}t,8','',0,'?'),('\n-ւls:ꍯux?','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_row.php',0,'bx҈FMߧ','bx҈FMߧ','7/O/\Z<4RhHs!~	\"24','',0,'?'),('wlX:Rs','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_zone.php',0,'ZGՙ?\ZG 5#','ZGՙ?\ZG 5#',' j]4U঍䬀=MIrN\'','',0,'?'),('˳EXB2Ƭ','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_zone_c.php',0,'lwn}_!','lwn}_!','\"UMNѵJ؋5,CYY','',0,'?'),('%\'_jbݱ','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gmaps.php',0,'\0+b4˘+2','\0+b4˘+2','=?Y9/\"\\x×RA\n&','',0,'?'),('vqFqu0','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_googleplus.php',0,'\"n#Mc.OYGR8','\"n#Mc.OYGR8','WY,\\TJ\0<^lvMq=viҩ','',0,'?'),('zz`z֨vK|','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_icon.php',0,'Z+4ݜW','Z+4ݜW','mLf[ૂHN5P|aRWB3','',0,'?'),('ĦވM','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_images_carousel.php',0,'iRˏ4j','iRˏ4j','xUd+2*-WKL7ڋNMB[','',0,'?'),('/.U~>','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_item.php',0,'UKmKU;$','UKmKU;$','E8N7;P@-[wkP','',0,'?'),('6bz_G','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_items.php',0,'nچJn6DYCUq	','nچJn6DYCUq	','*ć-뢇W89݉^]q5/x','',0,'?'),('j=D}^6','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_line_chart.php',0,'R/V\\V%','R/V\\V%','0.NSJQ˖7cVQtV4t','',0,'?'),('\Z\\P\0!͂sR[','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_message.php',0,'pe걌	BI','pe걌	BI','dS-d}Dj=%ѯ[m-','',0,'?'),('\rF67>?6x','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_pie.php',0,'K.|!\"Ǒh','K.|!\"Ǒh','\rQW<l\"^@\"^/#?','',0,'?'),('QH<=D','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_pinterest.php',0,'	WskBVY','	WskBVY','8#^^? _0nFk x:2+','',0,'?'),('Q8/\0BSc','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_posts_grid.php',0,'.Jspz)ZU','.Jspz)ZU','߬Y59[̖&\nH/X:','',0,'?'),(':hfIo','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_posts_slider.php',0,'>yQdڄ','>yQdڄ','7/	~۩x/\\#d?G','',0,'?'),('b.\r>k捈a','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_progress_bar.php',0,'h]q','h]q','4TjU&g\\=/<vewu','',0,'?'),('	M9 ','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_raw_html.php',0,'0(ռpi','0(ռpi','G渳-! fl\rWSŢ','',0,'?'),('io18J\0$','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_round_chart.php',0,'unrV\n;7d','unrV\n;7d','#C)bs~:*ǕFE0[ɗ','',0,'?'),('@)$8*+d*6BL','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_row.php',0,'v8Ĺ_B+T;','v8Ĺ_B+T;','#UQ	>Г@>mLf!6','',0,'?'),('I§zIg @Y','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_row_inner.php',0,'Jzlټi','Jzlټi','[OYU-4~\'g&','',0,'?'),('vA^(R {','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_section.php',0,'7/$dW٪R唂xG','7/$dW٪R唂xG','LDqnsYϥjXJА5','',0,'?'),('C#F>j3#A','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_separator.php',0,'ąr*8','ąr*8','P΢DG_gM\'QF','',0,'?'),('*M莠Y3U','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_single_image.php',0,'\"^ЇRQU @2','\"^ЇRQU @2','1F`8-Udv^8Z?	3R','',0,'?'),('c2 yn@^V','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_tab.php',0,'ħ}fq~wm^','ħ}fq~wm^','5S}aF5-1qXu','',0,'?'),('B^=zBǐ','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_tabs.php',0,'di4D>','di4D>',')Q)BǢڧD[q68n8C','',0,'?'),('u{(ӓ!׺','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_text_separator.php',0,'?\Z7>#m','?\Z7>#m','О=JH`AnA ]3Lu','',0,'?'),('r\0B4U	','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_toggle.php',0,'$T0Yf.fan','$T0Yf.fan',')ʸ`ƀiyڠdp檈','',0,'?'),('i˺z|rbd','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_tta_global.php',0,'jn_d~','jn_d~','[+_;Ҹ#H1U\r3Ufi','',0,'?'),('s4֞5','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_tta_pageable_section.php',0,'YoE.UOuIlڦ6&','YoE.UOuIlڦ6&','us^B02*teC;uB\n','',0,'?'),('#yfFLo\n8@','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_tta_section.php',0,'^!z(a3YMR','^!z(a3YMR','L]&f[8pz\Z-Ozp','',0,'?'),('s*+#M','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_tweetmeme.php',0,'0	9.m^˗','0	9.m^˗','PF/K;*~ҒxdϤR2op.@','',0,'?'),('5{Gexd>','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_video.php',0,'ɒhq6џ\0','ɒhq6џ\0','erȤ!	3Lv5HF,','',0,'?'),('\Z_ˎQe#e','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_widget_sidebar.php',0,'7Sbm','7Sbm','7ӡTe)P\Z@yT-\n?L:','',0,'?'),('L9҉x4+߿j\Z','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_archives.php',0,'f;ӢEB\n','f;ӢEB\n','v\r|tm!Z!X	)˻V','',0,'?'),('r3QKV-|\'?','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_calendar.php',0,'+بsQ62lI','+بsQ62lI',']`Y3z~\0E˾:Uj,@e(b:','',0,'?'),('\"\rΒVB','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_categories.php',0,'U\rO,ť','U\rO,ť','ot6Z}+	+\"XТ$P\n','',0,'?'),('=Z7R ','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_custommenu.php',0,'(JMK~<ye.3','(JMK~<ye.3','vS\\Ge@;JlA4uS,jn','',0,'?'),('\ZkK:','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_links.php',0,'o7M|\nmsEy','o7M|\nmsEy','ՕQֳ4Y85qFv','',0,'?'),('ܐpޢm','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_meta.php',0,'0fUG8','0fUG8','5-USfF\ny[iw&Ճ/iA','',0,'?'),('*z+[BJ5b','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_pages.php',0,'N=&dмZ-޼sr','N=&dмZ-޼sr','aaۛ7U?QgL','',0,'?'),('=pJ<P|+','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_posts.php',0,'B;ZQ%','B;ZQ%',' M%#.\'@DaR=7gr','',0,'?'),('EU:5a','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_recentcomments.php',0,' HyjGs7/~',' HyjGs7/~','	X(5J	yG>l槽󡣓ׅ','',0,'?'),('JĮIQ8G','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_rss.php',0,'&^]-0pnoT','&^]-0pnoT','8|2F2Iğ[%J\Zr','',0,'?'),('IVD','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_search.php',0,'JGHޖJwd','JGHޖJwd','iTޜg6\Zf#=&e\0ks`+','',0,'?'),(')E?Wf\n','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_tagcloud.php',0,'ß\rbheP','ß\rbheP','e݁.JEk6QSD}Т{eIN}@','',0,'?'),('Wղ:X/\\|Vz','wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_text.php',0,'\0Lta4','\0Lta4','@̡b\n=R$t8ٓ[?bcIN#\\','',0,'?'),('Qcw֭aF2','wp-content/plugins/js_composer_salient/include/templates/teaser.html.php',0,'5\nmcv%\Z','5\nmcv%\Z','Yq/8ŵ\ra@٪h޳B@ڎ@','',0,'?'),(';a\"X\r8?S','wp-content/plugins/js_composer_salient/index.php',0,'?l08K','?l08K','I1Il\0ڑG럡$js@UǄ$@w','',0,'?'),(';_<ͱ픎:','wp-content/plugins/js_composer_salient/js_composer.php',0,'A|{/1{U','A|{/1{U','l,ߕ~>MsU{Ж','',0,'?'),('D	Xxd/m','wp-content/plugins/js_composer_salient/vc_classmap.json.php',0,'ülW,r3{l\'','ülW,r3{l\'','M&}a!.lÖTK	','',0,'?'),('݅<ѿ@q\'','wp-content/plugins/js_composer_salient/vendor/mmihey/PHP-Instagram-effects/src/Image/Filter.php',0,'|^IzIa?4#','|^IzIa?4#','i<˸$>.FݎQG8MRJ(裲S','',0,'?'),('!\0np','wp-content/plugins/woocommerce/assets/css/_animation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2!.P6XkIjR','kt듧G[HU\ZK.','',0,'?'),('W{Yx9z3	t.톊','wp-content/plugins/woocommerce/assets/css/_fonts.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ASؔ+',':ؠ\"zm]2b!`(TE:L*W','',0,'?'),('bB','wp-content/plugins/woocommerce/assets/css/_mixins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',^+Q}gbs','9F<)[7 Kl>~&(%\n','',0,'?'),('MK ','wp-content/plugins/woocommerce/assets/css/_variables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c:7oxH\04','eh܁xoNvpԔ<[R','',0,'?'),('Bȋ\\_Dw;4','wp-content/plugins/woocommerce/assets/css/activation-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h;#䝜[$','*XoEآޑ`c2RGe','',0,'?'),('}dv@\'.\n..','wp-content/plugins/woocommerce/assets/css/activation.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\Z::)E','JUDMVDj]guׯ:ڼ','',0,'?'),('uQn+','wp-content/plugins/woocommerce/assets/css/activation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԒzY?M','my7.x֤Rlu.R','',0,'?'),('l	#[R2v','wp-content/plugins/woocommerce/assets/css/admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5G1|\"','5<~S\'R,\0:','',0,'?'),('^I(:궾','wp-content/plugins/woocommerce/assets/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pз*6aWH=','XY#EQ	&k[%][\n=+M;Zg','',0,'?'),('E GX/S','wp-content/plugins/woocommerce/assets/css/admin.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r0\rĔus','fP3\00Ɯ+N[R','',0,'?'),('=Q0S8u','wp-content/plugins/woocommerce/assets/css/auth-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wW+F1tBк=','N4ņ?FK[os=H2%?@j','',0,'?'),('ID$~^#\0','wp-content/plugins/woocommerce/assets/css/auth.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0Y{Br,','gݺ*;sz1~Xڊήc#','',0,'?'),('B3G-}MS]R','wp-content/plugins/woocommerce/assets/css/auth.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y\0Rve^e','ZC9{TQA\n/gXQ','',0,'?'),('23Tt齫`8','wp-content/plugins/woocommerce/assets/css/dashboard-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!USE\ne','Rα\n5fÒI\07o%\rb','',0,'?'),('W0÷gb%>4','wp-content/plugins/woocommerce/assets/css/dashboard.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aW~r$\r',':Q!=L4I8_mG','',0,'?'),('c0њL,/','wp-content/plugins/woocommerce/assets/css/dashboard.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AGBrN\r+','Ĝw[MCUݮ:wvN','',0,'?'),('΍raI_ݔ','wp-content/plugins/woocommerce/assets/css/helper-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']As`Q )%','9LooSnO\'jb)G[*Ug','',0,'?'),('\02];<','wp-content/plugins/woocommerce/assets/css/helper.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y\\P-','Ev@R_I	!Mna6}6dڰ','',0,'?'),('>v)ZNB','wp-content/plugins/woocommerce/assets/css/helper.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0୙xce	t','p0(5g,pg;,P=\0^w	lF(/','',0,'?'),('L9INb](t','wp-content/plugins/woocommerce/assets/css/menu-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B>|_3ZQ&','fBKyĺMu1@ע?\\g	\Zc\ZsD','',0,'?'),(',cS̻͘VgBm','wp-content/plugins/woocommerce/assets/css/menu.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U@{|S?%','auWQBs!)%[@S)ɘ})','',0,'?'),('~9-:#Cn','wp-content/plugins/woocommerce/assets/css/menu.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TX2ADqA\ZQ1Ž','XxFAn18Тf35WC9','',0,'?'),('@%jX-	V','wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"@A$Q (q>)','zw#hbq!}س|>hnO','',0,'?'),('\"Wq>gB*','wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɯL9$','A_C {.:hQ{2N','',0,'?'),('JF~@a\rc','wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WZMwg)C','5#tjVc6\nPn1o\'','',0,'?'),('[Ms\"+Z','wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/preloader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JHZ򧉲:','j.O멆3\"aթZ1ݷ_','',0,'?'),('X]-1PR15rP','wp-content/plugins/woocommerce/assets/css/photoswipe/photoswipe.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!X#mI','Ҵ\'`(U_Jq(t','',0,'?'),('\\`2\\Xo,Q{@','wp-content/plugins/woocommerce/assets/css/prettyPhoto-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','am6QN8P@','XW6e;9p\":hza>/TE','',0,'?'),('fw}WE~Q\"%','wp-content/plugins/woocommerce/assets/css/prettyPhoto.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!QB	쓜','P9@)df]foQ]:0','',0,'?'),('eӵ|}','wp-content/plugins/woocommerce/assets/css/prettyPhoto.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D=\'UEv&2c','D<vv1ù@E','',0,'?'),('i2fә5581s','wp-content/plugins/woocommerce/assets/css/reports-print-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'n[=>ȡ0','K!$gkěNdV9','',0,'?'),('Vf6A]0\"','wp-content/plugins/woocommerce/assets/css/reports-print.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WDuu@~6yv','!$0Yn3abmmnUʠnV[%3i','',0,'?'),('1b\r2la]߸','wp-content/plugins/woocommerce/assets/css/reports-print.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','={yv&PPm','`]ٳN.dEдҿ\rW','',0,'?'),('=M9gU(','wp-content/plugins/woocommerce/assets/css/select2.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʼwx0-bZD','q͑kVi׿ᚯ?eIT3	+!','',0,'?'),('pC@Sd\n`','wp-content/plugins/woocommerce/assets/css/select2.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4E\n*C','N`d5Rz`o\Z\Z(','',0,'?'),(']C>%lS','wp-content/plugins/woocommerce/assets/css/twenty-seventeen-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@\'.\ZW>N','&Q6reQ3l7.7L^WLIP','',0,'?'),('6\r2T0rˣZ','wp-content/plugins/woocommerce/assets/css/twenty-seventeen.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H ]tN )gG','Z|@ɷC\Zo0,C\'I','',0,'?'),('vwm1=','wp-content/plugins/woocommerce/assets/css/twenty-seventeen.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@m2l,b*','(+$jQo_E=}O','',0,'?'),('	\0])2>F','wp-content/plugins/woocommerce/assets/css/wc-setup-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X\ZbH6H\'k','4LEKs;ȔsQ~9T','',0,'?'),('\ZM-<\'^','wp-content/plugins/woocommerce/assets/css/wc-setup.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l@ɛJU','%G)*>qJafCC:J»','',0,'?'),('9=@#:@8','wp-content/plugins/woocommerce/assets/css/wc-setup.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XhwFC','X̍e66>klЖNv5','',0,'?'),('HnM86&CDMMN','wp-content/plugins/woocommerce/assets/css/woocommerce-layout-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KƧ-cE%','D^0Ȃ`pi=C`','',0,'?'),('fbbKJ','wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z|Wx8k','v&l,_.{(n[vI՞','',0,'?'),('5Ǯ{:&kT','wp-content/plugins/woocommerce/assets/css/woocommerce-layout.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jao,@{MW','|Ow\r_ϸo?3$v zN','',0,'?'),('LLG=Z0C\'Pu','wp-content/plugins/woocommerce/assets/css/woocommerce-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=}QѩCoDc','\0Ս+(ytƉF$}54F+?','',0,'?'),('h;THlEDv[','wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%&mꟀ9mOe','&݉C)iI 6y ','',0,'?'),('YM~B\'','wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hˀku/\'(','CWtݾr7xt0%-~\'','',0,'?'),('ۡ`A;ʾ','wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"3VHú:','K	ф3(? >O\Z\'/@r','',0,'?'),('=uܑ','wp-content/plugins/woocommerce/assets/css/woocommerce.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʉ;ugƫA-\'','2z\\o\rW͜Wtxt?\'q*1|>Ղ','',0,'?'),('oQAީc#','wp-content/plugins/woocommerce/assets/css/woocommerce.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(\0RW޻{','=J+ТYêbG8b#`7fm','',0,'?'),('<ccWX3u','wp-content/plugins/woocommerce/assets/fonts/WooCommerce.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7I\0i','Do(y6*B1}eMqFN?ԄS|','',0,'?'),('jKKT\r<','wp-content/plugins/woocommerce/assets/fonts/WooCommerce.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lzsk9=N ','47{Q#5	-=(B','',0,'?'),(']Cy.aA,-','wp-content/plugins/woocommerce/assets/fonts/WooCommerce.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CбToI','Iﴱ\r\n}ֵ)\0Iѿ Psٗ#','',0,'?'),('BĶbN','wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uy=iţ[-r','y=IӃlrchlLk	M','',0,'?'),('R8^\nɽl','wp-content/plugins/woocommerce/assets/fonts/star.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZogZV$','oj?<t+Q/ؿi\nNw','',0,'?'),('N{^wD$@?\n','wp-content/plugins/woocommerce/assets/fonts/star.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v \09(<8','YP2:q4qӌ\reCO#K','',0,'?'),('\0:zler~+\nNyw','wp-content/plugins/woocommerce/assets/fonts/star.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kxL2D\Z^','?|.\"~Zц>Iy#','',0,'?'),('4Pк09\Z','wp-content/plugins/woocommerce/assets/fonts/star.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3\\`|U2\'','#19#~C9DеeH','',0,'?'),('DUn[RgdP','wp-content/plugins/woocommerce/assets/images/calendar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cz?;w','Z\Z<}-x\Z*P݊ gB','',0,'?'),('\r9~)Eh','wp-content/plugins/woocommerce/assets/images/help.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q5jl)\r)','-\0~kH?p/IӴ-f.Q','',0,'?'),('Ldh?چ?[','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/amex.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KifC+~c','>2Lv:NnDuR^__Sp!VL','',0,'?'),(':k$o>1d','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/amex.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/|QE+z','\r;h\ryZVL]~.KUKۻ','',0,'?'),('F[xYYt>x2','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/diners.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AvܰTS','.9!.+60ABJdZ\Z; S','',0,'?'),('oaʥʬTH}t','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/diners.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׬X5Z^','2UTf\Z\0\Z_GW;mwl','',0,'?'),('pfkN~','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/discover.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!_)t0B','8!bWmrzu)4D\\$Ԙ	Иu','',0,'?'),(')D@#<Z','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/discover.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J:؉\nR.','{Xm3OF#* qwn-\Z	','',0,'?'),('\03/l$Maj','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/jcb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k\r-x%])','`S`I1jGJpYiF','',0,'?'),('#]\r=كv','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/jcb.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pWι*=u0_)','u-xZ$^cYB?޹5','',0,'?'),('@hCf˻xo\'','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/laser.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','awna˨-','<AouǨH@\ZYb̴ҵqOJ','',0,'?'),('62&e5','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/laser.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a\'A`Cro	:','C-;ȵ\\;a̧zTE#r','',0,'?'),('@f	iz3}-y','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/maestro.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')8)hu/h','DvmQEo0zDX','',0,'?'),('~3OKxh|	','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/maestro.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$>b\Z^eբ','yж$yHBuO|@	ɍ','',0,'?'),('#c4m\"CK','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/mastercard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4{eì<A瞐','\rڕ<XWh#b#(`','',0,'?'),('I-gfE݇0m','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/mastercard.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4)pJN1','\"jFAq2f11qa\'Iu74\n߉','',0,'?'),('շ5CE/.Q','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LevqKL}J','!$y=.ɚ|8|S,hp','',0,'?'),('Au\\AU','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xz2U\rz','@\0<hPwjr9\r\ZZd','',0,'?'),('ܶO;hTI','wp-content/plugins/woocommerce/assets/images/icons/edit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nƻ3a+','8RO2BUV@Ulu0Va','',0,'?'),('ov?)!y','wp-content/plugins/woocommerce/assets/images/icons/loader.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Αʹ','<CA}ȥMM]tsV','',0,'?'),('1o;Uw~)&k-','wp-content/plugins/woocommerce/assets/images/paypal-braintree.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֏|.N#کĢs','l4<U/(<**H3<RZpGN8_','',0,'?'),('O]&jO}@','wp-content/plugins/woocommerce/assets/images/paypal.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nʀ$h7]o','fg)v 8[{w','',0,'?'),('|SRu[\n','wp-content/plugins/woocommerce/assets/images/placeholder.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/1Icf','{㿓ٶ! 8({*x+zya','',0,'?'),('Xq@W$)5ǻZ[2Ӹ','wp-content/plugins/woocommerce/assets/images/select2-spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{vm_I\\','\r鋕1(pKHKBYeB','',0,'?'),('gˑ\0|7Dd','wp-content/plugins/woocommerce/assets/images/select2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',v SWaZI\0','\ZS=OnSmo }','',0,'?'),('OiuD}j^','wp-content/plugins/woocommerce/assets/images/select2x2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ib̩','0)Lq:ӸPq+GTs|','',0,'?'),('_nZW3%HO','wp-content/plugins/woocommerce/assets/images/storefront-bg.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=ֲ(kZ7','E\'pV$\'8{<aP/}','',0,'?'),('m&D6XjeY','wp-content/plugins/woocommerce/assets/images/storefront-intro.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':N%|$ؾM.6,g','뒰t7IB<VҲLMVB\0','',0,'?'),('5q$P','wp-content/plugins/woocommerce/assets/images/storefront.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KWU&-W9','-Sʬ;Ug2*-(9HC\nβ','',0,'?'),('DvZS$b','wp-content/plugins/woocommerce/assets/images/stripe.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L^_TZ*:','O0V*u}z&ߵٹ;)hB_F\rZ','',0,'?'),('(ը\"Aj\nМ','wp-content/plugins/woocommerce/assets/images/wcs-canada-post-logo.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iFoj','*!1)Pp,\ZK@l.rPtG','',0,'?'),('p}j.4O','wp-content/plugins/woocommerce/assets/images/wcs-extensions-banner-3x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z3u8̷Е#*Vn@\'','[ꍚEi_znKEyDw','',0,'?'),('UΆA#Ћj','wp-content/plugins/woocommerce/assets/images/wcs-truck-banner-3x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ەV`{~t','Yf\n\0]!R5i	$]%//','',0,'?'),('i{هZ]8\"','wp-content/plugins/woocommerce/assets/images/wcs-usps-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rŻzXY','hQ(0T ݰNm;l}ݟ','',0,'?'),('6=\Z-PCd\r','wp-content/plugins/woocommerce/assets/images/woocommerce_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7e{ǒ1,R(B','ݽc69n\n)g9f','',0,'?'),('/^Z:s','wp-content/plugins/woocommerce/assets/images/woocommerce_logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Ԏ|Kゥ\0x\\','?6m2t˯\rydq','',0,'?'),('߁۔$','wp-content/plugins/woocommerce/assets/js/accounting/accounting.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>~z)B7','9QJ;vg1iE\0@KO','',0,'?'),('X~<vA','wp-content/plugins/woocommerce/assets/js/accounting/accounting.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ry%bPU','ӀOd;]>oWgɵ','',0,'?'),('{/:p+j;','wp-content/plugins/woocommerce/assets/js/admin/api-keys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ߧt^Z@w','d\Z_pVa3 ~46@JJ<IT)(','',0,'?'),('|yiW5*','wp-content/plugins/woocommerce/assets/js/admin/api-keys.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0W\'\\X=','}wsfN^yȐVV7','',0,'?'),('f:%5,n;D\Z','wp-content/plugins/woocommerce/assets/js/admin/backbone-modal.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%|t>','|ᅆ\'6<wFYtQn[','',0,'?'),('t5]ö','wp-content/plugins/woocommerce/assets/js/admin/backbone-modal.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DߎTϾ-p=','K3%<\\eS3㏄83(.*7\0ܳ7','',0,'?'),('gV7Qtry','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-coupon.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VfUP#gle0','R@vA3IyKڪ㑻y1','',0,'?'),('T%|Ow#e?','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-coupon.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M$gKM%oۑw','\"	C*hH,G-)tITy<','',0,'?'),('jHNw#=`','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-order.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Yt^8ˤ%/','D,ZuK8>9ilC\02<Q3','',0,'?'),('yNOgF-\Zg\nC','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-order.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H#f57NHhֽ','Yl,ȐBo6r@tR}Ht','',0,'?'),('wYBqM','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product-variation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%اة\0fa','.r\nG}/>[#L!,','',0,'?'),('wOA5k_u','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product-variation.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{\rnǀ[d','&JX\r\0Oű(:','',0,'?'),('_6E3`','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[IrWȄZ̝0','qR2e\rs7/,#E;2MZ','',0,'?'),('u-J&8K','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f=RgZ','Q_lw~ݕ-4;47','',0,'?'),('!eю}\\w8e@','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|wƷ6 xR~','U$Ly@WN:%Ezl','',0,'?'),('[4pgC%*o','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TΛ.e/i','[t>ySHļ1Q2z<','',0,'?'),('~49o?S','wp-content/plugins/woocommerce/assets/js/admin/product-ordering.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r\ZQ_t^','v3̵T̵rE0\"#3Eq!EWH!Q','',0,'?'),('}e$F','wp-content/plugins/woocommerce/assets/js/admin/product-ordering.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','II@\rVVЉq','m!/l|b{)~Q# ','',0,'?'),('?~RטnB6\\','wp-content/plugins/woocommerce/assets/js/admin/quick-edit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g$Ïv5{WX','p5!hNJ*!Ϸhf,̞[','',0,'?'),('69H_A*@\'A8','wp-content/plugins/woocommerce/assets/js/admin/quick-edit.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','32mٖ-_ {b','kkz#=?Tw%K','',0,'?'),('a<*tfE4','wp-content/plugins/woocommerce/assets/js/admin/reports.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L8sh','VQfZEݣ\"r\r(','',0,'?'),('S|d]206','wp-content/plugins/woocommerce/assets/js/admin/reports.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HSӑٰ','|uo,qlK?NQ3wJ\n\'ln','',0,'?'),('֋n(Epl','wp-content/plugins/woocommerce/assets/js/admin/settings-views-html-settings-tax.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/ux\0*ŉh	Ѿ','Ð7>Z.\"] 7kqOC','',0,'?'),('PܱԄ?)q','wp-content/plugins/woocommerce/assets/js/admin/settings-views-html-settings-tax.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nF\'26K','^2Ҏ\\<(1>	2Bv(','',0,'?'),('ؚA\rZ','wp-content/plugins/woocommerce/assets/js/admin/settings.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pg\0=g\n 3','N^B21Y,\0\'ͤIJQkrfY','',0,'?'),('$-hꍪr3K','wp-content/plugins/woocommerce/assets/js/admin/settings.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nOX(5;Ȍn_','t&8\0P>F~ݖz\0V\'','',0,'?'),('wllL#h','wp-content/plugins/woocommerce/assets/js/admin/system-status.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zĵ*Y','oWOM8dњG)ɸ','',0,'?'),('E;9كb','wp-content/plugins/woocommerce/assets/js/admin/system-status.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\q/$*h+U','r.Oq55\'gz47(\")+R','',0,'?'),('CXC&&*[*N','wp-content/plugins/woocommerce/assets/js/admin/term-ordering.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vv\\ZqEkz','tf\0;7O^Qs}Ֆf\'OR}','',0,'?'),('>N5ar,','wp-content/plugins/woocommerce/assets/js/admin/term-ordering.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nx2.RTBuA','[Oɷ	e`QKYU.6jH','',0,'?'),('\"+J9u','wp-content/plugins/woocommerce/assets/js/admin/users.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']=ж\":<','\0jƦL4N~nxcFJ_MVŐ','',0,'?'),('*7b1q֒)','wp-content/plugins/woocommerce/assets/js/admin/users.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8XE|env}','UB\"\rX:e7W>ih/nW','',0,'?'),('1/m#a]c8','wp-content/plugins/woocommerce/assets/js/admin/wc-enhanced-select.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$/֔Uoc!J','n!8)ao\\#\rB7CC{','',0,'?'),('y$yO[NLy','wp-content/plugins/woocommerce/assets/js/admin/wc-enhanced-select.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w٧POy!Q[','2	%d2tE׳@tPߍ﷌','',0,'?'),('8qCԴ@AܰG=','wp-content/plugins/woocommerce/assets/js/admin/wc-product-export.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/=eHU','{x~V%Cp-|lj\\)n4kfr','',0,'?'),('Ҟ/G^X0#u','wp-content/plugins/woocommerce/assets/js/admin/wc-product-export.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x\\#!','·툆n\Z6\n#0C\0lE\'<','',0,'?'),('n1OFKGBb','wp-content/plugins/woocommerce/assets/js/admin/wc-product-import.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`E9\"\ZdĔy',' \0jlWĒoH1#r0oO[_','',0,'?'),('=I8,.9%','wp-content/plugins/woocommerce/assets/js/admin/wc-product-import.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~^Ɖ\n\Z','X2\\`ze,M14A7L+\r','',0,'?'),('CA_٨~','wp-content/plugins/woocommerce/assets/js/admin/wc-setup.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':YB6ƻ','M߅-/XWr֘\"Ϳ','',0,'?'),('R\"p5i\row[6','wp-content/plugins/woocommerce/assets/js/admin/wc-setup.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f#$$	>ܷxA','yLjOhGY4\rp+,','',0,'?'),('!BDʮQ','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-classes.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʙ?-<p','\Z`X	a499n,<},T?H','',0,'?'),('ABw)0:;','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-classes.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"W!٫	','G2|g]]sZG[ONuƈ/X','',0,'?'),('p޽ [OV','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zone-methods.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r6xD*','}~h1g8+97c\\5>&;','',0,'?'),('i)*=O6q\nA\Z','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zone-methods.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','blwO','UEj=|V\"]Qi=ls','',0,'?'),('kx]:mYʮ	}','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zones.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ã	vc/e',']C]^_zc	7\'4\Z#F','',0,'?'),('zķ{{p/ah,O','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zones.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y8\rrUG','𞉓<Mɡʍrn\'4','',0,'?'),('_Q([TJXѐPa','wp-content/plugins/woocommerce/assets/js/admin/woocommerce_admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Egz]\0, qE','sMB5/qRrVYeC\'k','',0,'?'),('?I/U֌ˢ3dC','wp-content/plugins/woocommerce/assets/js/admin/woocommerce_admin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(br۾','G!N\Z-*\n\n@)W-r\n','',0,'?'),('S~21Iy-','wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!(ʵzXqTW!','X$ߺP\"L3o%:W^X52/','',0,'?'),(',yev]NM','wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G0ri5SA','8]@\':D|Cy-U~','',0,'?'),('W?2.W3','wp-content/plugins/woocommerce/assets/js/frontend/add-payment-method.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tsCq5M\"c~','1yANv6g9:f٤\\)w7','',0,'?'),('6kciOM','wp-content/plugins/woocommerce/assets/js/frontend/add-payment-method.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-X\ZXOl1','6l)t?a\r@ͿrL8+n','',0,'?'),('R&EL]h+','wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǋ7/iq','؎LyXl֍F;pG','',0,'?'),('Җ}hҋa(','wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`ю@uI0Hu','8{|&:K_j%g5I,','',0,'?'),('}!r,t.\rh','wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ИhQT_','_Y\rxBBΖF7qv|$','',0,'?'),('C_8*c\Z2d`{Y','wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\Zp%Q#܊','-}їwؚȶm5%\"K','',0,'?'),(';APӝZy','wp-content/plugins/woocommerce/assets/js/frontend/address-i18n.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ks1s=b`','eú+_YbY\"b7rCh/a','',0,'?'),('t_z&U旜l\Z','wp-content/plugins/woocommerce/assets/js/frontend/address-i18n.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tpv6<','WIF)E!ӺLNZf~ٲRdw','',0,'?'),('L2j>a}W\"','wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`*Ƈk+','֩\nP8t9Sn^\nr	.X','',0,'?'),('d͒wIoe','wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dL=ًx','= m9o&ӌ|d	Qܿ','',0,'?'),('(U{(\\','wp-content/plugins/woocommerce/assets/js/frontend/cart.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0&$46N]',' x!\0Qc9,\"Hܒ&P8','',0,'?'),('t kbr}','wp-content/plugins/woocommerce/assets/js/frontend/cart.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9IjkJf','N(ߤw	/&OpᝫH','',0,'?'),('NFmt`$','wp-content/plugins/woocommerce/assets/js/frontend/checkout.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9c7?χ','+pgfm#t2O}Bl$Q}','',0,'?'),('_9˂','wp-content/plugins/woocommerce/assets/js/frontend/checkout.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I}*z	y','>lc/Jn	8v,61\"*H/','',0,'?'),('vA]ՈL?p','wp-content/plugins/woocommerce/assets/js/frontend/country-select.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Q*2<:wuNB','QR/^CuP6@^U','',0,'?'),('XF2/\"=h','wp-content/plugins/woocommerce/assets/js/frontend/country-select.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']h44n$|','\'iAv10(>M','',0,'?'),('.[ȯ.*:h','wp-content/plugins/woocommerce/assets/js/frontend/credit-card-form.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~wh%\\','D~	mL9l<;~bp9FMtVl','',0,'?'),('GՅYy]^;','wp-content/plugins/woocommerce/assets/js/frontend/credit-card-form.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0)FP6=nL1','̓OgytD?alTQ}AK','',0,'?'),('/>IN','wp-content/plugins/woocommerce/assets/js/frontend/geolocation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"+tJxu.','ɶ7w\'FǉdET-47?o','',0,'?'),('.{z鹮Y5','wp-content/plugins/woocommerce/assets/js/frontend/geolocation.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IaBm 1z8','C,w!IQ/NAUݏ3^y;','',0,'?'),('hu!IU','wp-content/plugins/woocommerce/assets/js/frontend/lost-password.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\쁚>','0$EKWht3uvz=;\\Km~','',0,'?'),('\"̃tq)l@;̏','wp-content/plugins/woocommerce/assets/js/frontend/lost-password.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"i{@\0=t','ߒ(y^\"E CN\\.	p[b','',0,'?'),('&LҿwWTn\n','wp-content/plugins/woocommerce/assets/js/frontend/password-strength-meter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i<$3g','-\\\n/IS&O\n\Z;','',0,'?'),('\rW\064XS','wp-content/plugins/woocommerce/assets/js/frontend/password-strength-meter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6&!亯!','\Z\0h0ZsSddŻkh\rg*;','',0,'?'),('M\ZJYٺؾi','wp-content/plugins/woocommerce/assets/js/frontend/price-slider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gk0?','SKG%6}xnmRם<~_','',0,'?'),('ڃ뷷nqF','wp-content/plugins/woocommerce/assets/js/frontend/price-slider.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZlFX ]w','5C K(8nۦUԘ<','',0,'?'),('eZx\"&!tr','wp-content/plugins/woocommerce/assets/js/frontend/single-product.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H60c\'\0.','29W+WqX?oFq`5{e@{','',0,'?'),('4Jf5C>ŚR','wp-content/plugins/woocommerce/assets/js/frontend/single-product.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0Rj|[wNՕ','.UDR%\\s~P/','',0,'?'),('m\n適WX?','wp-content/plugins/woocommerce/assets/js/frontend/tokenization-form.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')[+ZFꥬ4','Z}+\0\\H\0cV|m\Z(I','',0,'?'),('XvC%h\r','wp-content/plugins/woocommerce/assets/js/frontend/tokenization-form.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','znSNNy\nkG','VB㬸c7Wz{lxٟ8r*','',0,'?'),('kg\'c}','wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T.aC\0','֤JICC[|\"w匯{m','',0,'?'),('?^V$k`3','wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vR4\Z-^(','NM\\j.9B4SX ы18a','',0,'?'),('TVh]eXhx','wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[04Fb','f?O=*c#/f)ݢc','',0,'?'),('dEjHU<~\n>3ZW','wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ilMb{m\ruf','Zo?аfG?A5ws7/ܔ','',0,'?'),('mׂG+|ߖ','wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y/$P=TM','=Lӯ5BJj0u_aMY`','',0,'?'),('aa߈J}\rPZ','wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?[cjZC^b','ewR8MSK\n#m\\.','',0,'?'),('Yji','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Q./:\n,','	\'ˎ껞o	(:Vp<Ht|','',0,'?'),('⻷ɡur;','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@tΎ}#I','t`ڡgA)d[҈hTTg!','',0,'?'),('U$<V\nTqzx','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z;5FdMɬ','|U㢭F4:aF])','',0,'?'),('&9%BHn','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dx0]N{','\Z\n׃s$S_/@O\\','',0,'?'),('3i49Bw5','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fDU$','ezN{80NofL%\n**H/\ns`^','',0,'?'),('UUC6Uh{(M|','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z9E`:[,V','w)R4<pکd\0_\Z+','',0,'?'),('0r*_W븫5m','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5:ǡ0-<B','Y]AS!c-TNřIƚ','',0,'?'),('Qzc`JŁ{R`\\','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','碨\"O','1!j0yW(6aS\raNnpT','',0,'?'),('붰D<c,m2','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WD5z)I','$Ą@yUNR^1gy?QL-w','',0,'?'),('I=o%','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lK	@Eu','{;Uk%I=weTW\rw','',0,'?'),('\nEd','wp-content/plugins/woocommerce/assets/js/jquery-payment/jquery.payment.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-6żCe','3ABDSD;|Mcg\0=Uv89','',0,'?'),('RX@Wkzd{+,','wp-content/plugins/woocommerce/assets/js/jquery-payment/jquery.payment.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	zkRMsi','2fa<TaTӒM+5,] G','',0,'?'),('^n[a','wp-content/plugins/woocommerce/assets/js/jquery-qrcode/jquery.qrcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rKGj@','q\0+vh1epW^~am','',0,'?'),('ʕ=f2N3','wp-content/plugins/woocommerce/assets/js/jquery-qrcode/jquery.qrcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&4UhZ	\ZVU','s?}VyfvPsCr+f','',0,'?'),('.n(\r;%MJ','wp-content/plugins/woocommerce/assets/js/jquery-serializejson/jquery.serializejson.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t9O/׮$\r','ez1)P,GItY$\'\'O򑞩','',0,'?'),('{ΓO#I','wp-content/plugins/woocommerce/assets/js/jquery-serializejson/jquery.serializejson.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S+\Z2V6\'','5tYt{\nkP04-.R','',0,'?'),('hFՄ)ih','wp-content/plugins/woocommerce/assets/js/jquery-tiptip/jquery.tipTip.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eK[u=tv3','򰢺/{f곕E\r{Q2S-CxC/Nn','',0,'?'),('Z_Pf<7#4','wp-content/plugins/woocommerce/assets/js/jquery-tiptip/jquery.tipTip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1IaK!*2','[_6^)\nzb1','',0,'?'),('C\0lUs','wp-content/plugins/woocommerce/assets/js/jquery-ui-touch-punch/jquery-ui-touch-punch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YLxkb҂K','$˰TWՉ{%(Lο5','',0,'?'),('kr84)zn˰','wp-content/plugins/woocommerce/assets/js/jquery-ui-touch-punch/jquery-ui-touch-punch.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OT27,4 n','xhw;qR','',0,'?'),('LyUNu@ﻵ','wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n:Zsw8','_V-ǦHXȘ>','',0,'?'),('5w&X~	','wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?nb[e墄','6~dR Qgc^9iD','',0,'?'),('4池\"ihŮ','wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CΊEb\\','JW޿E6?>	q\'S%km','',0,'?'),('?\':<*gPu','wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cyeנ$u/q\\I]','T6\Z.fF+hUiGٝ#Ryj*O}AYrb','',0,'?'),('Bτ~ww=/,E5~s','wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oICYJֲS','Up@0XM[tyI8-c','',0,'?'),('>AK3=R(>:d)','wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2:xx:|NK(','`*a%w|:,a\'Sq','',0,'?'),('C}0%ip7\Z/?','wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.init.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*;KB','Cd\Z26y)Ko3C07','',0,'?'),('F,;׼I-v?','wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.init.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ _=','gd]Ϸp~5yfh7-ĵQTgG','',0,'?'),('ؕJ7a?','wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','翂%NC8cB','9 LxÁOZijW$4','',0,'?'),('|ړM9','wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3S2=mTW','֥tpǩMܒ2ӥĳ','',0,'?'),('!!O/\\u*b','wp-content/plugins/woocommerce/assets/js/round/round.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bLŨZH+j^','1W\'\nK]vYϧX~\r`hW@','',0,'?'),('XN퇙Ԫ4*','wp-content/plugins/woocommerce/assets/js/round/round.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FӍ҆{W5','D;<_{qe*\rhЈR$?Hcql','',0,'?'),('m<۠Qqp@','wp-content/plugins/woocommerce/assets/js/select2/select2.full.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S#G`\0עRxmc','I;QYk^P&~ɮ?W','',0,'?'),('-Uqa\Z>c','wp-content/plugins/woocommerce/assets/js/select2/select2.full.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`s`R֍T9','إI%40ur=TOTE\0/p\'','',0,'?'),('Y^XzS','wp-content/plugins/woocommerce/assets/js/select2/select2.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ms<bc\'>','ߚv+2*,_i\nzVGV >','',0,'?'),('/Gy9ǚxX','wp-content/plugins/woocommerce/assets/js/select2/select2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!P	0\\>','zCdw>R= t:dcKgK.XC]Ny','',0,'?'),('kq\\7n2G','wp-content/plugins/woocommerce/assets/js/stupidtable/stupidtable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F5NE?Vcu_؂','!uWP@<ߋ~EVw[8','',0,'?'),('ölyk!̏zh','wp-content/plugins/woocommerce/assets/js/stupidtable/stupidtable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H	|(7S9΁','Zd`hY/=pJm','',0,'?'),('w+Y\0fs','wp-content/plugins/woocommerce/assets/js/zeroclipboard/ZeroClipboard.swf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\{7/Jp\0&','@D7N}0	w\0ҍ}','',0,'?'),('⩄96(nL;','wp-content/plugins/woocommerce/assets/js/zeroclipboard/jquery.zeroclipboard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/,Z\')h#&',' feyC>vd:7 ','',0,'?'),('!VL;Au','wp-content/plugins/woocommerce/assets/js/zeroclipboard/jquery.zeroclipboard.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d)\ZaJ+','86Qi~6?+T!cy[$}YW','',0,'?'),('D\Zl*Zq','wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^\'_ҘMdD','<QcnĹ7RUhԙ$qø','',0,'?'),('ڻdZH','wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|K;H@&',' 伎k	`_~h#\rm3xh','',0,'?'),('t9?*','wp-content/plugins/woocommerce/dummy-data/dummy-data.csv',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r˩p}$py','NWص݇\'K)Ϩ\nigd4\r<+7S','',0,'?'),('EWlQbi','wp-content/plugins/woocommerce/dummy-data/dummy-data.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@}+%z','\\YѠk\r򞰇>1C9\"DF$AS','',0,'?'),('	&)DcUJvWG','wp-content/plugins/woocommerce/dummy-data/sample_tax_rates.csv',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';BtùoJt','sp@R$1@Meˌ2|Wi0L','',0,'?'),('\0s],=u','wp-content/plugins/woocommerce/i18n/continents.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IVRӞ,	','U$\Zed+;l1h','',0,'?'),('#<w8c','wp-content/plugins/woocommerce/i18n/countries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' =mDWAOQ','BLAnt3?֭ΔXzK','',0,'?'),('\'2)xǼ','wp-content/plugins/woocommerce/i18n/languages/woocommerce.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RC9b/x','xv6J?TH=bQ','',0,'?'),('#mz5','wp-content/plugins/woocommerce/i18n/locale-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mr\n/','Ӹa؈.:d\0>2{n3B','',0,'?'),('(Z>jNl9','wp-content/plugins/woocommerce/i18n/states/AR.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\oҢ\01p','ҶPyzf*UЩ]6c!A','',0,'?'),('4\Zr\0}lq\',','wp-content/plugins/woocommerce/i18n/states/AU.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QXڂSIH','\'\Z-h/hfc`6N\r','',0,'?'),('s9(4','wp-content/plugins/woocommerce/i18n/states/BD.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bq1ׄ^\rK|',';ZRSSFb4A\'`|{he','',0,'?'),('#)m}\\Z,Ʒ','wp-content/plugins/woocommerce/i18n/states/BG.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0٫Wz7','.٘>Lȷ\r%Lî:9L','',0,'?'),('xG\r\r#','wp-content/plugins/woocommerce/i18n/states/BO.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\07sڦ骛XUt','PD̃kQ\\Bz.\'<QOk','',0,'?'),('S50p_g','wp-content/plugins/woocommerce/i18n/states/BR.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l	Rȷ(','VI	\r9eT7\r0c','',0,'?'),('X;ԭ0xR','wp-content/plugins/woocommerce/i18n/states/CA.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z﹅ʠ;dS','JhgU`Τbm42	ʧ6Wƥ','',0,'?'),('-4\0AAN^\'','wp-content/plugins/woocommerce/i18n/states/CN.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','韢+aCqP','N P~|\"jB=\n@Ĉ=','',0,'?'),('f j','wp-content/plugins/woocommerce/i18n/states/ES.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jx\'QBRe','/\0텤_lx<_k=ű:m','',0,'?'),('Ȇw}Cq','wp-content/plugins/woocommerce/i18n/states/GR.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qV!WE=5X','ih$>27f &\\\rO','',0,'?'),('1X7ҁX0K^','wp-content/plugins/woocommerce/i18n/states/HK.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=JN|:B','GtZiC^h;6Ӎٸ\r%hh','',0,'?'),('1ZbU C$','wp-content/plugins/woocommerce/i18n/states/HU.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7WǨNZ','\Z>SV.H:;fBfF.La#C+','',0,'?'),('(R\0HBwè:8','wp-content/plugins/woocommerce/i18n/states/ID.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=㽸Ġ','\rygtyXi!nU<;v/','',0,'?'),('L<\ri{ŻOz','wp-content/plugins/woocommerce/i18n/states/IE.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߳\\s\Z','\'`OB2H4)8m','',0,'?'),('ks+07a7 p','wp-content/plugins/woocommerce/i18n/states/IN.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b|@a<a',']YBYl,Frnr*`04z&\'0','',0,'?'),('eW`%ڵKvSb','wp-content/plugins/woocommerce/i18n/states/IR.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^L\nv\"=','C!ɭ@OPj};k	::+cQ','',0,'?'),('g]Ҩ[','wp-content/plugins/woocommerce/i18n/states/IT.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c~|ê','fDYj\\r%o(NYWV<','',0,'?'),('B/HHLŰ','wp-content/plugins/woocommerce/i18n/states/JP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jc5shIi(','l͌:@w쌤Kt6u<a;w','',0,'?'),('xԛ:#-V`8','wp-content/plugins/woocommerce/i18n/states/MX.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gH꼀U','\r\nD**7xZtcCJI+[qL','',0,'?'),('ϊ;!b945Q','wp-content/plugins/woocommerce/i18n/states/MY.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yODsǑ>1.Q','ryK>583:@_+#r4s','',0,'?'),(',@Z\0 jV','wp-content/plugins/woocommerce/i18n/states/NG.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O(s)nJQ','Ʊs,\'\rWһwz}u7~','',0,'?'),('ەֈQc@xŞ','wp-content/plugins/woocommerce/i18n/states/NP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\\iڝ','\Zv\\%bGlg2l{,_UMX9','',0,'?'),('fy\'~4?9f','wp-content/plugins/woocommerce/i18n/states/NZ.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$araS5','Lܦn+\"8(BbDl>G','',0,'?'),('ܽk\'dbrp','wp-content/plugins/woocommerce/i18n/states/PE.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JJO{u4c','ך]jTeUFy!OHl','',0,'?'),('8Nqj','wp-content/plugins/woocommerce/i18n/states/PH.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yڱ!5q','Yy$bJe6y_&7P2','',0,'?'),('P.{+&\0D;;','wp-content/plugins/woocommerce/i18n/states/PK.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eSnՇ箄','JmxI\\-\'f\"ܞU\\G[w','',0,'?'),('\'|g\"c0?.\n','wp-content/plugins/woocommerce/i18n/states/RO.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/POl`','Kp̂TH7Xc=z','',0,'?'),('!(\0#)2\Zv`A','wp-content/plugins/woocommerce/i18n/states/TH.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6F)u~\rpn','eSS8H)9jDI-2QeW?|ɉӚV','',0,'?'),('˃*ˣ+<h','wp-content/plugins/woocommerce/i18n/states/TR.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mi%\"','BPnYC+gW:\"C懙','',0,'?'),(')_7o8?{','wp-content/plugins/woocommerce/i18n/states/US.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q!^a','{;0TIEG400Ã4/','',0,'?'),('S2|7ˎ','wp-content/plugins/woocommerce/i18n/states/ZA.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+I\r\rTqhDq','͐v\n*p_3ƥvL)P_h','',0,'?'),('̌T%','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8(wzLY|','QJ\nWk/,<=`>Gg,}Zu','',0,'?'),('l_#oݩDא','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-deprecated-hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\\LLvI','c+.21I	.Vک9@YǨ\ZY','',0,'?'),('u2~|3','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~{Rb0^[W','8wr,85.?Po(p֬\'\Z','',0,'?'),('Fpbuy','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-log-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G\0r kJ\nOM','Wb\\\"Ek/ohT	K&A}e','',0,'?'),('F\ng]K','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-object-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U?~pĞ^','#A5 CGH	JǞ釈E','',0,'?'),('83(2=X<4\0b','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GI	-0}QXٗ','{9|sʾ??e{ETH`','',0,'?'),('U1ԘwgOYpA','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-gateway.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H { $g','~Y^퀩xs)&rУ|','',0,'?'),('UfT^1\0=6','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.M\\<A\'D|','Ѧ6>T=k~{LF2DluۉO','',0,'?'),('e\Zϧ\0}y','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-product.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_6f2Q4','#E+Ǉ!l%3GtLyxg','',0,'?'),('^ZnⲮb՟ZV','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ϥ5/1Ǔ','u L55~Q{5','',0,'?'),('}Nsز+\Z','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-crud-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2S95','A\ncߡ45Vf7]\Z{','',0,'?'),('2=KGzNx1\0s','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-posts-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',AGD.>|','saOm~C9I`s?`vѴHV','',0,'?'),('2!8ot','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-shipping-zones-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xn&|i>','>H/4|	S#k2Eg|wV\n]','',0,'?'),('/gC&X}','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-terms-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','蓬z~J_x','[v/VUBpO!)2eܪG:.}xa7','',0,'?'),('$:SZܽr2^','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0y]`\\]','_e1=sJ%WkUˮ&','',0,'?'),('<Z&u\0,E','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-settings-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tPQ/*','xmuґ,dkrq``UDfri','',0,'?'),('Nz貚?ۆgk','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-shipping-method.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VJIM-*F\'','M ,̔Ӊ,6\Z3᪔pFR','',0,'?'),('$is\Zݚ g]5','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t\n7a4W~A','i?ptӫe\\tiL&H`?jG]','',0,'?'),('+^2s1\0','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-addons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WǙ9`l]ۋ','W|[F8mo\"`[QL٦A	p','',0,'?'),('w	Cs>͒K','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys-table-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\Z,?^fx-','-3cW[5}[r;','',0,'?'),('0:.T$	Ga','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')иN&','hYCV~nO[YO`<O','',0,'?'),('-s-Qe74t','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-assets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{t#\"V͂M','g(av/iyAedBϣ \"q\\1','',0,'?'),('T\\T=4FDLP','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-attributes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J\Zޏ7Nɟ]XL','Am7M׺~pܴՙ-4;:_c(l=','',0,'?'),('de\'R:Zm k','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p>6pmR','8~㑺DiT\\ĭE','',0,'?'),('cBm)cЪ\'','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y=sm|h]','[7KUZD=J<`	CSnv','',0,'?'),('ӎ=GK@VS','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-duplicate-product.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+vԱŖ]','&d顟\r#cGp+\0N>YסW','',0,'?'),('0vԩ9F','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-exporters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sˍ\ZRBv','Nr8;);8h:@ bKV','',0,'?'),('^>/㱎JjB','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-help.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ȭz5]kط',' Dtfg]\ZmoԲa=ݾ','',0,'?'),('EvupTf9a:','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-importers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A$>@0s\'D ',':.7/@6ɜZP\0;\05','',0,'?'),('*ljb%5','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-log-table-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4pOF^L9','a~ޗa=[\'GۙxJa~rJP','',0,'?'),('iѧ9$z','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S*5´','ۤ_pj#\'ҊTb~[|I','',0,'?'),('$+)Jd;\\ՖD','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-meta-boxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yW)jPJ\\Z','Œ\ZKπ4H#eՋ0#	Ő','',0,'?'),('iFh<}ދT','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w[e8t','n[Oi]UGtt}Ϙ>','',0,'?'),('>kjr{','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-permalink-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N~@ܠ/y','N\nOnr6riio9(~d','',0,'?'),('GCNqÊE5}','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-pointers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eB<-D','\'X}5=\\-\06>ye','',0,'?'),('P5Vb','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-post-types.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZJrbNO`׼','ʑ7@Z>U{=Z5>&ؼGyLE','',0,'?'),('xk!ͯYKz	s','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\"R6\'A','H\"w(@vLY9\\ET-','',0,'?'),('Vzܫ\r','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-reports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b7ISmH\rwԌe','vA\Zzuk2&$~}c:~[01E','',0,'?'),('XB1MWw+','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ehߟIbt?&','Q޹{j/m~.\"s','',0,'?'),('zME,hHK','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-setup-wizard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Br4|=0','%WOk)4bHT','',0,'?'),('N@+C>U','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\'Ӧ','2^8oUk;/X1p ez^','',0,'?'),('G\'J0\r|MK','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-taxonomies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6F7I֡/f\ZD','qXF6\'+ի\nhOtS(~qꨳ8','',0,'?'),('FI@OR}tadW','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks-table-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ShJ	5!4','\ZYJ7:Otxsn','',0,'?'),('N2_]]b>','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=;bax',' TתQ`7蹞+Fm݇|&{,','',0,'?'),('irRR)&8K','wp-content/plugins/woocommerce/includes/admin/class-wc-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_x',']\"B8S6)q_U','',0,'?'),('(~kpG','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǗvJ8`.S','_T499HIr2','',0,'?'),('\\Ft','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z^;\ZUH.','\'tjQ	R?7[L}|22A','',0,'?'),('kĸ.!b$s','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aQAQH%','ZhŹhAækdeHh$.ջ','',0,'?'),('MZn|/1m9e','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-plugin-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CM=ɌfaN','ڐs6۲0g}O::#B\\/I_eU','',0,'?'),('W6Vʳ.̃','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-updater.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m/l:<x','{\0H4\n*\"_;48$; ','',0,'?'),(']O%PH\r6P','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c4Fm[C','Ξ~\r0f)+|C<U*Uz~','',0,'?'),('KQZ:N3yr-)','wp-content/plugins/woocommerce/includes/admin/helper/views/html-helper-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0~\r}}<DP','FLJPRnE2߾9rV15','',0,'?'),('x,PfFC$','wp-content/plugins/woocommerce/includes/admin/helper/views/html-main.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']U\r0o7','Rf*߉\rOGuMdi\ZjOௌ8','',0,'?'),('IW!jd%m[	C','wp-content/plugins/woocommerce/includes/admin/helper/views/html-oauth-start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'#BYg\"tO}','נ<\r:cQ}[J_>2','',0,'?'),('B=3j)	NoB','wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-account.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bf,WY16','O6:r;QSyFJ:*','',0,'?'),('\r [pt','wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-nav.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ælR\'\"','z\ZSr-bC6@.ꎉӰ=r$k1','',0,'?'),('=ާ6eY','wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D+dZpr','1TYȅT47&evLP/&n^','',0,'?'),('&Sn\Z	','wp-content/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',08uVQ','4]I]0MY<fGׁ@DFY','',0,'?'),('-:)N6','wp-content/plugins/woocommerce/includes/admin/importers/class-wc-tax-rate-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3ޏ+2Q O','#7$?y5~5hWdB','',0,'?'),('rlYh','wp-content/plugins/woocommerce/includes/admin/importers/mappings/default.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|IXΗɉM=u','eeM*,P3ݺ\0U7C̦vY','',0,'?'),('?`uH)\'J','wp-content/plugins/woocommerce/includes/admin/importers/mappings/generic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|xE','9´8[U-=Aeڨ}w','',0,'?'),('pԔR۠\"','wp-content/plugins/woocommerce/includes/admin/importers/mappings/mappings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	_YG&u.X','Qlbrb*Fk3xK9Y.OY\\','',0,'?'),('GWXc(n`','wp-content/plugins/woocommerce/includes/admin/importers/mappings/wordpress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NGt,P+QFe','{&(\'&yx1僇\nb*u','',0,'?'),('=Fv$k','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-done.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|l(VI	@','G_wuץrU>V','',0,'?'),('\"(\0','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AzK|oSos1','c~-g.Y}~irKeU\"\'','',0,'?'),('~W.\r','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^bڵ*','D彬/<y`̇a0:<g\rO','',0,'?'),('MEyqq~','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-mapping.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*a\nsiϗ0T','Z߈/!\"\"7[\\4[','',0,'?'),('m5~}a','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-progress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dt,vӔW','Ƥ[ZҥRg|w','',0,'?'),('x,Gڄ;6?','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-steps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yF\Z&|!sQU','Y]К!sݭ?iZ','',0,'?'),('A\\)lCtg(oF','wp-content/plugins/woocommerce/includes/admin/importers/views/html-product-csv-import-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<%nG5K!i)','WhGJ3JdlFb%','',0,'?'),('hu_@','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KY/+2ϱs{','T+#I5~C\ZM(I	\n;1!','',0,'?'),('ʂ-=Υ','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{{5z1/a\'O','JiR<{^:*J۠!<\0_','',0,'?'),('vZ59FG','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dTܠ	u','f,T-ewW=鵤* ٮom','',0,'?'),('xX$:㈳o','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\'Ok@Eg^\\D','Zevs6.k@Y100`','',0,'?'),('eH9[1','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-items.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~nсfb&Φ','v62D\"_/1ʱ9Li1B<','',0,'?'),('US?^Qwo_','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-notes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~6jԍ>k{rY m:','#:n[>/\"sU8vSlO\n=G','',0,'?'),('wzOw(q+','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\"','ʆ6݆Vy`04%[;','',0,'?'),('۠5D꘎˵>mD','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-images.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%_zo}\n(b','&&զ2$Ұt','',0,'?'),('O^}ks\\F8','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-reviews.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-EFg','\\??ThXkN\Z8s`ۤk(','',0,'?'),('\\8d@b\Zn!O','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-short-description.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Iz6,9ϱľ',')D925E\ncm{G;eU6','',0,'?'),('(4\ZoKpk}j','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-download-permission.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fԲ\r[J?','=#<X4g>~Y{SrPiPl','',0,'?'),('cE*D5 d\nc','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-fee.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5\0]y~','YpIF%\\GKzF6\'*','',0,'?'),('3\04{','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H1B>ypV','c\nGkvv2I+','',0,'?'),('/dÊz\Z|','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AuԔazh','+JVP3^D.STD<thF','',0,'?'),('6Uaʏ','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-items.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y	wUF','mܾKz´3\rHZ[v#1','',0,'?'),('vN#uM7','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-refund.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|dalAnɒ|','Q\'=?}C2ogc6Yc#','',0,'?'),('Alߦ\0].','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-shipping.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\T<}$','/&#ucEw4*7}s','',0,'?'),('\'M<h19L','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-attribute.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KIZli`','w~LOwH cѲlZ_EW','',0,'?'),('Dųu͝','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0	zF\\߆Ŏx','؇DP9A2\'cNt3a1f\\!E7W3','',0,'?'),('+}y%O','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-attributes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=SGC1-e','Yمy#U\nDzp0VҜ[','',0,'?'),('iik/d','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D$ \rqo\Z','Й¸*cGj>tK \nC~_Ep%','',0,'?'),('{0!´H','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-inventory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\nκ=6l','ocGjP/fIqq\Z2flz5xCHMUw','',0,'?'),('~xdMR:','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-linked-products.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' a*T!Qp',':c֎ (/%,J_~U','',0,'?'),('\\њW\n̹','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nٺ.`3kC	w','\Z~f~-(&Qj䆚JUJk;','',0,'?'),('S-\n','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-shipping.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@KV\ZMtp','jM~]H2Mǰ:Ga<^pHް','',0,'?'),('I5j_&oN\Zy_','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-variations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äja2nvWWcf','P	;4|ѶN0o0B6W','',0,'?'),('\rbߩ={','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-download.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=3ɞz','Kzy\"sY<IbǱ<PB','',0,'?'),('Ԫ;Ҷ&&','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-variation-download.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sB	\"','+rm.CI!*]\")gȨ{`];','',0,'?'),('!U@I2','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-variation-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DlN\r311CV','bDL#4N÷gߎ`ə	]J','',0,'?'),('1]L\\ۡ','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-admin-report.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è&dZz; Dq',' ܠ^YC6(*;\nI(7R','',0,'?'),('P1\re\07F)Ɩ','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-coupon-usage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	g\\yqF0\\*','kc2GD69H䊏W?b&dc','',0,'?'),('rf\\\nۏr׍','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-customer-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KhT.po!','z\'f!XeQ\Zп軤A','',0,'?'),('δZn*_%:&','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-customers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c3{.\0.ҘQb','ibx\0uw+}T,\06RG','',0,'?'),('Ւdِ\"SI','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-low-in-stock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/$H,VmG3','y\\Z\\i )&RVV&n','',0,'?'),('ʊbm:Iy3','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-most-stocked.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<owl=B','D{ԅ\r*wś.︛  ','',0,'?'),('-&׾(F%P5','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-out-of-stock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zUX`D','aH][!YvO\"p.yv','',0,'?'),('UceS','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n0W-T X8&l','p{~ e-NrP{)UFjm','',0,'?'),('\"ؿ\Zle\'jy','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WRw\nJ','d94 Ma%_#\'\\b','',0,'?'),('X`SmÂ=I˧!','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-product.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D`c^}hFԗ','\08M\"Ud!5t ','',0,'?'),('v{\ZSzG6B','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-stock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[?`WRk\n1','	egzj	^j١>Ǜkd|͓7K','',0,'?'),('cT3LY`?{7|','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-code.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5.W','6Z\0)B?qꐃasU','',0,'?'),('\'r,qRGGZ','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^˱&$uS\'','Pme.~(YG','',0,'?'),('b焪s}Ca','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-accounts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OwQ<','~%|Ġ\\T_(jYOz','',0,'?'),('lRD0@BH4','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\"][c48қc','ep2s]Q)uSfU2!,','',0,'?'),('JB>ZIFC','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-checkout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?d5O/qX','\'z*spϺؓ^ߧ\0\n<eS\\','',0,'?'),('9>ݴo e8xy','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-emails.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p|?a.`}','ck2\Z:Sr+cIJ8;d','',0,'?'),('OZ%l[','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`VZ^[4','OI0+B <ǴExEZ)','',0,'?'),('^q<EP6','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-integrations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rل#_2','Im\'[(W8W,M/MgQѴ','',0,'?'),('uc첏?\\a','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J!M1EY85P',')A̿G I{&uEto','',0,'?'),(' gUg#	l=J','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-products.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uhe=BiX^ѕ','4Y^3c8Y߼jY)!','',0,'?'),('qX\n^j^A','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-shipping.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_]eR\\{0','kwąV]jo5YZl46','',0,'?'),('$\"0syu','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-tax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CH)劧LTQ%','@N\"#!)E!K','',0,'?'),('p=h<\n@%CW','wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-classes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v?PLC~	5y',',B~NpHqz>5woJPR','',0,'?'),('wGWƚ૭z','wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zone-methods.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eݷ55\\T','J	{Y2[|t','',0,'?'),('aj݋(','wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zones-instance.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ca\'-LY','Δ)K)>Ez.+`XM;=','',0,'?'),('~/\0','wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zones.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')Pu֓+`Z','MJ$+$ﮦP\"\r;','',0,'?'),('LA9H`뛘','wp-content/plugins/woocommerce/includes/admin/settings/views/html-keys-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n=\nLJk\"e','.T)X\'T&QLiCJ <','',0,'?'),('o	CB~CwO','wp-content/plugins/woocommerce/includes/admin/settings/views/html-settings-tax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y3Yyҟ\'\0s&?','x\"k7t1\0	Nl33#','',0,'?'),('HK˕B','wp-content/plugins/woocommerce/includes/admin/settings/views/html-webhook-log.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$iʵ924','նqsiBmu[wMF_I<O','',0,'?'),(']u*\'EYߛ!','wp-content/plugins/woocommerce/includes/admin/settings/views/html-webhook-logs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~,zNćc',',zņݛCo\0]x.ۧJh0ߗ|','',0,'?'),('8\n,?f-*8\'','wp-content/plugins/woocommerce/includes/admin/settings/views/html-webhooks-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WyNt&zjz','̓/Bkox\ZmɽTiv','',0,'?'),('#8`bSm:4\r','wp-content/plugins/woocommerce/includes/admin/settings/views/settings-tax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	1Zk(<','\n+\Zh+܉L%ۻtJ%:i','',0,'?'),('|`Ӈ,&','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-addons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yB2LgpѝƎ%','@5w)	v`\Zt','',0,'?'),('!^Q9vgu','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-product-export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Nۭ[7v@	2','!^JUM-~.]=&;O?6<','',0,'?'),(' Z/:^ $	','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-reports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5*SXi̤\\`&','ۮTӚ\0.KnԲf(,w9*6','',0,'?'),('`My;><\'wP','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-logs-db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϏH]#{4s','O}OR3F0nY(;w2','',0,'?'),('xLY','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-logs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?m\n\Ze$','1-#Pld凎y22~^[	','',0,'?'),('CByIwXɾB^','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-report.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"f~a9j)=','9=	b\rfц3HK\\$bC!#','',0,'?'),('H)-TuZr|','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'v 5u=3G','n] 2xڅ\0UHlQP','',0,'?'),('YhFچT{','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͊6\0젵','qzf *_F7g^\Zn)EJ,','',0,'?'),('??4x\Z.*Dd','wp-content/plugins/woocommerce/includes/admin/views/html-admin-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	tDﻷ','u8N4>ą\0҂Rp','',0,'?'),('x?ا*ZT~h','wp-content/plugins/woocommerce/includes/admin/views/html-bulk-edit-product.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R٭*3+','9\0`raٖ*_Ѥ0DƊ','',0,'?'),('#>ֳ̭{*','wp-content/plugins/woocommerce/includes/admin/views/html-email-template-preview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dWKSe8}','T6$YmG6mEy8t~;\'','',0,'?'),('ogd	','wp-content/plugins/woocommerce/includes/admin/views/html-notice-custom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%d\n6q>r',':D⓳]EjYufwU','',0,'?'),('*.0T(\0ȣ','wp-content/plugins/woocommerce/includes/admin/views/html-notice-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ːT{ݓnaUE',')\"7[+P?BZy','',0,'?'),('{&7\Z','wp-content/plugins/woocommerce/includes/admin/views/html-notice-legacy-shipping.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',MOFo&`','WI@gZ*7s^U\\F','',0,'?'),('U<[\"79W','wp-content/plugins/woocommerce/includes/admin/views/html-notice-no-shipping-methods.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','698ɍ`KQَ','	(p.a1HQFmpa.87\neMV>','',0,'?'),('eպ~ָL}','wp-content/plugins/woocommerce/includes/admin/views/html-notice-simplify-commerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ytGEg\ZƆ+','E!F鰿|eOoXPl+w','',0,'?'),('|qBlmr0','wp-content/plugins/woocommerce/includes/admin/views/html-notice-template-check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rVңrl5L\Z','E?)Caߊ9(eOqEyHw','',0,'?'),('N*Xc8\\}1','wp-content/plugins/woocommerce/includes/admin/views/html-notice-theme-support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' PNq#V','{W0vJlee<','',0,'?'),('3Kـ<','wp-content/plugins/woocommerce/includes/admin/views/html-notice-tracking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%hv/ia','[xB)vZ\"I)6q!','',0,'?'),('\rYGVI?','wp-content/plugins/woocommerce/includes/admin/views/html-notice-update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@Vxi\r	l','{F\\=N~u	niĺX\rT','',0,'?'),('om5M^dmKg','wp-content/plugins/woocommerce/includes/admin/views/html-notice-updated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5I?\r ج','C})̧N|TdW_St','',0,'?'),('1B\rwbf\"','wp-content/plugins/woocommerce/includes/admin/views/html-notice-updating.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/?	Vyi<)[',',j%\"+Mv{^JTE','',0,'?'),('2(;f:Q','wp-content/plugins/woocommerce/includes/admin/views/html-quick-edit-product.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LDwec\nHX','\\Jnp0W_:xF6\Z$vK35E','',0,'?'),('!	b3$Ѥ]l;','wp-content/plugins/woocommerce/includes/admin/views/html-report-by-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hֶcGX8|I>','.#ԃHOu`=?{+ū_','',0,'?'),('ak-h8 a','wp-content/plugins/woocommerce/includes/admin/wc-admin-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s6a{Y7dP','J;3\\#K. (*p]B36','',0,'?'),('d%ÃyDR>nuk','wp-content/plugins/woocommerce/includes/admin/wc-meta-box-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I|1','_O5%}PߩU(u\n\"','',0,'?'),(')q>qF$','wp-content/plugins/woocommerce/includes/api/class-wc-rest-authentication.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VO/_F57','@7g0}?\'냸ڟEf_s+','',0,'?'),('_B<%!f','wp-content/plugins/woocommerce/includes/api/class-wc-rest-coupons-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vħ&˒i','\\թbW(:Ҳ|{UF]1ڒ:R','',0,'?'),('qԈqğ<c','wp-content/plugins/woocommerce/includes/api/class-wc-rest-customer-downloads-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hYyW>za','Pag;\Z.|p6S\'','',0,'?'),('Ϝw (-fOr','wp-content/plugins/woocommerce/includes/api/class-wc-rest-customers-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\nͅ~([u','2vxw}r͸w','',0,'?'),('WcM','wp-content/plugins/woocommerce/includes/api/class-wc-rest-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i3\"OEZ','yʔ<S6. \'X\0XϷC','',0,'?'),(',iVAږi*[AK]I','wp-content/plugins/woocommerce/includes/api/class-wc-rest-order-notes-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1m2)y:','nz#v/l*u\rU#|U,+;ˋ','',0,'?'),('NcS0}q#T','wp-content/plugins/woocommerce/includes/api/class-wc-rest-order-refunds-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','޺rN]NgjVu','<IDCCQf .N','',0,'?'),('\n6 \"RT}@','wp-content/plugins/woocommerce/includes/api/class-wc-rest-orders-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t)O{p<Hs','=_QzRl!vFo-&*h','',0,'?'),('MWKP\nO','wp-content/plugins/woocommerce/includes/api/class-wc-rest-payment-gateways-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&0)v8\"|\Z4My','\r\0-̨uRWW6I\"DVx','',0,'?'),('~yGmcۭP','wp-content/plugins/woocommerce/includes/api/class-wc-rest-product-attribute-terms-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~gB[#->(I\Z','3Z 6枨°Mř\rdΪODɭh','',0,'?'),('r@Zz:','wp-content/plugins/woocommerce/includes/api/class-wc-rest-product-attributes-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+P(\'/','K 4ޟ*FDpc7{ǝ?','',0,'?'),('k}\ZuR1|2.*','wp-content/plugins/woocommerce/includes/api/class-wc-rest-product-categories-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cfQmMY','(q6X}{hn]HQ$d~','',0,'?'),('ظ!9~[','wp-content/plugins/woocommerce/includes/api/class-wc-rest-product-reviews-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 75]G;','On]ήi0zp\n\"z','',0,'?'),('~A=_WyX(','wp-content/plugins/woocommerce/includes/api/class-wc-rest-product-shipping-classes-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Q3&:6','\r9creF2LfOo2T','',0,'?'),('3`gE,G','wp-content/plugins/woocommerce/includes/api/class-wc-rest-product-tags-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@mCY-o',')M%?X(\ZH','',0,'?'),('Nۋ[d,Y','wp-content/plugins/woocommerce/includes/api/class-wc-rest-product-variations-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(&Gc<fӠz','{y;G~ۊ*E@q	ȿ=','',0,'?'),('~vC nX٤i','wp-content/plugins/woocommerce/includes/api/class-wc-rest-products-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Qq','w|,XԬʌT>Ghz-','',0,'?'),('sý}I!j','wp-content/plugins/woocommerce/includes/api/class-wc-rest-report-sales-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':AcۤIFM','xʖ$mC >;>Ҏj','',0,'?'),('r	톙st8','wp-content/plugins/woocommerce/includes/api/class-wc-rest-report-top-sellers-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S$ҲD#*`{x','ߡ\0?Xf.CqTMq','',0,'?'),('iXiIt~#0','wp-content/plugins/woocommerce/includes/api/class-wc-rest-reports-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':#h$rF','iDvɶ\n5T&B!N#,UL$NO','',0,'?'),('zʨM\'Ԝ','wp-content/plugins/woocommerce/includes/api/class-wc-rest-setting-options-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nh͛2v2{',',TGajS:zybG2/r`E','',0,'?'),('$%on?&kT','wp-content/plugins/woocommerce/includes/api/class-wc-rest-settings-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','owZn!','RNYF>mf/Nj','',0,'?'),('!Sl*iGd','wp-content/plugins/woocommerce/includes/api/class-wc-rest-shipping-methods-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O@idȣo','K±TIw!6񔾬+jwM췗$','',0,'?'),('Į6Ylz','wp-content/plugins/woocommerce/includes/api/class-wc-rest-shipping-zone-locations-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǿI<>E059u','iǓ%,Sih>^ρJpXT>cO','',0,'?'),('e<Wo_','wp-content/plugins/woocommerce/includes/api/class-wc-rest-shipping-zone-methods-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{;#','r4z9%Fg3Nh*','',0,'?'),('E۱gaB!;','wp-content/plugins/woocommerce/includes/api/class-wc-rest-shipping-zones-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2azgyk7X','TEvpu^(\\̗','',0,'?'),('o7:x=','wp-content/plugins/woocommerce/includes/api/class-wc-rest-system-status-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!\00-(/','5Ugu2EN@<-͉yQ','',0,'?'),('@p.cE.ŁT̚8','wp-content/plugins/woocommerce/includes/api/class-wc-rest-system-status-tools-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WCGB,gO','JЃFw=82}`bZ}','',0,'?'),('*:OͷȮyS','wp-content/plugins/woocommerce/includes/api/class-wc-rest-tax-classes-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<L,^\ZV쩣','`J(ٺmJ#LN.$Xұ','',0,'?'),('<|Ko','wp-content/plugins/woocommerce/includes/api/class-wc-rest-taxes-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0k͚vz','u2-\n,\ZIqyQڙK[.wV','',0,'?'),('%-\r¦2/','wp-content/plugins/woocommerce/includes/api/class-wc-rest-webhook-deliveries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k{m\0','~Q\'	)zD7K߯}0x','',0,'?'),('75*Jfq','wp-content/plugins/woocommerce/includes/api/class-wc-rest-webhooks-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zgw(ur&','oj,uK<u3LL\\','',0,'?'),('x;-5h7','wp-content/plugins/woocommerce/includes/api/legacy/class-wc-rest-legacy-coupons-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C3b+o','\\sɹ<+&\\ў5]gG','',0,'?'),('i&R=P޳IY','wp-content/plugins/woocommerce/includes/api/legacy/class-wc-rest-legacy-orders-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i0j͒Jk','(H\0a^ܕ|{UG}\rE\"-','',0,'?'),('Os=e','wp-content/plugins/woocommerce/includes/api/legacy/class-wc-rest-legacy-products-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O11|','yɣޅN/0{QQ','',0,'?'),('wWvظ?X\Zm','wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-authentication.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H+q:ڌi','uEm?\\nT݄Fk=\0mߜF ','',0,'?'),(' uKu9sF:','wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-coupons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0δAXsYLs','(Rpҥ)DbY|[[\"Qjnؒ','',0,'?'),('!~BĶ#ܥ','wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-customers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QlC&i%7:̴','kxU0鿆;	:ES\"CwC.&','',0,'?'),('F6	2vP)','wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-json-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*CT{Gg<t','$g3H̾8ALY_?m','',0,'?'),('ЧRڊn	(~','wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-orders.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w˭,^','̓ݞvޤW,y\"P߈Y?','',0,'?'),('`#́[;JB1','wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-products.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jH#Ǣ2L*','IeYo8~ah䅘{','',0,'?'),('\0UI_O;Bl','wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-reports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*.ͪ=RvV','p@=]1Jt̳gXGD','',0,'?'),('lM<','wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-resource.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_v56|','+?Y(4B܁b\"*GD','',0,'?'),('۫ܳYh','wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XAg)EF','Mgό\"LcJiThI*Nw	.|','',0,'?'),('\' !|Q|K','wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-xml-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j%B&\'{','l6._<\Zo49x+Hڳ%&8`','',0,'?'),('{*؛m','wp-content/plugins/woocommerce/includes/api/legacy/v1/interface-wc-api-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ͱ/P',',\rE;Y\'Fwqv4E;vd','',0,'?'),('P4aŶa','wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-authentication.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3~?h','ZAA<0-h}dL>\';Ё','',0,'?'),(')Λ*3<)','wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-coupons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k\"SلJJ*\"϶',',CB\rtePSB*/{o\'eW@','',0,'?'),('!s\"K{]','wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-customers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=28XP\\','T\n*ˣ_&,voj(#G]=5FQ','',0,'?'),('`RbH抑','wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t泞`\r!Mg','\"Є֒]of얶\rq`f=2-A','',0,'?'),('T_xi9Þ0\"DhD-','wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-json-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pnC0@','%Y#4M4xo*GOfc7','',0,'?'),('~N;$&}}','wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-orders.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؜ƋY\Z0~x','7y!Ls  ĵZ۸Nb{`<','',0,'?'),('.v=GJ','wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-products.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}{%H	]˝+','NLx;0?-n؋Z	Wi)jH%B','',0,'?'),('2&7t:}','wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-reports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','־v51#9Ά','߬\\Sebn֭:|;O6̳ɻ','',0,'?'),('Гz-*s','wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-resource.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_ԅPb','NXna7W\'N7EavdI','',0,'?'),('ٮk>okQcV58fg','wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3.9Lj=m/','tPR[vZR\n$Qި\nVU\n\Z(T','',0,'?'),('RO\nrTL','wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-webhooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\Z<#LCV:','\r#{!EUW4+LZ\0vE|','',0,'?'),('vz){Gx','wp-content/plugins/woocommerce/includes/api/legacy/v2/interface-wc-api-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nHR섧','_{qf3YIV)Ucj&\"u\"z','',0,'?'),('\ZDq2','wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-authentication.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(gPg|\"','ʹ\Z+1k36LONݏo','',0,'?'),('o`<dz\"','wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-coupons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L@\\ߢ0y)P','-˰Iߧ1:B$@ 6','',0,'?'),('\Z}#w_','wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-customers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؞&Y+D','%SgX#^8','',0,'?'),('#B0','wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t泞`\r!Mg','\"Є֒]of얶\rq`f=2-A','',0,'?'),('yOt\"[Ey','wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-json-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pnC0@','%Y#4M4xo*GOfc7','',0,'?'),('R7݁>Dd','wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-orders.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JZtb>9,','5-B卒Se\"~LHUVMG','',0,'?'),('SotWpQ+ȥ2','wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-products.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mn)iOX!','߹2MY=;_|Lz 4S6','',0,'?'),('C?eP#=P','wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-reports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r2֜%','wz,pnKٍL','',0,'?'),('XY,N_iԜ','wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-resource.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PeT\0','oM=E*\0+I:0::\n','',0,'?'),('F~6gTJJɂ','wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9KKUR','¼	.3K\nBåBCs','',0,'?'),('0L\ZHu 0̧[','wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-taxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cQ2 VHp','fQeH{ .`A5!x3#*<sϓ','',0,'?'),('JuG`a?_O&','wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-webhooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$L3Rד','@iy9z]tl}ʾoa9*','',0,'?'),('%@\Z=','wp-content/plugins/woocommerce/includes/api/legacy/v3/interface-wc-api-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nHR섧','_{qf3YIV)Ucj&\"u\"z','',0,'?'),('x9Kv%','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-coupons-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x\rs;\0QΑf!','^	K\"2k,iΕe\nD#h\"','',0,'?'),('<;7\nyIt8','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-customer-downloads-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w|`Mg','ߥ.\"Bq	y&h~9}S','',0,'?'),('id*[x:5p-','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-customers-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CͿZuTݼ!','ϲ|upU6r\"gϴ5\Z1','',0,'?'),('XeeW@Ue','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-order-notes-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/ԠqI',':N12x-/v8-fe\Z5dѢy','',0,'?'),('BVPLA','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-order-refunds-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̙ $Lc\r','pkavOsn8s]','',0,'?'),('%>^Pt\Z','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-orders-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ڬfg\"d','I1\rm&404<y\Z\\/x','',0,'?'),('U5փ','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-product-attribute-terms-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',': (Ȳ?','ubܠ;F䮉(?oRETPP','',0,'?'),('/߼WL0tJ','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-product-attributes-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eMZ,','/1&Hd7&\rt','',0,'?'),(']ZqE܀Dk2qT','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-product-categories-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@Gx@#','ަ.P36]ȭ Ƕl','',0,'?'),('$2GE5ν','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-product-reviews-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XOę4}ZP','^)/Y$S=#Exś','',0,'?'),('\"%','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-product-shipping-classes-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&<)\\`','rCkNO2H{}&Ud%B','',0,'?'),('o|^G7.:iӝRk','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-product-tags-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vMF W{Ñd','iB1	)\nRʬI1K\"SMRt','',0,'?'),('^~Qh.','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-products-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٰ~#vTM','\'\'\rRzX4ڮБr,l','',0,'?'),('ɭfaU8','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-report-sales-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*^S',',Q\rP8V\nJzL,\0\\OZ','',0,'?'),('bS;$nB','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-report-top-sellers-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MØzXh@u4','ev~ȗ}/Qx <~:s','',0,'?'),('O6qsF','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-reports-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')+iX','On;Jlހ=F<{V6','',0,'?'),('wM\0e\Z','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-tax-classes-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PF^$]A~\nm','mL`Qc#j0}T','',0,'?'),('kҼ%p݂9','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-taxes-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_8ܷ30&bzƶ','wW3ü1#ХQ\"t\r5}','',0,'?'),('kg_X-t','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-webhook-deliveries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M+[DR}P','oĎQ\ZX@X 7[;\0aⒶ(@{V','',0,'?'),('EDS\0艓J]','wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-webhooks-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o!g\ne^v','2XW! t`g=<Cv_4Wm','',0,'?'),('$=JEW_1\n+','wp-content/plugins/woocommerce/includes/class-wc-ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӓ% ҷ','\'M\nJD`%jg/#\Z','',0,'?'),('%h6+>3-','wp-content/plugins/woocommerce/includes/class-wc-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Aڐ\rr-','Owֵr4l~7怤{!2','',0,'?'),('\0IB','wp-content/plugins/woocommerce/includes/class-wc-auth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M:ו=b*f*','M:|i\"M4#myzK','',0,'?'),('~,euyFM','wp-content/plugins/woocommerce/includes/class-wc-autoloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hõINRnYn','Ted3Fkz\\dF.9a','',0,'?'),('qUd-E7;','wp-content/plugins/woocommerce/includes/class-wc-background-emailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vX[92H','K\nmRF\0/G]6gWQC~','',0,'?'),('<*.C\0q2','wp-content/plugins/woocommerce/includes/class-wc-background-updater.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4CA_kTl6k','o6\nmaӅX$grPFf/','',0,'?'),('}܃C!','wp-content/plugins/woocommerce/includes/class-wc-breadcrumb.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b x\rC񯷩','5jQ\\\']gUk2t;#\'u|n','',0,'?'),('x\Z','wp-content/plugins/woocommerce/includes/class-wc-cache-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jJC_uD','\0Ĕw7D.ύ`FIdd6ќ\0}\r[','',0,'?'),('ęaӶ_cGj','wp-content/plugins/woocommerce/includes/class-wc-cart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RQD&N1)','\\)nxkbjn͈\Z','',0,'?'),('3@nKE','wp-content/plugins/woocommerce/includes/class-wc-checkout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bQ5zVTf8k','^&\'_Pl26qR鱬X\"1C','',0,'?'),('	!L8t+e2D','wp-content/plugins/woocommerce/includes/class-wc-cli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m[\\޴og','qh	3ƥ&geSKID,q4BF','',0,'?'),('1A+m7`','wp-content/plugins/woocommerce/includes/class-wc-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{c4\\R#w','gxH8HoJwHy,L\ZR/}2','',0,'?'),('\rAtZrr\nd','wp-content/plugins/woocommerce/includes/class-wc-countries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ݬ/v)Zb','>r`ńDxplzBk','',0,'?'),('-׮X*w!F','wp-content/plugins/woocommerce/includes/class-wc-coupon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·19=f=p','yyMA\\ZQ<}S&G,','',0,'?'),('mI	&9','wp-content/plugins/woocommerce/includes/class-wc-customer-download.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԓQ<l|\"\Zꮰ','jvVH}&0H%}Ow`窳Cjm','',0,'?'),('dT҅:C9$ ΄9','wp-content/plugins/woocommerce/includes/class-wc-customer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*^`tpx3','lit3<XFnjiɘ75','',0,'?'),('Bz`[\"','wp-content/plugins/woocommerce/includes/class-wc-data-exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\թ6>5Y<\'','^u\\1Iez4i=\n_ar\Zx@','',0,'?'),('*Tgi8','wp-content/plugins/woocommerce/includes/class-wc-data-store.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mX2','\n\0u__35 ħ.','',0,'?'),('jifꔒB','wp-content/plugins/woocommerce/includes/class-wc-datetime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q/v+B;!r','6cr&@\0\nX޿|&#\0','',0,'?'),('-U׽ F','wp-content/plugins/woocommerce/includes/class-wc-deprecated-action-hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+iW{j˰e','նFb=gOI`? {PlR;','',0,'?'),('f{\rJk֔χ','wp-content/plugins/woocommerce/includes/class-wc-deprecated-filter-hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`E\'o	sd','\"\'yjJfWcHp\0x','',0,'?'),('\0a>d$p','wp-content/plugins/woocommerce/includes/class-wc-download-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@3`u29#Z','iu1)v7[vo(Ϟ2','',0,'?'),('rx7','wp-content/plugins/woocommerce/includes/class-wc-emails.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','08 9:l;FV','lNcALp[`Z\0Q==x','',0,'?'),('bN(Ψt*','wp-content/plugins/woocommerce/includes/class-wc-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qó%?jm?','\"d(k|J*|P24mD','',0,'?'),('q7LQ>q\rg!','wp-content/plugins/woocommerce/includes/class-wc-form-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.LGo<d','vR«BidL,&&h#-NQ','',0,'?'),('mL%AML><]','wp-content/plugins/woocommerce/includes/class-wc-frontend-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\nvPFT','PbΩ;O\Zj*Zظ&J2','',0,'?'),('&d\0n%>','wp-content/plugins/woocommerce/includes/class-wc-geo-ip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ռ7%ZinM','#\r<Z\0faiim+/}?A','',0,'?'),('>AF9-\rC8c','wp-content/plugins/woocommerce/includes/class-wc-geolocation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hQqal]OI','6Tl͂)v\"h_Lz\0f2\0Rp','',0,'?'),('iU\\n;J','wp-content/plugins/woocommerce/includes/class-wc-https.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-fxQ~!KD',';_d	9F-%{Kt','',0,'?'),('>ڨ\r;,lY5o','wp-content/plugins/woocommerce/includes/class-wc-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶MݱFv)S','cVKoxS$k3Ad<','',0,'?'),('ag@E:q','wp-content/plugins/woocommerce/includes/class-wc-integrations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yza\n\"','R @Eo:acT8e0@V.)1\"','',0,'?'),('\'\\BU&','wp-content/plugins/woocommerce/includes/class-wc-legacy-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']7cR2HF	','+3+s؇6v #}K@7+E','',0,'?'),('Ujf5D7}','wp-content/plugins/woocommerce/includes/class-wc-log-levels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?DhBoR^','9Mzalu0Q`m%k/ĔS','',0,'?'),('&ܟ&5j9N','wp-content/plugins/woocommerce/includes/class-wc-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aILӰ|6?','Lq%eyY~T3J>ZdH,','',0,'?'),('\Z  }(ϺL@\n`','wp-content/plugins/woocommerce/includes/class-wc-order-factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L%tǞ?C\Zj','T$0mlxPDL&䅍\0. ','',0,'?'),('x@`7aoؗƲ','wp-content/plugins/woocommerce/includes/class-wc-order-item-coupon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!jκ	Ča','˪\'6\\\Z\Zu;z{}){tb','',0,'?'),('ol9:Ƣ<֍','wp-content/plugins/woocommerce/includes/class-wc-order-item-fee.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OU\rld\rI','u|)K^0	\"\'kbӾ\0','',0,'?'),('ȉ4vG@(/','wp-content/plugins/woocommerce/includes/class-wc-order-item-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','es_OéT',' 0^0}\"֨-46	*W','',0,'?'),('Cҝ\\HX','wp-content/plugins/woocommerce/includes/class-wc-order-item-product.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sܘ(d:','7\ncw~^?Bu!t٥','',0,'?'),('@IVu\n\Z','wp-content/plugins/woocommerce/includes/class-wc-order-item-shipping.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Z\"+!d|]','hZєڭv0D-\n+`VY','',0,'?'),('7<~V /=9Ԕ','wp-content/plugins/woocommerce/includes/class-wc-order-item-tax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0sd\\x','6\"]SE[h{#3p)5pY/','',0,'?'),('%Ա\0:eq3','wp-content/plugins/woocommerce/includes/class-wc-order-item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T?ȢO\Z8M',']R\"9q&d;VdH6e$DT','',0,'?'),('RطV_%#LL','wp-content/plugins/woocommerce/includes/class-wc-order-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iWd# z','մͥ~%4	Ei\\UzE','',0,'?'),('^(§3H\'ؾ','wp-content/plugins/woocommerce/includes/class-wc-order-refund.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T+\"j@&G','HZ%GWn!T6@:K','',0,'?'),('p>~F\Zs','wp-content/plugins/woocommerce/includes/class-wc-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yu]M[lclm',' ɧam3UWA5%C1]Ĺ\ZKkWb','',0,'?'),('\rh8ׅ@XA','wp-content/plugins/woocommerce/includes/class-wc-payment-gateways.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1|,E\\>/','\'|%p}䐃][Iڔz\\yƆ','',0,'?'),('\n|o[Yd','wp-content/plugins/woocommerce/includes/class-wc-payment-tokens.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X.\n$O','nD/DP}edhjE|w0','',0,'?'),('ךGV˺IgHs','wp-content/plugins/woocommerce/includes/class-wc-post-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J/`X\'U窥\\','Y9;F-@ɼ\",^%Kp	L~,','',0,'?'),('bvjq[\nHq','wp-content/plugins/woocommerce/includes/class-wc-post-types.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vNp)gQ+VwO','O#uث^e,J4\\3e','',0,'?'),('!~iYkDp.','wp-content/plugins/woocommerce/includes/class-wc-product-attribute.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}C$.w>=b','/:!ۙ7~]I]N','',0,'?'),('~##\ZPw*:`','wp-content/plugins/woocommerce/includes/class-wc-product-download.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QirkjH|=q(JQ','+GpFWV!\Z&-{m4','',0,'?'),('\0@5\rB','wp-content/plugins/woocommerce/includes/class-wc-product-external.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\05fV;5q','s/1. c\\ãk*Q?ڎo*H','',0,'?'),('<;z_h{4HmQ','wp-content/plugins/woocommerce/includes/class-wc-product-factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{,QSZ','Ôе$r5UWRRlDC','',0,'?'),('1kBzZ','wp-content/plugins/woocommerce/includes/class-wc-product-grouped.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Z1A&)','iSǺA9LQ߈\'{(I2.\0Y3','',0,'?'),(']Q%Ldċ','wp-content/plugins/woocommerce/includes/class-wc-product-simple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aldf70܄','6smq>0V;xՕ:r&','',0,'?'),('K9Y*0u\r','wp-content/plugins/woocommerce/includes/class-wc-product-variable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-)x)lBn9','B>T&̷.Kvy2\"','',0,'?'),('Q%*PqyC','wp-content/plugins/woocommerce/includes/class-wc-product-variation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=8`%Fs.','^8Nz\\&UЅrF	-t	==Z','',0,'?'),('~YH#\0','wp-content/plugins/woocommerce/includes/class-wc-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VڐZΦ^w','b%UiMA5.:&nnaqb%~','',0,'?'),('\r;C<x','wp-content/plugins/woocommerce/includes/class-wc-register-wp-admin-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2E4%j','ELZn8ʯϠ~F?OO1.;eg','',0,'?'),(':y3SxC','wp-content/plugins/woocommerce/includes/class-wc-session-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8qYb|s}','\'MNzw65v:/̢5tP','',0,'?'),('Io\'@FPE','wp-content/plugins/woocommerce/includes/class-wc-shipping-rate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>y`f','	U4F.tkO*ŌҭyX[7:\Z','',0,'?'),('⸠[(ې\'','wp-content/plugins/woocommerce/includes/class-wc-shipping-zone.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z;CWM.',';lN?eXV-GoGMh','',0,'?'),('\"\0V w','wp-content/plugins/woocommerce/includes/class-wc-shipping-zones.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[G莅NOPƈ','\\sdu)*CeN@\r</','',0,'?'),('D@kC}Os%','wp-content/plugins/woocommerce/includes/class-wc-shipping.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\nV01PZ/','?p\rFF_\ZH_V^z>\r`-','',0,'?'),('~,yW0Z.[','wp-content/plugins/woocommerce/includes/class-wc-shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JE?\\+\\)!','\'S J\"I\\[ʼS2=3f.','',0,'?'),('W\07fc|sA','wp-content/plugins/woocommerce/includes/class-wc-structured-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zTC;','I4dvӮ{\n|HħĔn\rd%\"','',0,'?'),('\rFB(ل\Z','wp-content/plugins/woocommerce/includes/class-wc-tax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t.o[?YKMN','k1ː޸$2E(\\|#֬踌','',0,'?'),('^4K5}>\'Z','wp-content/plugins/woocommerce/includes/class-wc-template-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	hBZ=`ڟ','$fdoe6*o+$}r','',0,'?'),('_	,zbk\Zͧ','wp-content/plugins/woocommerce/includes/class-wc-tracker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m\0Gh','|}\\dx*r]0d,fN','',0,'?'),('iM*\'|0R','wp-content/plugins/woocommerce/includes/class-wc-validation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%h}\"Jj(|','Tٴՙxp!7\ro䧟P','',0,'?'),('\'ܶ?`ؤ%)','wp-content/plugins/woocommerce/includes/class-wc-webhook.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/dN2m1.','PF粒E\ZO\'֭5x`','',0,'?'),('`\0\rٕp#1','wp-content/plugins/woocommerce/includes/cli/class-wc-cli-rest-command.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','liZb7z5','<κ5\ZiK>VtkWx^{G','',0,'?'),('ypeV@M','wp-content/plugins/woocommerce/includes/cli/class-wc-cli-runner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tg','Uڻ_pqVvPba=EԂ','',0,'?'),('<xQ{}$*','wp-content/plugins/woocommerce/includes/cli/class-wc-cli-tool-command.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6JP#m\r<B','B8/Q5[?\ZM˙1=Qj','',0,'?'),('z!\rT!Kz','wp-content/plugins/woocommerce/includes/cli/class-wc-cli-update-command.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>qؙagj70','L)x@\09#XRIO֋#\\^cv\'\n<','',0,'?'),('?~W;(','wp-content/plugins/woocommerce/includes/data-stores/abstract-wc-order-data-store-cpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1h\"!ʍixr+','Z2b[o	cϧQzk\Z\ns ֵ','',0,'?'),('\nߒp','wp-content/plugins/woocommerce/includes/data-stores/abstract-wc-order-item-type-data-store.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!\nik-;q','_SeVgGu6Y\Z\Z2L`','',0,'?'),('g0:bH','wp-content/plugins/woocommerce/includes/data-stores/class-wc-coupon-data-store-cpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QG~dc}p','P3Wl}!4^7ıL','',0,'?'),('UtL\',;','wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-data-store-session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W\n9FpA','wo;lJﲖmΤqU}`v=f','',0,'?'),('ۆj[d<T','wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-data-store.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?>b&A-9eOdJ:','s嵧P*crj)','',0,'?'),('tbm7\'ꡤz','wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-download-data-store.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.[+c]6j\'','#Z8^j6b:zD]s{','',0,'?'),('ۍ\ro.g@M','wp-content/plugins/woocommerce/includes/data-stores/class-wc-data-store-wp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?/ `U9X','79_0\ZZbLRէ__h','',0,'?'),('Sp\r])','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-data-store-cpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']NNR5|','3cV9byx%K=R#qaS\ZEI*K','',0,'?'),('dx\r	=\0\"\0\03fL','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-coupon-data-store.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?yYG','d/{{<``zA`4E','',0,'?'),('K4R\0>u)','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-data-store.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@Xg\"{','৺\\OR~ˡaw~','',0,'?'),('D;_[dK','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-fee-data-store.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Da˱+','Gs|·\rM!\r\0RZQ','',0,'?'),('mhIko$u','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-product-store.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b YZ','Cg\'fg\ZwtXpֵ','',0,'?'),('\",q7K','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-shipping-data-store.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(KSVbê\nKZD','\'<ni\0lW{Ә+޾f2','',0,'?'),('-Ed\"Tbfx9','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-tax-data-store.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nR+U=%','i\'&ǳ-o}hb	/G','',0,'?'),('wš,$','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-refund-data-store-cpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n`\'\nWcfΡ\n','D8;\\[:juV@RL\"','',0,'?'),('J\\\'෕M--e!','wp-content/plugins/woocommerce/includes/data-stores/class-wc-payment-token-data-store.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\rO28hc','\\y\'Yc;K<WJk','',0,'?'),('Bc%E8m4','wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-data-store-cpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qP[)iU','ω36oMg#3\r47','',0,'?'),('Btb\"Fd^','wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-grouped-data-store-cpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@CR:Tт-','[LU˗m}J:\"|6}+(Ih_','',0,'?'),('^^9V5}Gm}','wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-variable-data-store-cpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}v%PVk','MH%^>rIk-^','',0,'?'),('mSU)Yk6	̷','wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-variation-data-store-cpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rߧ\rπb','\n0%e$F7~?\0D\'3\\9`b!1','',0,'?'),('JX覬=~','wp-content/plugins/woocommerce/includes/data-stores/class-wc-shipping-zone-data-store.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z֣\Z','aۜQ4w=˯Vcv,','',0,'?'),('txע','wp-content/plugins/woocommerce/includes/emails/class-wc-email-cancelled-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4(|XB','>hŖuWOG1ޅVAĶTȭ','',0,'?'),('XIА^\0eˣ','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-completed-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{eN','\0U^\'DO289\\q ds\\','',0,'?'),('N_==ө','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-invoice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H׭I\0v','&3[X.I%\"`e2uz>','',0,'?'),('QV򑨰Q','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-new-account.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?bw-4','z-\npVx+顿ym','',0,'?'),('1.ko$\'ԦR','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-note.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԒԈf$n/Q$','7VIjZe]Vvƕ1hMkZo','',0,'?'),('SzX%fWA','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-on-hold-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','db֐9;','j3f15oJpzwc?;m','',0,'?'),('FyP','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-processing-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rsvU܆r^WR','3,,ʎ7٧ՃHB;Ϥ/R$췍','',0,'?'),('T!zWw.Z','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-refunded-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.gS5','˰䱅x/dhTeӉ','',0,'?'),('8ӅE2','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-reset-password.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wkD/q&UG;','˗GVƵvǅΐ-Yiy3','',0,'?'),('I67Wfi0','wp-content/plugins/woocommerce/includes/emails/class-wc-email-failed-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Ёti\\1u','T^&ӛH\Z,I`#	\Z\"7(~rġ','',0,'?'),('ȢS9.v{Qy','wp-content/plugins/woocommerce/includes/emails/class-wc-email-new-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gj*G0!ڸ','Y	N[?FzJ(̇]33w8\\*R','',0,'?'),('gnYnQ_)','wp-content/plugins/woocommerce/includes/emails/class-wc-email.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[LIR#7w?y','\"K.2`۟؞]@`Je','',0,'?'),('*>܆P','wp-content/plugins/woocommerce/includes/export/abstract-wc-csv-batch-exporter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\\̯ڙɓ','$BPy4{by%\Z~8k,G0q','',0,'?'),('!zEt','wp-content/plugins/woocommerce/includes/export/abstract-wc-csv-exporter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i-Ih,oE','×gp?l\ns	L1Ȁ57?ݾm','',0,'?'),('mt,^{','wp-content/plugins/woocommerce/includes/export/class-wc-product-csv-exporter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T9%a	Գ4|','h֋}VVnwIK*\0[[/kUL`','',0,'?'),('Br*Is','wp-content/plugins/woocommerce/includes/gateways/bacs/class-wc-gateway-bacs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vXN','랜\\Z=z,9/P\neH7?','',0,'?'),('ꄦe\Zj~Syrju','wp-content/plugins/woocommerce/includes/gateways/cheque/class-wc-gateway-cheque.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sBb}Lucu','t7O\"xn9TT}Ws','',0,'?'),('1*hB','wp-content/plugins/woocommerce/includes/gateways/class-wc-payment-gateway-cc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zsBUK','tďCi>ed)@=L]ѰO','',0,'?'),('Ћ$~}I','wp-content/plugins/woocommerce/includes/gateways/class-wc-payment-gateway-echeck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uo*dv^','zO6jKA*	U9Z8XC','',0,'?'),('3eU@;`O','wp-content/plugins/woocommerce/includes/gateways/cod/class-wc-gateway-cod.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"@pG\"','ÄP\"ρo3s\ZuKi\Z^','',0,'?'),('C|QKOEQ\rt','wp-content/plugins/woocommerce/includes/gateways/paypal/assets/images/paypal.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ƈ\ZԘ>]','փ:N,\'gҧ#b	d)˸','',0,'?'),('ӹ\'?meU!-2v','wp-content/plugins/woocommerce/includes/gateways/paypal/class-wc-gateway-paypal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W7@bg','I)G)8?\')p3ڎ','',0,'?'),('=ޑUFV?0[','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-api-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!s	b0NGeQ',' g\Z7q$2biUǢD','',0,'?'),('38K.C','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-ipn-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z2 t%oj','=Zi*\0wγ!!','',0,'?'),('\Zw$qs33}','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-pdt-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qcţm\'\0o՟','\";q~已ut>&1+7','',0,'?'),('	.16llY\"2R','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hkV=+8i','>kK:z=An','',0,'?'),('ߥSa','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I{Iη|','ejVCmz1kb)NHoGX&SZ=','',0,'?'),('ԝry2kA','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/settings-paypal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~]6͜)qij+2','5wyӳc|r~d4jVt','',0,'?'),('B[C*mb','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/assets/images/cards.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','շJT:','̣NK[}AT,+y4p5W','',0,'?'),('=![m)5','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/assets/images/logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hm/D','EgFQ@X%tcB@p','',0,'?'),('d/&yǴS','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/assets/js/simplify-commerce.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-&(\\)','[iG?|Z)P3	u&gB','',0,'?'),('-\r#>0y?=PpD','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/assets/js/simplify-commerce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','adقނN','7	c{ڼH$R.\']]uCx','',0,'?'),('p2,!Ke?H','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\r:Rk8n','xGJLܲscɜ\n^DObC','',0,'?'),(',*HH.','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qt*&qTT','gC1z8\\/?yM>% jn-','',0,'?'),('u%aNX','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/AccessToken.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','To؎fM-Sz\"','!fքGۖJ7r<MTET*ZsI','',0,'?'),('x\n@F','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Authentication.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tDaGDZj','4[+W׾k#MpҩiX','',0,'?'),('wUƮt\'(','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Authorization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9a=,)C I','6?wItmi,igӬ=`n','',0,'?'),('(oҟ~P*','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/CardToken.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-1&BW$g','r4´VD\"NI,aD','',0,'?'),('L:tWc','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Chargeback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',oqC','+߶Ah죮Q\"2yՎ|Nw(Yg','',0,'?'),('=LJ8*^V','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÒzXtw^j','5\Z.\rCklt&8pfi','',0,'?'),('Q,v7','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Coupon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']^`\"Dfd','\"@3\r.\0=c4W0=','',0,'?'),('U+E-+tx','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Customer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(1JYue%ݒ','.L/y.:۬Y','',0,'?'),('*B|d','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Deposit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\rsˈI5','ȺnvnT}ѡmr\r~jf+{Q','',0,'?'),('mB<fhB.\0','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Event.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nh{X|\r21','3Ak vTrzgh=\0er2','',0,'?'),('>vBh,O+p9ѹ','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Exceptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Dܐz }','\n\rQ<yiѷ\n~j{K0F','',0,'?'),(';B%f\"Ƈ','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/FraudCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z$C\niW+n','jTS%^}\0v)-$Enho|ߵ{Tj}.','',0,'?'),('prg<ƀ','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z*asRm_\\',' gYj\n&G(Y\0I?/','',0,'?'),('\\i>ߦy','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Invoice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UZZtZPRA@','3B\'G~#9(o͢,^','',0,'?'),('zވŝGH}g\0','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/InvoiceItem.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9cR<3','4òoMn#S\ZXd','',0,'?'),('ILWap&sKz','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Object.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' *Gқ<?2f','-}jh>/!LEmæ1','',0,'?'),('zoX0KN','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Payment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z7~6L(','p\Z빒mXF;Ǔ/Gr@1','',0,'?'),('SW<%o','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/PaymentsApi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ꝚZ ','C*	)HOxjFj5אp','',0,'?'),('jᗨw\"2\\Da','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Plan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AMdz:Z','6ecQfKĜR	`=+','',0,'?'),(']뺲V>dyv','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Refund.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&	#Zp\"nO','nf(ݺrRsf\nlϘ:','',0,'?'),('ʲ{$KZЙ\"C','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/ResourceList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xUm/Af','.VtӷH@ZzjX','',0,'?'),('˖f\ry(','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Subscription.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xcfiѬ','#@A=I-_ۅ\0ҳ5ʚs}','',0,'?'),('b-CV_n.]','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Tax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R贈/','-OPγ+ӌ%Gۑhv$ku','',0,'?'),('W~k3$','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/TransactionReview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J,y(R','N_D~*\r9fhzt','',0,'?'),('%\Z9','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Webhook.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2%rH','zbT((:#Hi\0$o','',0,'?'),('mI0b1xXſ','wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ֲ\02p','iD+m)j~P\"y\'UjD~+cpї=@','',0,'?'),('s1|uw姨','wp-content/plugins/woocommerce/includes/import/abstract-wc-product-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U;rɫޚ','>}CE\nR\n|`\0','',0,'?'),('~N~Om>','wp-content/plugins/woocommerce/includes/import/class-wc-product-csv-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wklZ,ol','o_%FHvmKG=Kw','',0,'?'),(':WxOre)W3~','wp-content/plugins/woocommerce/includes/interfaces/class-wc-abstract-order-data-store-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vk$d','493r=N\r4','',0,'?'),('M!ǢF:/\0','wp-content/plugins/woocommerce/includes/interfaces/class-wc-coupon-data-store-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tx6C;','[O5MqOiZ~l\"ݞh&','',0,'?'),('x.\\(ssuEx','wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-data-store-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9LnK=Rv','fp\'\r[07]T^c\"M\0TFta','',0,'?'),('[T`','wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-download-data-store-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T\"ΰ2ڐ|','S\'U\nj=0jek','',0,'?'),(';(@<7','wp-content/plugins/woocommerce/includes/interfaces/class-wc-importer-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c\\Q\'ue.Up','},iFа-|Jק','',0,'?'),('8A0IF3H','wp-content/plugins/woocommerce/includes/interfaces/class-wc-log-handler-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OL\r(u=','	\"V1PgDߐXj^Q	BhE','',0,'?'),('K;~\rR\r-','wp-content/plugins/woocommerce/includes/interfaces/class-wc-logger-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')s䆱','5I8l}]]zU=','',0,'?'),('LeZF%é','wp-content/plugins/woocommerce/includes/interfaces/class-wc-object-data-store-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\0KW#TP#[','FB.)9QZ깧w:*:v0','',0,'?'),('YɌ8\\k','wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-data-store-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9i\ZDE','saQ\\6J2gڮIߔk','',0,'?'),('7ddzˤ7qM','wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-data-store-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/9!B8sb','T\r~ z<iF ','',0,'?'),('d$+n]@KUh','wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-product-data-store-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MYh:K','*;\\;)om̞M=/I','',0,'?'),('ǚ_`=&','wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-type-data-store-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':(1+.I','0L`\0|!y$X?G|$','',0,'?'),('aVmOq','wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-refund-data-store-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5fVEݷ/f','#$##*ALj6x','',0,'?'),('.sR̿.,','wp-content/plugins/woocommerce/includes/interfaces/class-wc-payment-token-data-store-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' w]DB\'.sI','f\nf!y3).#Irُ3f\ZȪh','',0,'?'),('x1lx\r}','wp-content/plugins/woocommerce/includes/interfaces/class-wc-product-data-store-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I6(ܮYC_','d$Z\0=\0԰Z4Vۀ','',0,'?'),('uܬVP^P_','wp-content/plugins/woocommerce/includes/interfaces/class-wc-product-variable-data-store-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ttx','FI9l\0?i8s[pfXPu5Y!~sqz','',0,'?'),('hgj7PjqB;','wp-content/plugins/woocommerce/includes/interfaces/class-wc-shipping-zone-data-store-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<sqLT','s0(CIIO_B0:.)Ejd','',0,'?'),('/ŇU|5K7','wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gѷkl','+*Ψbʲ8[m:o=.gD/Hi$','',0,'?'),('JjH&K5u','wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-payment-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$PE\n!\\0','	RcyֆKq8ZeNQ\'Zπ','',0,'?'),('<BbdpcL','wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-product.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=n; c5Uܓ','J%8L\\h=HW4nZ\'','',0,'?'),('a=⻻.f ','wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-coupon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\nOvl	M#','8v~k¯_^>Y}A_\\j','',0,'?'),('|#67	w.v','wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-customer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=F1rc\n\\7\n','\'٣IPLgm	?63Sl(L','',0,'?'),(',KؗB0\'%@e','wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-shipping-zone.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','۠<nx#X','4KWNd\n&@+ƁRv#','',0,'?'),('{fΓ࢐1ʁo','wp-content/plugins/woocommerce/includes/libraries/class-emogrifier.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mh_%qbb','\'DNl{sy\"Of>apS!m-','',0,'?'),('c\'qVs/~','wp-content/plugins/woocommerce/includes/libraries/class-wc-eval-math.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%<\\B)M',',j\Zx!rg!$D!D','',0,'?'),('phO4p57','wp-content/plugins/woocommerce/includes/libraries/wp-async-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Zb)a^~:O','Z*Cn6?ZIɓ/:(','',0,'?'),('$mM#Q4sc','wp-content/plugins/woocommerce/includes/libraries/wp-background-process.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$~$\n7','+-?5\0!=ϸXl·','',0,'?'),('޷wqy','wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S,dQR%ܣ','mO78/\nV?*hgJ-׋	/u','',0,'?'),('	o!AcaZ?','wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-email.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CP8\r;դi)','ܒ=(Q\\*d~tU?>t.','',0,'?'),('S(f흃b=','wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9tKBžӉ','unI}$~z\ZJ*6G:)dqx','',0,'?'),('nEl||s%%','wp-content/plugins/woocommerce/includes/payment-tokens/class-wc-payment-token-cc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rI_lG\'','`=ԲL 5:<ma; B@','',0,'?'),('S2CT','wp-content/plugins/woocommerce/includes/payment-tokens/class-wc-payment-token-echeck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǭ/me\"df1\'','wBv1q_oF1	h1','',0,'?'),('aoaؓ=犢)J','wp-content/plugins/woocommerce/includes/shipping/flat-rate/class-wc-shipping-flat-rate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʍM\rTS\r','`+/sZRٖ˄*80\r9\"\"!','',0,'?'),('X\'M-]','wp-content/plugins/woocommerce/includes/shipping/flat-rate/includes/settings-flat-rate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x&v#ˏLs}Z','(M:]pA^\"Q<6s','',0,'?'),('ҟ÷','wp-content/plugins/woocommerce/includes/shipping/free-shipping/class-wc-shipping-free-shipping.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n~/V>n.PL',']ɒy6w;`&0	yF%&0','',0,'?'),('hAoʞ','wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate/class-wc-shipping-legacy-flat-rate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8>׮iCK','ɠ&]wVx=RvwCM1Ve','',0,'?'),('\"y6(~z+g	n','wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(tc&;\'ױH','Ǣ3\"u̩Ucija EmbbL(','',0,'?'),('R}AI4OG','wp-content/plugins/woocommerce/includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','47Ff!#','s$ neډAٵ/','',0,'?'),('.yZGr4j','wp-content/plugins/woocommerce/includes/shipping/legacy-international-delivery/class-wc-shipping-legacy-international-delivery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jه-_QԲ3','	g4u\" t','',0,'?'),('({Jj8@T','wp-content/plugins/woocommerce/includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wP-}?#b\0','ܔ]8ToUAj&0','',0,'?'),('70.\"/\nR','wp-content/plugins/woocommerce/includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W95\\+','ҋ;TbSrebɉD','',0,'?'),('~\ZQG0av߱ֲ','wp-content/plugins/woocommerce/includes/shipping/local-pickup/class-wc-shipping-local-pickup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BZulV,z','Z\0Ds%^9{gb#O}+r<','',0,'?'),('.Mmv!g؃','wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-cart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z3Ͱ+Tahqc','|7^k\n헗:sEdO','',0,'?'),(';Po64E','wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-checkout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';.C`kƋNb','!rT35,ajo\n*p?T{n','',0,'?'),('@%_A	\0Z\04','wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-my-account.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VI߷`;I\n','4gj{FnW>z#Z','',0,'?'),('w\rhB#	M','wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-order-tracking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5<hֵ+~{S{','П\"9F^ݎ\\/o(ç','',0,'?'),('LF.O. ','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-seventeen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nx aЁY U','u}쑲XTm\"8V?<FE}Rhh+','',0,'?'),('G*h','wp-content/plugins/woocommerce/includes/vendor/abstract-wp-rest-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RԐ,Uj','9Gh5{AI߈V\".HƃĬ','',0,'?'),('?WK5','wp-content/plugins/woocommerce/includes/vendor/class-requests-ipv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','US伋V۶\'','H|PW2~5bG֜,','',0,'?'),('J4^9\0)q','wp-content/plugins/woocommerce/includes/vendor/wp-rest-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V)P?','>\"cڏ\'1rNiOcL%jN','',0,'?'),('Tf>Ǻ~','wp-content/plugins/woocommerce/includes/walkers/class-product-cat-dropdown-walker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/	Tr09','\n<WJA5bB_]h/','',0,'?'),('gԨZkv$C','wp-content/plugins/woocommerce/includes/walkers/class-product-cat-list-walker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q(gٙF[',',˘pC\">V#\0Lά','',0,'?'),('*K*_A\"9-p\'','wp-content/plugins/woocommerce/includes/wc-account-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U@#X}','	])/7OCۢyQ0U>','',0,'?'),('ŸW_JcZB','wp-content/plugins/woocommerce/includes/wc-attribute-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E v}wٞ','Xu<vq@-X=V>GeߏV^','',0,'?'),('j6J4','wp-content/plugins/woocommerce/includes/wc-cart-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U!-Vo~)_\Zط','iLR*?-vEЗ	IiZI','',0,'?'),('<W	\ZM^Dq','wp-content/plugins/woocommerce/includes/wc-conditional-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ǧ\')gQI&','\r>	\'ż>Er5K>:r;{','',0,'?'),('!J,û⼱','wp-content/plugins/woocommerce/includes/wc-core-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3P}0EOf%','mJaJAb,;M-,ɋ','',0,'?'),('m}|','wp-content/plugins/woocommerce/includes/wc-coupon-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~m@iYߦ','!	sܙ\rUyqO)pr3f','',0,'?'),('\'F $O^nIR','wp-content/plugins/woocommerce/includes/wc-deprecated-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*]&UB','+pz^LDD\"kaQuv/qu0]Z','',0,'?'),('8fdQka','wp-content/plugins/woocommerce/includes/wc-formatting-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5cg0EZ','@1KCx\';]C$2','',0,'?'),('viEcXG^','wp-content/plugins/woocommerce/includes/wc-notice-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CFȢx','r9-\'a^=P','',0,'?'),('IP:]<r5qC','wp-content/plugins/woocommerce/includes/wc-order-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':hd[>}M\05','}ʖw(eWlsKl','',0,'?'),('?6|0ϳ','wp-content/plugins/woocommerce/includes/wc-order-item-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z@`8','ypBDdXPrc6haC#yB','',0,'?'),('sAweEET','wp-content/plugins/woocommerce/includes/wc-page-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%C~qg\\',',=J5xa^ݳ,:D{*k','',0,'?'),('ɽ\Z7n1','wp-content/plugins/woocommerce/includes/wc-product-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jl+O;','^$OE(>RnsRMLĦ[f0','',0,'?'),('p&E-5}[\rdI','wp-content/plugins/woocommerce/includes/wc-rest-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"x}!}nZ','fi}B}Cq\nEyI]3;D/Gs`','',0,'?'),('>\'#<G\r','wp-content/plugins/woocommerce/includes/wc-stock-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-a\ZU;rN','q,\"mE9\r5<Nv}','',0,'?'),('Hиo%pk}','wp-content/plugins/woocommerce/includes/wc-template-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$2Edw8pe','^%3;$K#\"֎!>Vzeք~','',0,'?'),('sK!7m{]','wp-content/plugins/woocommerce/includes/wc-template-hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`\"sm2','T˿Iil FoKJZ+\r','',0,'?'),('^#2\ruA','wp-content/plugins/woocommerce/includes/wc-term-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r[(nLGc_','( 5TOfX\0oceB!(','',0,'?'),('\0CTْɃ9','wp-content/plugins/woocommerce/includes/wc-update-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Tܶe','awLn݀/NSO\ZO','',0,'?'),('<A38f7ȷu','wp-content/plugins/woocommerce/includes/wc-user-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','՗>W5!ip','pz/8.d]bU}waOWd}f^&','',0,'?'),(':<oVSwM','wp-content/plugins/woocommerce/includes/wc-webhook-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mK\"@F;(S:','~TLQ7pgb<)hR\n\0b;2L,ٹ','',0,'?'),('%Nd\0É0','wp-content/plugins/woocommerce/includes/wc-widget-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#YP6<2v\'','PCu9+^ƥua5Yt$s','',0,'?'),('yzCX9j','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-cart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2_?yWK_*C','þ\r2!pkyjQzHLw\r`','',0,'?'),('+	r˧km\0','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-layered-nav-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`q+H\Z?e','lm_M{U;}gUَ[iu','',0,'?'),('f+Z','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-layered-nav.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ّ[.vZd$','Ėk̤8L杊iڻV\'t','',0,'?'),('XtbE','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-price-filter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gwr&I\\2EQF','_S@Mta5{8cm.Xp\\\0\'ף','',0,'?'),(',^,?x3Ao','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-categories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^1Vd!K{v','[!T *L	99OdPA6#','',0,'?'),('{\']Hdt','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Es4X\0zvU','32y#[	i`~AF','',0,'?'),('\\5e%nR1Ua','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-tag-cloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[\\ea~','Њ&k_EMA7~||g{#K}LL\'','',0,'?'),('VϜI&tFQ','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-products.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SALnJ','+7)HYiroUV&[}','',0,'?'),('=FY3S:c','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-rating-filter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qN$a','Gс=Jslˣ=(','',0,'?'),(']3`','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-recent-reviews.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r+gRBV','!\"3e29{<f4u>G?','',0,'?'),('rِWDM\0%6)','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-recently-viewed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D-¡R',',j]s63萠=','',0,'?'),('o~. F>!ߵ','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-top-rated-products.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']-;3г','LkEST3^)[>NQUcQZV','',0,'?'),('\"i$l','wp-content/plugins/woocommerce/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ο}|j^*8','ȶ-UA0gB+J!D|À]j','',0,'?'),('P[7U~,U\\P','wp-content/plugins/woocommerce/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\Z%y6)','fиA@\n{ؘ7!/(-Ib','',0,'?'),('\'<6Bt','wp-content/plugins/woocommerce/templates/archive-product.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vlIM#','Fo+ñ4i94K@DN!78cq','',0,'?'),('g4ɝ;6]','wp-content/plugins/woocommerce/templates/auth/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/g*˚lj','9ڊ,=R)Ӯ$=%o(','',0,'?'),('f&5bN8/','wp-content/plugins/woocommerce/templates/auth/form-grant-access.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̆ e',' v53Jl\']r	8 `:;&','',0,'?'),('emV U','wp-content/plugins/woocommerce/templates/auth/form-login.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M9m;ܩ','a򵿯x5M<Qe&AMz(XO','',0,'?'),('v\'@DMŨps','wp-content/plugins/woocommerce/templates/auth/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/j=+','(W\r+]	H	\\d-2]3)R','',0,'?'),('۞32@-','wp-content/plugins/woocommerce/templates/cart/cart-empty.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E9AK','ظqM3@YnLZs','',0,'?'),('S\' \"','wp-content/plugins/woocommerce/templates/cart/cart-item-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0}R^(N\"Xa','V%ᵣЮ`_f,SVeC?l','',0,'?'),('H@T&IĤg','wp-content/plugins/woocommerce/templates/cart/cart-shipping.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wݶ8\'Y5','C(qO^NsHC.K-xU','',0,'?'),('rG#7ث=\"	˖','wp-content/plugins/woocommerce/templates/cart/cart-totals.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2K(?}i5v1','u#@ZBUL\nvi;kVÔ','',0,'?'),('9Hƍ88/','wp-content/plugins/woocommerce/templates/cart/cart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','it\",BCW	\"T\'','!ߘLove\0\'n7u','',0,'?'),('PUQ&s9m','wp-content/plugins/woocommerce/templates/cart/cross-sells.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"jgDTK$0<','KdiB|!jMsj]zTMSϑ','',0,'?'),('簾&lY4@\Zw','wp-content/plugins/woocommerce/templates/cart/mini-cart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R o`9t@H','Xᘓ\Z;KR.$|u}1N&\\У','',0,'?'),('kz<?MRG','wp-content/plugins/woocommerce/templates/cart/proceed-to-checkout-button.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r_\nA}','\r\rժ$ߚbޙs1t`6q','',0,'?'),('-(&$\"','wp-content/plugins/woocommerce/templates/cart/shipping-calculator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L|:^)yT','̗%AXvTSU*\\\',w!V','',0,'?'),('D','wp-content/plugins/woocommerce/templates/checkout/cart-errors.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>܋ɔ','`@@DV}X{7s60Q*','',0,'?'),('I*yu)Bw','wp-content/plugins/woocommerce/templates/checkout/form-billing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':z~J[u','VG0QL`P4\n$bZb\ZK','',0,'?'),('˥`8(	','wp-content/plugins/woocommerce/templates/checkout/form-checkout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';96^P^?!','ɝx\Z	11,+c)\"J]Շ`','',0,'?'),(' ={q>F9','wp-content/plugins/woocommerce/templates/checkout/form-coupon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ж=\0K\'','b0TF8M=ZsBT\'','',0,'?'),('WR\rsb','wp-content/plugins/woocommerce/templates/checkout/form-login.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N(2,w!DG','6+B:Ȭ#wmUPtQu/\"','',0,'?'),('jm*[g+HFJ','wp-content/plugins/woocommerce/templates/checkout/form-pay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T|p3:P','P\"Jt|I~v;y+Ź`?','',0,'?'),('7_OI;Mg','wp-content/plugins/woocommerce/templates/checkout/form-shipping.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',,P}QY=','gOSX-/t%6>+ŘNjN`W','',0,'?'),('ADl!y1','wp-content/plugins/woocommerce/templates/checkout/payment-method.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t͌c;5','5<vb9luHE.hn4?뎖}?','',0,'?'),('\\r65oI	m','wp-content/plugins/woocommerce/templates/checkout/payment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=%춃sِyv','&`9QVfVgw_οM\no','',0,'?'),('֗0cj6','wp-content/plugins/woocommerce/templates/checkout/review-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hh5Af̖N','^:Vۀ]v,Y2aл6','',0,'?'),('\r]MxUL:\Z5','wp-content/plugins/woocommerce/templates/checkout/terms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T; LḨ\'','ڼ~rܕahΩ&X;K','',0,'?'),('fj)&TF@M7','wp-content/plugins/woocommerce/templates/checkout/thankyou.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','γtT?JQa','hLt\"{W(;H)','',0,'?'),('h/8ϕ/7NIF','wp-content/plugins/woocommerce/templates/content-product.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\\&	T!a[_','Y/\ZG+\n0\\/,Alw8cZ=$','',0,'?'),('њ[eXH\\*','wp-content/plugins/woocommerce/templates/content-product_cat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sҝnȍ\0c','YSFzA5lX?0sea?/q','',0,'?'),('?jQFqGM','wp-content/plugins/woocommerce/templates/content-single-product.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͱ#Wm~հ|X','#8Ru`wM3E:Im)z.mQ','',0,'?'),('/7\\','wp-content/plugins/woocommerce/templates/content-widget-product.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CO','|1t!%`Ѧo/LQ7\\\\','',0,'?'),('<s3.ϒ!$','wp-content/plugins/woocommerce/templates/emails/admin-cancelled-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%	+Zwܗ','xnϮaE.(1ov)<','',0,'?'),('$&JaU&','wp-content/plugins/woocommerce/templates/emails/admin-failed-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';@0`{=j\r*i','nk+U)l>+qy(SהDd:\\g$t','',0,'?'),('X,,I7','wp-content/plugins/woocommerce/templates/emails/admin-new-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ױ{ۂ|','\nC2Uˢ$T̈kd.6','',0,'?'),('E\",V1=Y','wp-content/plugins/woocommerce/templates/emails/customer-completed-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UNn\'M(Z',';a^=3xI/4L99x#','',0,'?'),('@\":!hH','wp-content/plugins/woocommerce/templates/emails/customer-invoice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݱT6HLnKrM',':a!nE@!בxB','',0,'?'),('\"-q5.v%mOm7V','wp-content/plugins/woocommerce/templates/emails/customer-new-account.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';~p&yG','#ԡ1C6+uw+A@΂]','',0,'?'),('Ciٚba*','wp-content/plugins/woocommerce/templates/emails/customer-note.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lltcƅ1vuc','*;nC*1JJX','',0,'?'),('R U{(','wp-content/plugins/woocommerce/templates/emails/customer-on-hold-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qi П,ET','&%TBs7c_|5`~W','',0,'?'),('ݨ1qg@-5','wp-content/plugins/woocommerce/templates/emails/customer-processing-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GsVs+Ϣ4X:','*	sU3CH<`ك,-}','',0,'?'),('pp%)+cf!E','wp-content/plugins/woocommerce/templates/emails/customer-refunded-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'{HXBoŴ','hJgrbEM-M.T5`','',0,'?'),('C-8_<8j','wp-content/plugins/woocommerce/templates/emails/customer-reset-password.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T&F0ͻ#|`+','F:~*,jD7\\8w?-','',0,'?'),('|.Mh\0','wp-content/plugins/woocommerce/templates/emails/email-addresses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oc|IZ#C2p','w8DhNSFIthBF','',0,'?'),('Drz(TM?c','wp-content/plugins/woocommerce/templates/emails/email-customer-details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڥ4Hl\r.y','ʛvaAzEF\'c','',0,'?'),('%.7;$I','wp-content/plugins/woocommerce/templates/emails/email-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rc09Ji	uUQ','$uKi\\&P\0p1','',0,'?'),('C	a IK','wp-content/plugins/woocommerce/templates/emails/email-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m\"k/Ǉ<~',':=UG#60vG<A^ػTC،\\\"','',0,'?'),('K٠];\'Y2','wp-content/plugins/woocommerce/templates/emails/email-order-details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sb`3D','ū~a1wP\r!Qˌ\"V8h','',0,'?'),('[\0WEGjp茻ox','wp-content/plugins/woocommerce/templates/emails/email-order-items.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r:GhYcڜB','\0nfxGL3&pFgӖ.0a','',0,'?'),(';\0]oKS','wp-content/plugins/woocommerce/templates/emails/email-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&UV,','}N hI07\'kǨCYPy%>','',0,'?'),('0{fHf(V<','wp-content/plugins/woocommerce/templates/emails/plain/admin-cancelled-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O+N\"ָg\0','k_?N \"\r','',0,'?'),('V}Ay|f','wp-content/plugins/woocommerce/templates/emails/plain/admin-failed-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O\0[1\'L','/hb{;@w}[FFyT\'','',0,'?'),('R-b:UqV','wp-content/plugins/woocommerce/templates/emails/plain/admin-new-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Kq,T^fa','5*y*r!tʸ,+','',0,'?'),('dm\0$a;','wp-content/plugins/woocommerce/templates/emails/plain/customer-completed-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@(2a?','2ư9!AfSxܮ|@%9U6lQU\\','',0,'?'),('e	54|`d㥭','wp-content/plugins/woocommerce/templates/emails/plain/customer-invoice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\dr:/+@?','\Z}CQzT5<i7-4E\Zǐ','',0,'?'),('Y.zV','wp-content/plugins/woocommerce/templates/emails/plain/customer-new-account.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P:4دp5\"7n1','Z:mW=HBhؾy5~','',0,'?'),('˽lNVb4Xe\"','wp-content/plugins/woocommerce/templates/emails/plain/customer-note.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Cu*TEFaq','%b|HoJ].,{5$$Z9','',0,'?'),('J\0k\'?~[U1','wp-content/plugins/woocommerce/templates/emails/plain/customer-on-hold-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L8dZ','\"\\2 ~/n>C{T,\rIF\0','',0,'?'),('WN,\r0rh@','wp-content/plugins/woocommerce/templates/emails/plain/customer-processing-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Pl#2;H)\"[','\';pz*֧it۳;','',0,'?'),('O@=A?q','wp-content/plugins/woocommerce/templates/emails/plain/customer-refunded-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^.{U8','J[q/C(N0Lٖ55 0,','',0,'?'),('3@bIZK','wp-content/plugins/woocommerce/templates/emails/plain/customer-reset-password.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~{~%$Q%Dj',',Lʄ9w`8ءO\naq	F','',0,'?'),('qLis>u_&','wp-content/plugins/woocommerce/templates/emails/plain/email-addresses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*\\Qr','ܨ.K}D0v\ZX-!','',0,'?'),('kBEu!\\zCj.','wp-content/plugins/woocommerce/templates/emails/plain/email-customer-details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d9㧈<ҹ','@FDe\0\rڍthc%Hi׊Յ4','',0,'?'),('{P6$\'','wp-content/plugins/woocommerce/templates/emails/plain/email-order-details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Hn/iîY','˶M46[=\Zdt5','',0,'?'),('PK([-F{Xj','wp-content/plugins/woocommerce/templates/emails/plain/email-order-items.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȄE,75E`L','v7P.\nGO|TAJIE\\I2','',0,'?'),('F?烺[\\|2f','wp-content/plugins/woocommerce/templates/global/breadcrumb.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Bf=\\	0f','[\'^3QaC,Jn^]\rs;','',0,'?'),('\0`bӪX','wp-content/plugins/woocommerce/templates/global/form-login.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=!EVtF64_\'','|EA\nIDw&s\r0h\0tX&Q','',0,'?'),('ݖyUxM	','wp-content/plugins/woocommerce/templates/global/quantity-input.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FE,«w','\\JI@d[h0Z>d1','',0,'?'),('*Ӵ-q;','wp-content/plugins/woocommerce/templates/global/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?a`(N','HVށe]k[-5l$<','',0,'?'),('xvPzC','wp-content/plugins/woocommerce/templates/global/wrapper-end.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qlm!=`ôY?','l猆dlԒà=w*i','',0,'?'),('ϗjScr;','wp-content/plugins/woocommerce/templates/global/wrapper-start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p%Ψ?j','d-:/\\*ſ\Z_<@ʺ','',0,'?'),('&rqo%,','wp-content/plugins/woocommerce/templates/loop/add-to-cart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+q鐗!By','hb-+yue&\0<c;N+','',0,'?'),('cx]RsR','wp-content/plugins/woocommerce/templates/loop/loop-end.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pٔ~','{Kd{&_ə=Ox+aUT|','',0,'?'),('\ZiDՓ$aI','wp-content/plugins/woocommerce/templates/loop/loop-start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uݶ8','<!\0Ra=#\0uy9^\0h|7w?0V','',0,'?'),('nxtDPt_v','wp-content/plugins/woocommerce/templates/loop/no-products-found.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{	r`','arش~<*\"ŻѴO~w','',0,'?'),('ez؞;\"d','wp-content/plugins/woocommerce/templates/loop/orderby.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	G-ҳ%.C).','mr3Lt,h}ыYDĿ','',0,'?'),('ix9pw疧','wp-content/plugins/woocommerce/templates/loop/pagination.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֑5S CqN~','M\nNACKf],Xq','',0,'?'),('P՟5$sTt ','wp-content/plugins/woocommerce/templates/loop/price.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A/qĿDDe;',';F͓Υ~+<^/M -p','',0,'?'),('Ӹw0','wp-content/plugins/woocommerce/templates/loop/rating.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_\\+jPG','s\\OL-)x8&3]fpLn','',0,'?'),('Kl}\n*J(9<','wp-content/plugins/woocommerce/templates/loop/result-count.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%fy4]^^','.T`L{L\\XG','',0,'?'),('?{K3Oi|u(','wp-content/plugins/woocommerce/templates/loop/sale-flash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZdbVP-(\Zu','DQR̼_s2!FSa3w','',0,'?'),('M`/2','wp-content/plugins/woocommerce/templates/myaccount/dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HE6iMw','ܡ\0f!J19c3\ZK #fvZe','',0,'?'),('嫱cݲzy;O','wp-content/plugins/woocommerce/templates/myaccount/downloads.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vh{j/Std','0,ݭˁxfU,n5v0\\Si','',0,'?'),('L|ewEC\r)','wp-content/plugins/woocommerce/templates/myaccount/form-add-payment-method.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':;].$QN^','eՋ-Fٰm&Xtϱ\'5','',0,'?'),('R#5B','wp-content/plugins/woocommerce/templates/myaccount/form-edit-account.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','loLcAr4_','ŁYTai4\ZM踊Z&','',0,'?'),('}.0','wp-content/plugins/woocommerce/templates/myaccount/form-edit-address.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˈab=K','UG`.6	lg=}TWqYGz\r>','',0,'?'),('\r/KM2$_1','wp-content/plugins/woocommerce/templates/myaccount/form-login.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ձ\'>.9m','\rzg>Dś瞚ju{ۈNwߚ{','',0,'?'),('H4?4\n\n?r','wp-content/plugins/woocommerce/templates/myaccount/form-lost-password.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','au?ɽl','e]/#Q.?\r`W7/Xi&40','',0,'?'),('i\nҸdPt','wp-content/plugins/woocommerce/templates/myaccount/form-reset-password.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MCfڒfͻb','^<CSyPØ\Ze\'t_M','',0,'?'),('t1N򑸺63','wp-content/plugins/woocommerce/templates/myaccount/lost-password-confirmation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','njV8+','8>DNcnx	4\Z^W%}2YNw̀','',0,'?'),('T%1KG','wp-content/plugins/woocommerce/templates/myaccount/my-account.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'._&%ˋG\"K','\ZM1W拊LpCYDfG*~g','',0,'?'),('W  |','wp-content/plugins/woocommerce/templates/myaccount/my-address.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z]}ˌ\r21','m9>)ާ\n\\%a,CL%U/7W','',0,'?'),('F7mNZ','wp-content/plugins/woocommerce/templates/myaccount/my-downloads.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':%XZB>m','{oZs8r#5#ۇLdY4]','',0,'?'),('Mޯr%\n@','wp-content/plugins/woocommerce/templates/myaccount/my-orders.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NgqR:+(D','~ax&6wގWM\"%A!S!C$&5','',0,'?'),('I~\ZuȠE','wp-content/plugins/woocommerce/templates/myaccount/navigation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U=0x',';sp&JA:cCJ\0es','',0,'?'),('n~Vĝ.۴','wp-content/plugins/woocommerce/templates/myaccount/orders.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O4L,/J','W_㏬ez(^b59om[','',0,'?'),('E	dd9\rx','wp-content/plugins/woocommerce/templates/myaccount/payment-methods.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T\rI#\rE۱O{er','U\Z6(DoCnR5\r\Z','',0,'?'),('f+ӏbH)\nE','wp-content/plugins/woocommerce/templates/myaccount/view-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xr3-Cbo','*I}(d\\NyLŁM싥','',0,'?'),('9܏\nhP@[','wp-content/plugins/woocommerce/templates/notices/error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S','EVfIpO_=	>ٹ:xm)','',0,'?'),('m','wp-content/plugins/woocommerce/templates/notices/notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X$ǡƨPwFvU','\0I A\Z~$Uy<R|','',0,'?'),('\Zk~gWN/m/','wp-content/plugins/woocommerce/templates/notices/success.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^SNm_c','5	:c,apRa\"B\\crtV','',0,'?'),('?&[ۆu,e','wp-content/plugins/woocommerce/templates/order/form-tracking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&eFn','c΄ͅ)ZRi8GEv3','',0,'?'),('A(ɞL6>[','wp-content/plugins/woocommerce/templates/order/order-again.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^tAlq','gȴ̓({&hZ׺*.[J','',0,'?'),('[͌qq̬Td','wp-content/plugins/woocommerce/templates/order/order-details-customer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ّ\n˧[L ','PSX>b}ؗE`L^Ur[','',0,'?'),('+iK?G:i; ','wp-content/plugins/woocommerce/templates/order/order-details-item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<i1C<-cJ(','= 겥\"-H:#B;0w','',0,'?'),('{*CU','wp-content/plugins/woocommerce/templates/order/order-details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_5CTطW,we*U','iK&A<5uΤRq{{','',0,'?'),(']p[%3QLVs','wp-content/plugins/woocommerce/templates/order/tracking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#K@)geGbaJ','sd[4ur>^9N$U6~tv.ă','',0,'?'),('sg~=Bf','wp-content/plugins/woocommerce/templates/product-searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5k7pz\0؊','lWt%M`_hu-h9$HKe','',0,'?'),('D&ͩw&Zn','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/external.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-b8јF\0','lS~Ng3<<0,vO2','',0,'?'),(':ܳg','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/grouped.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N۠Ơ\ra>','Opc}ȋb1ȳCQ','',0,'?'),('_Oh#ǫ','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/simple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tw\'ci]S','_3`eK>m皧aܨ-,~','',0,'?'),('ry @rtcIF','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#YLփn&S','	Ʉc9,9E.7\"{wsOw','',0,'?'),('x5Ӟ6/Z6کӛ','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variation-add-to-cart-button.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@m2@E$Z','\"x[ú 1o@R1yB7\Zy','',0,'?'),('?߅#~̏b@','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=ѕTjNKm','W	\r!~GP/!0[','',0,'?'),('wT+UD','wp-content/plugins/woocommerce/templates/single-product/meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'~&ǣZ0','F}@l# ~4hfO)FV\rϫL','',0,'?'),('x?N0ٴeۈH','wp-content/plugins/woocommerce/templates/single-product/photoswipe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n<B/V6=.','&\nrŵ3Et{HJ!>h','',0,'?'),('Y}mc/F	=<E','wp-content/plugins/woocommerce/templates/single-product/price.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kìD5U','_퉍~l\Z<2H5<B7Y;','',0,'?'),('$σ)קB ','wp-content/plugins/woocommerce/templates/single-product/product-attributes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yكP\"`','0!tᐚO]J!cQ2!\'%','',0,'?'),('o]x٘F','wp-content/plugins/woocommerce/templates/single-product/product-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k̒=\"f\r','3\Z>hbaDElS	','',0,'?'),(',ܷO|H','wp-content/plugins/woocommerce/templates/single-product/product-thumbnails.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T ~¤-_˓','|	j(q5jw,y\n?3-d11','',0,'?'),(':Q5_Q!b','wp-content/plugins/woocommerce/templates/single-product/rating.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xa\\k$','[o\'_Z,P~VH%\'z4>IP2G','',0,'?'),('Bs^6uSp','wp-content/plugins/woocommerce/templates/single-product/related.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(k\Z-_(,3c','Wy<E3AOFk<7','',0,'?'),('s67)W\n]/j8L','wp-content/plugins/woocommerce/templates/single-product/review-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8Al%?','2CItb,#Ŀ@','',0,'?'),('C_4mKT','wp-content/plugins/woocommerce/templates/single-product/review-rating.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jkΙiW٤?x)','[DS\rG35&4\0\rMU~BK','',0,'?'),('8\\qU.w','wp-content/plugins/woocommerce/templates/single-product/review.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mp	E\rK=	','nO21ҵ\n;x8X ','',0,'?'),('pVli\"\"Ip','wp-content/plugins/woocommerce/templates/single-product/sale-flash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"0o','vt7^ڻ $\"nn)fUjZ','',0,'?'),('d\\1EfaΡ\Za','wp-content/plugins/woocommerce/templates/single-product/share.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r۸wN]ǗJX','5\raZ%n3uSWVŸ=8','',0,'?'),('Ⱥ>6k笤','wp-content/plugins/woocommerce/templates/single-product/short-description.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{5','t˴\Zp~	4ҧ0G9Cے','',0,'?'),('g:Hu>D','wp-content/plugins/woocommerce/templates/single-product/stock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^qf~ Hp','j?ypKG	_\"UACUGv>','',0,'?'),('T)$K8Ú[','wp-content/plugins/woocommerce/templates/single-product/tabs/additional-information.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?&nBɓagL\\','j\rfi\rзO^Y','',0,'?'),('.y#ji]P3','wp-content/plugins/woocommerce/templates/single-product/tabs/description.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/4$0Bv','a~.J)0\Z J 8!tL','',0,'?'),('aISy1ߟB','wp-content/plugins/woocommerce/templates/single-product/tabs/tabs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5`}镵>_E','oVŖ\\&\r\n@\"G$Q}-W4P','',0,'?'),(':5χF,p','wp-content/plugins/woocommerce/templates/single-product/title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':U&(:9$C',']B\ZhĕctKWnU','',0,'?'),('sdg[+','wp-content/plugins/woocommerce/templates/single-product/up-sells.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lEi{ڛ\Znң','6\'/pP<>ʕTt_רtb','',0,'?'),('rS:`e࿸B','wp-content/plugins/woocommerce/templates/single-product-reviews.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tt Ũ	Id','oKB^\\b??eo','',0,'?'),('m?Tן4s#','wp-content/plugins/woocommerce/templates/single-product.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_G_&p7AcP;',':\'CC4mEKh:(.y~38Ca\Zj','',0,'?'),('2%g_8`Ԋ*','wp-content/plugins/woocommerce/templates/taxonomy-product_cat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m:u>]yP','oP/\"Dy]&iޚ}R','',0,'?'),(',ݘ$\Z=D{g','wp-content/plugins/woocommerce/templates/taxonomy-product_tag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.2CK:Yz̠','IЌu\r~ʬbż\rOC<nV ','',0,'?'),('Zz_)YuP','wp-content/plugins/woocommerce/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1R-aۂjtfa','egtA}VGPQ:%ϐ','',0,'?'),('Dwy3ez8','wp-content/plugins/woocommerce/woocommerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_tq9a>UQ{','K6u=5BƷKyW16\"3','',0,'?'),('<86KoX','wp-content/plugins/wordfence/css/activity-report-widget.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S\nxwA','ZBi#ȳ2ꌻDb̌He4','',0,'?'),('!@A;1)SJb','wp-content/plugins/wordfence/css/colorbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jR S7M','[PNΘ)v;9܃*e&ٻMR','',0,'?'),('ŷN	\0f\ZT','wp-content/plugins/wordfence/css/diff.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"y14Z','SSTQ33Rƍ.dzqBITr4','',0,'?'),('a|\n|@X\nfM\r','wp-content/plugins/wordfence/css/dt_table.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gJbjJ9k:','o[PHyЊ}iGc~<cDR:D','',0,'?'),('5ZoҮ<','wp-content/plugins/wordfence/css/fullLog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Wjw˄}','0wLQ֮r7$%͆&uV','',0,'?'),('!0tT( ','wp-content/plugins/wordfence/css/images/ui-bg_flat_0_aaaaaa_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\\KKGлSA','Z%A|xw hSed`};%)9)','',0,'?'),('LW]=\0;:','wp-content/plugins/wordfence/css/images/ui-bg_flat_100_1997c7_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\ZKȚ-\"a{*0','\rv\0\ZV\'uYwpy>Hw=q','',0,'?'),('?>\0%lD[T','wp-content/plugins/wordfence/css/images/ui-bg_flat_100_222_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^F\"I~\0GͲ','1Iݧǽ!Hf}khhr9dMhk׎l','',0,'?'),('Qc$26.i','wp-content/plugins/wordfence/css/images/ui-bg_flat_75_ffffff_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',');7/EwAg','mǍ}q&/hӁbj\";[M','',0,'?'),('nmq\0@pFd*','wp-content/plugins/wordfence/css/images/ui-bg_glass_95_fef1ec_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0(5&3lh)W','[FWx$+?h;Y7\Z6o[','',0,'?'),('P⩣-ƅi','wp-content/plugins/wordfence/css/images/ui-bg_highlight-soft_75_a5a5a5_1x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m8O@d8<Qž','t!p$l_1\rFX\"&ȉ=','',0,'?'),('Ŗ/PIcD=Y','wp-content/plugins/wordfence/css/images/ui-icons_222222_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':<Thzģ *ˌ','4\rMquWߡ$rsݾs','',0,'?'),('E0fۿoi\r\"&','wp-content/plugins/wordfence/css/images/ui-icons_cd0a0a_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ōo8%','2K~i*nnwȺȾ','',0,'?'),('M$!\\z','wp-content/plugins/wordfence/css/images/ui-icons_fbe569_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u3<j','@μYƈ\0ll\'','',0,'?'),('MJdB.*','wp-content/plugins/wordfence/css/images/ui-icons_fff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aa+JD$2J','/#?TiOLyvuTKɤ\\ػ','',0,'?'),('jo+s78','wp-content/plugins/wordfence/css/iptraf.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+	<dq7^','Laje\"ʄмlz敎by:','',0,'?'),('?$ O;>ե','wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ef#`P~7n','-mznNFE\0ѭ\\vqsL?Z\Z','',0,'?'),('WN	b%9pY&','wp-content/plugins/wordfence/css/jquery-ui.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N3(-M\r','1vK{K,u\"Rv#6A~','',0,'?'),('h{nV\"0','wp-content/plugins/wordfence/css/jquery-ui.structure.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\@1D?','=U98mcj_s1!<E','',0,'?'),('rti. :vV&','wp-content/plugins/wordfence/css/jquery-ui.theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{_#S','ųSUM#:ՙ\n6AДV','',0,'?'),('oaw5h@+w\r','wp-content/plugins/wordfence/css/main.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƠR\\vuZ','٧~Rq{b=/:(2\'[n%_','',0,'?'),('sYX㞗','wp-content/plugins/wordfence/css/phpinfo.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<`,7Ju\0','!aEcWE󘩡xV.z*','',0,'?'),('J	4/|	','wp-content/plugins/wordfence/css/select2.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XN|7Z(C','1W)r4;hR_Ϝyfؙ','',0,'?'),('Ήžh	','wp-content/plugins/wordfence/css/wf-adminbar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vxj˓nL	','ԦWOrV1\0%>3ep','',0,'?'),('êS>\0','wp-content/plugins/wordfence/css/wf-ionicons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s[؄j','f/Frbbo4<Y%','',0,'?'),('9`翭!b!','wp-content/plugins/wordfence/css/wordfenceBox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CWY~H#]','r{\ZI5O1QӇC','',0,'?'),('2\Z {DZ-','wp-content/plugins/wordfence/fonts/ionicons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hI15[I]J','*\\&t䭨\\	gTw,1','',0,'?'),('様7^b\"','wp-content/plugins/wordfence/images/back_disabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hgi>','䏛N7g΋?Fb!}ݿC鳇','',0,'?'),('׮Fps4','wp-content/plugins/wordfence/images/back_enabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']H','9퇥)R$px#q {#LO','',0,'?'),('^yG=ڜFg;3á','wp-content/plugins/wordfence/images/button-grad-grey.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RCTy?','DH~ϨP_{!','',0,'?'),('N7A\0nnV֑','wp-content/plugins/wordfence/images/checkbox.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"G\r6|􈘀\'','y~`w(j~=뤼&ݴQ>`^x','',0,'?'),('$8.VpjB@','wp-content/plugins/wordfence/images/flags/.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4.M:<K0ܟή','ʗ!3Ǻf^$7','',0,'?'),('\r:Uˣ','wp-content/plugins/wordfence/images/flags/a1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4.M:<K0ܟή','ʗ!3Ǻf^$7','',0,'?'),('\nƥuoefan','wp-content/plugins/wordfence/images/flags/a2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4.M:<K0ܟή','ʗ!3Ǻf^$7','',0,'?'),('\'}H WԜ\n{','wp-content/plugins/wordfence/images/flags/ad.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+\Z tV[E؜K','Q?5<T2O2N.]Bn5','',0,'?'),('T.d8y','wp-content/plugins/wordfence/images/flags/ae.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','74%E\'M}l','?~$)rЏ/=#yXwz<','',0,'?'),(';cS#nv','wp-content/plugins/wordfence/images/flags/af.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5{dQÜ','w:5xD{͏VV(0ʺ;\no9S','',0,'?'),('b`Ҥ-17@','wp-content/plugins/wordfence/images/flags/ag.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\$, ','iCyYXnyT\0}K̀/r,','',0,'?'),('/','wp-content/plugins/wordfence/images/flags/ai.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7֖*솼',' 1T6\r9\0XfdZ]%ik','',0,'?'),('PvdI4u','wp-content/plugins/wordfence/images/flags/al.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\reݴOojDO','*/!@)B~u$.eg;','',0,'?'),('~pE*TE4','wp-content/plugins/wordfence/images/flags/am.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$/cC\\&P%','ODHr[**@U','',0,'?'),(';-#n9|?=','wp-content/plugins/wordfence/images/flags/an.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ڇ0sw1Z',']3Y>S&\'yDǐP:EE','',0,'?'),('yn6Kz9G','wp-content/plugins/wordfence/images/flags/ao.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Am$٧wh','޸>2P;\\-&ˑ\Z!?;','',0,'?'),('NCW','wp-content/plugins/wordfence/images/flags/ap.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^d\rٍ_P','ߢ@R/d8H,!7Љ','',0,'?'),('u\ra\"\rW','wp-content/plugins/wordfence/images/flags/aq.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uw 釚d','eK{ҰD\ZC6M60D','',0,'?'),('ᯰӦ0ncm','wp-content/plugins/wordfence/images/flags/ar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l˼Ucph\ZK','|Gy;Hp.,\'e%)t[>','',0,'?'),(':Pb4	u','wp-content/plugins/wordfence/images/flags/as.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_W^5F^','Qc2#TIB?L	<̹VUd','',0,'?'),('QB xMBa','wp-content/plugins/wordfence/images/flags/at.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\"O;','p#!bF+QWw4vAO8','',0,'?'),('Q2\'-O94','wp-content/plugins/wordfence/images/flags/au.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r/CsY','p%B\'@(5ti@\rz','',0,'?'),('MSk쥘\n','wp-content/plugins/wordfence/images/flags/aw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3uyju3','t̄5JW`CLvu^!h}.1 ','',0,'?'),('GT!A','wp-content/plugins/wordfence/images/flags/ax.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fuwb̅(w\r','MI\n\rX*w$Q̽U8T','',0,'?'),('.B99&i','wp-content/plugins/wordfence/images/flags/az.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\"7^`}]@','d|،1_ot\'\Z]٤Fd9O','',0,'?'),('Sm$\\xH4','wp-content/plugins/wordfence/images/flags/ba.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TDX,Jy$','o|\0=?ĵS\'/yTl6]P9,','',0,'?'),('pA^s%','wp-content/plugins/wordfence/images/flags/bb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',4u\n߯?g','lnBV4/1&\"Rm&sGtMS&HFx','',0,'?'),('HE1&Y','wp-content/plugins/wordfence/images/flags/bd.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(U!¸!s','vm>+^hb-3c%8\r','',0,'?'),('\0IJ-$','wp-content/plugins/wordfence/images/flags/be.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a٣\Z%z','a\0Bt5F/L>sxuZ\n','',0,'?'),('{_9έe','wp-content/plugins/wordfence/images/flags/bf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cY8i3','R)heYLG?Ԏ@','',0,'?'),(')\Zcq&#,O','wp-content/plugins/wordfence/images/flags/bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','},zd@@^','\"NUqsn7-|[<Mm~N|','',0,'?'),('E58BC)Js','wp-content/plugins/wordfence/images/flags/bh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@T&V','!WM^Pim\'-	','',0,'?'),('>X@Pd~R','wp-content/plugins/wordfence/images/flags/bi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڴBp+Ğ','AA`(DiB8V','',0,'?'),('b32N?RVMCR\'','wp-content/plugins/wordfence/images/flags/bj.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N,X\nlY%_','v)&;\nY7XౝJ}\ZW8O','',0,'?'),('3yuE1wĎ','wp-content/plugins/wordfence/images/flags/bm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|	9eX','e\06M*`u0|p,mn>{]','',0,'?'),(' -A&W','wp-content/plugins/wordfence/images/flags/bn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zD(+J','.Rv*lh\Z[P4\\l]	','',0,'?'),('gMBM}ޭ!','wp-content/plugins/wordfence/images/flags/bo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&7_ |>)','DE-f#ԃ.}BA7F<:6','',0,'?'),('U}5&`J[u:','wp-content/plugins/wordfence/images/flags/br.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mH%WQ[','.\rW@2{6>,7F','',0,'?'),('ƄH3H׏!','wp-content/plugins/wordfence/images/flags/bs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XsYI}T','^yZHHA#\"	ao<^#W','',0,'?'),('ޞQ,n','wp-content/plugins/wordfence/images/flags/bt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KiKu<_պv%','\\#ʡfHxк&gv	\Z','',0,'?'),('f+WKZ\"','wp-content/plugins/wordfence/images/flags/bv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҒTǯWF5~','ianuvwگ;v^$\"t)[*','',0,'?'),('g˺3C,','wp-content/plugins/wordfence/images/flags/bw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E.g;z','YX\ZGlT;f-s^y5 z','',0,'?'),('kQcd','wp-content/plugins/wordfence/images/flags/by.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_6\rAv','9X9!lvv{+','',0,'?'),('eG=U\\l','wp-content/plugins/wordfence/images/flags/bz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ߠe^ze','k?V^nҭ^\nN3Ff.$','',0,'?'),(',܎<9Tj`','wp-content/plugins/wordfence/images/flags/ca.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"J+/<6(','$v䭇j\'K1!uh:{43','',0,'?'),('Y*M$','wp-content/plugins/wordfence/images/flags/cc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TÒ;+R@','|\0z|S=<콰Ԯ^)AYCZ\"','',0,'?'),('/ȯȩsc\"ҧ','wp-content/plugins/wordfence/images/flags/cd.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wjmk','{wWke~\0z!\Zwż\Z_Zה','',0,'?'),('tpo\"|:U%','wp-content/plugins/wordfence/images/flags/cf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*t)M؋F)','͝EzNU3Fy\nx*\nԢ','',0,'?'),('`X[r횎E','wp-content/plugins/wordfence/images/flags/cg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UXB\'#Tw{','&;kWZr!TkCNŠFcc','',0,'?'),('^,^戉8','wp-content/plugins/wordfence/images/flags/ch.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7_\ZeM\r','#}\ZdF \0EDP(','',0,'?'),('e>Y9S&','wp-content/plugins/wordfence/images/flags/ci.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hzPF+dy&','%v7XyCW|63n+5q','',0,'?'),('܉]je*:p','wp-content/plugins/wordfence/images/flags/ck.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sάiԛ','1=SopLTjUc=ɁA[','',0,'?'),('/t;/b4!\"&','wp-content/plugins/wordfence/images/flags/cl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h1ܮ8','N$2[`$^rbfNd2','',0,'?'),('Q;꼡ʿ','wp-content/plugins/wordfence/images/flags/cm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ThWFCJ',')-L$MXjs8c)m{,','',0,'?'),('Z%na?\Z/','wp-content/plugins/wordfence/images/flags/cn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F[MZN8','RZ194ok;^c./3^P','',0,'?'),('Sd:jr-IF','wp-content/plugins/wordfence/images/flags/co.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\"}ˀ','g&%~>zOڗH~}:JA','',0,'?'),('Q	1ޕb PSWr','wp-content/plugins/wordfence/images/flags/cr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"q컔m.','0#m@֑ށ|*E(ux?t','',0,'?'),('B¾CJB','wp-content/plugins/wordfence/images/flags/cs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zm@\nn#','XC~Cv\Z[ZC!1xs@','',0,'?'),('\nKnEH[_t\Z','wp-content/plugins/wordfence/images/flags/cu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѻ7ν-T\nĤ','\'[A/;|fi,S52mb','',0,'?'),('[hi&.E\r5S','wp-content/plugins/wordfence/images/flags/cv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5`	xJBW','9:k b\'*;O0rwM҇fp','',0,'?'),('q>%<HB%G','wp-content/plugins/wordfence/images/flags/cw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P%:\'_zfh','44-؎l3{7tQ<','',0,'?'),('o(Q<ڐ(','wp-content/plugins/wordfence/images/flags/cx.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':	B2','-	h7K?uA<\"D3PՅ','',0,'?'),('6j41]o','wp-content/plugins/wordfence/images/flags/cy.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȕ2csry8<%\Z,R','ͥbͭ({e\nؾK4si','',0,'?'),('vðMv:i','wp-content/plugins/wordfence/images/flags/cz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0yS(18#','л5 NJ\\\Z?:cvH:?v+','',0,'?'),('zknQm|Ǹtk','wp-content/plugins/wordfence/images/flags/de.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nNbK','\nU\\C4%pV|{\\.r̓','',0,'?'),('{tvOz׳','wp-content/plugins/wordfence/images/flags/dj.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g-6~$ݑ','6=ݘ6Q{GZ1:wWaf','',0,'?'),('sF\"tOߓ;_*.','wp-content/plugins/wordfence/images/flags/dk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZDn~WMտM','D\n7,\".jSKF4+u#pU','',0,'?'),('&gHi(','wp-content/plugins/wordfence/images/flags/dm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_\r&.S%V[\Z5YR','/E`Ȅ=D:U˴ܒRP]','',0,'?'),('tw*>','wp-content/plugins/wordfence/images/flags/do.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V:EGaXz','&*[Fi{̔pP+O\n=S','',0,'?'),('jkQ0\'','wp-content/plugins/wordfence/images/flags/dz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h9X',' nLV[P|Mb','',0,'?'),('6KVuN\05','wp-content/plugins/wordfence/images/flags/ec.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A$͊z	','AI`P{pdP5R	VQyV','',0,'?'),('qYH\"','wp-content/plugins/wordfence/images/flags/ee.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZVFY3\ZXL(','|,|rr1.Qzr','',0,'?'),('AmK:`G','wp-content/plugins/wordfence/images/flags/eg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t{-/9ME-\"','˪ZmJ-$`*}q{hރ','',0,'?'),('IB׹71T,','wp-content/plugins/wordfence/images/flags/eh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';[eAuK','~&8R򆖅h)]x(J\\̆EsE','',0,'?'),('^[確X#','wp-content/plugins/wordfence/images/flags/england.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5[W,\'o','&42W@G7LI%pSJwfͳ','',0,'?'),('޽s㝢@1i:\Z','wp-content/plugins/wordfence/images/flags/er.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AQ	uVo','rA>fW-scC','',0,'?'),('61JKgO 8 ','wp-content/plugins/wordfence/images/flags/es.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f).>\'ԵR	w','3C$*h1{`.Srqu','',0,'?'),('ǸK*u҃Av','wp-content/plugins/wordfence/images/flags/et.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T\rP\0%','\"4SP#fuE	;/.la>MDA','',0,'?'),('>A\rD\0x7','wp-content/plugins/wordfence/images/flags/eu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2#ϫhks','P^MhOeA9L\nviij$','',0,'?'),('M:OGdy ;','wp-content/plugins/wordfence/images/flags/fam.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P	a7\Z<h#','B3=nʜ\0;k$ݢ̐-ͺ','',0,'?'),('스>j1^','wp-content/plugins/wordfence/images/flags/fi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Kqi+','_7\ZLQy|־]B)ȹ*','',0,'?'),(';%X[r\\f','wp-content/plugins/wordfence/images/flags/fj.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$n =}<^(]\0','Z[2`3|`$db','',0,'?'),('\\I:ڲEXWO','wp-content/plugins/wordfence/images/flags/fk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TI]Q\n1','\'(:Y[HWuhh`h!','',0,'?'),('opUf1TeR','wp-content/plugins/wordfence/images/flags/fm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tm\'Jt?','tm{@iF<$u[ttNcy0','',0,'?'),('h`_J#S_,R','wp-content/plugins/wordfence/images/flags/fo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e^KIV','\"7O%1bA$X','',0,'?'),('Yօ4:+X[Z\Z','wp-content/plugins/wordfence/images/flags/fr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%}2K','QSR$4ˊ k|,Wr\Z㌘)6','',0,'?'),(':\"̏%^@j<','wp-content/plugins/wordfence/images/flags/ga.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ed\Z',':W<\\\'dN-K<nؘ	>G<6X','',0,'?'),('{µ6\n!ĵ','wp-content/plugins/wordfence/images/flags/gb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?Ig*\Z','7.Prsx{fRmSx|Yf','',0,'?'),('t;Q<er','wp-content/plugins/wordfence/images/flags/gd.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?B~̚WVr.9',':rzBI5:gudkrZ','',0,'?'),('bu/~Iք9','wp-content/plugins/wordfence/images/flags/ge.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h!4:R','kRxa!F/2fXFCBiJ0','',0,'?'),('voFXc%m/','wp-content/plugins/wordfence/images/flags/gf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$-[SD]',';xSuǴzenIWjj','',0,'?'),('%S|O@su','wp-content/plugins/wordfence/images/flags/gg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','**Ot3̇h','9(\"VqV3KZP','',0,'?'),(',M9[Iv-Q','wp-content/plugins/wordfence/images/flags/gh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7KzxnFn','\0G\n-E%ۖRC&φ!q','',0,'?'),('5.;l','wp-content/plugins/wordfence/images/flags/gi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rVeOK*a\\','m.o0$kWnPBT8\Z%','',0,'?'),('&iN$JoFr-','wp-content/plugins/wordfence/images/flags/gl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(kt5*\ril','0&D4nMuܒ+V0Hཽ!_','',0,'?'),('\\&Ĩfo݈gW','wp-content/plugins/wordfence/images/flags/gm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1{Y0]','yG-s=dMWhPKO(J\'5','',0,'?'),('1(\\Ioh','wp-content/plugins/wordfence/images/flags/gn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{>zI	','; \'S`F\\;	','',0,'?'),('a#n2fl\\	','wp-content/plugins/wordfence/images/flags/gp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©ըm g','ṚȴQl7VWGYuQ(Z','',0,'?'),('vOԟφ:Dpg','wp-content/plugins/wordfence/images/flags/gq.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؟.Ծj)q\"','ϥ~2|k(\0s51)','',0,'?'),('-PU\r[E','wp-content/plugins/wordfence/images/flags/gr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\rCu-{','n<HA6~p$\n84','',0,'?'),('^EjFρޅ0','wp-content/plugins/wordfence/images/flags/gs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b pHsC}','s,!fzK5pMH ','',0,'?'),('Pƈv$','wp-content/plugins/wordfence/images/flags/gt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'vq#\0@','Xf4Nԣ<i[)+\"ɮOk','',0,'?'),('FY$\\8^X','wp-content/plugins/wordfence/images/flags/gu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<Xãy̆@','\rY*\'B\n_;N]+Lh^','',0,'?'),('9^+tk','wp-content/plugins/wordfence/images/flags/gw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Mj++ONzp','CN^KqvP%Ңǯ<a vDGIcZ','',0,'?'),('n8횃','wp-content/plugins/wordfence/images/flags/gy.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','**\"G|u','4|5бގmsz','',0,'?'),('hDUX\r|','wp-content/plugins/wordfence/images/flags/hk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rYFf̆U7','6CK)zfVvo!*','',0,'?'),('sߡkб','wp-content/plugins/wordfence/images/flags/hn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1EP+v','{v:ERuI-^ZOr_a','',0,'?'),('kH|','wp-content/plugins/wordfence/images/flags/hr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','37','\\_FFFhVM+n0Tĵэ','',0,'?'),('%J\'Lٸ','wp-content/plugins/wordfence/images/flags/ht.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!!wղHT?','NT#<QV\\3C}MFUq','',0,'?'),('L \r+q|h|','wp-content/plugins/wordfence/images/flags/hu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\";d>]pG@!d','%\\rYfsJ{ӂJ^X-?M\'','',0,'?'),('3\nV>O9Ǫ	 N','wp-content/plugins/wordfence/images/flags/id.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t3m','ր%/m54V6r;)؂Y','',0,'?'),('݌)ƫ%Z','wp-content/plugins/wordfence/images/flags/ie.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O&-q9fFx','>+?i\'넴[d޵=\n\0','',0,'?'),('=5@N%md','wp-content/plugins/wordfence/images/flags/il.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UPO\nFz','Z9تb\Z//\";%i몈3d/','',0,'?'),(':6M$΢]pm','wp-content/plugins/wordfence/images/flags/im.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':K,}0Rs','즴K{쎶K4moW','',0,'?'),('ݘ`b1tX\ZZ K/','wp-content/plugins/wordfence/images/flags/in.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sY','6Ĭzg꾺}zbdv9vJ','',0,'?'),('Q~jJD','wp-content/plugins/wordfence/images/flags/io.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rҲWWr','L|^&<PSi:ѠnV!0L+h','',0,'?'),('Rp5Si','wp-content/plugins/wordfence/images/flags/iq.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!\ns7','ۯp^G%)W4Ï_:Kclإ','',0,'?'),('/k\n啗ˁ8+','wp-content/plugins/wordfence/images/flags/ir.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','knoT\'{K[','vO{ ۟d:]s>1','',0,'?'),('q۩	e','wp-content/plugins/wordfence/images/flags/is.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`)ǷhE','g>2\n$gMHeZ> >yI','',0,'?'),('X2,IEd{<','wp-content/plugins/wordfence/images/flags/it.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!%Xb̣','x5fc0N9\rϦ峢','',0,'?'),('A<?׎cQ','wp-content/plugins/wordfence/images/flags/je.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r;O0]4j','Du>TCLڌȋ6Wo\\:=','',0,'?'),('7=$=h','wp-content/plugins/wordfence/images/flags/jm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nrmϓ6fk\"','芐S!Z]fOa2,\ZG6kd','',0,'?'),('\\vvڡwx^4C1','wp-content/plugins/wordfence/images/flags/jo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӎ1W','aoFHТK̐pG1\05Ma','',0,'?'),('R)ԡ`Pgٴޮ^','wp-content/plugins/wordfence/images/flags/jp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^4>BDY','xya\\˙}C3 $񎻓)','',0,'?'),('pZV_	]l{','wp-content/plugins/wordfence/images/flags/ke.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oE5JUIW>sZ','5?9>u\"Fӣl','',0,'?'),('o<I}\n{`s','wp-content/plugins/wordfence/images/flags/kg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','򸥬\rͧ5','-6%EYxpC;i8}','',0,'?'),('=Gٗ\0C','wp-content/plugins/wordfence/images/flags/kh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C&}r@sHLO',' z[2jWJ ֛;+','',0,'?'),(']g> ӡ','wp-content/plugins/wordfence/images/flags/ki.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[#0+Ag','\":鱷$]yWRFim','',0,'?'),('-.ze8','wp-content/plugins/wordfence/images/flags/km.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v2j\ZI@	N\\','+P i7	{t`~yJ^','',0,'?'),('ST+)Μ<Ce2\r','wp-content/plugins/wordfence/images/flags/kn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hp(\"I[','{	~UD\\9-jǋEgyK\'','',0,'?'),('iY:\0$z]','wp-content/plugins/wordfence/images/flags/kp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8[!zLEt',' ?Vh쮶_tM','',0,'?'),('&K,h_R','wp-content/plugins/wordfence/images/flags/kr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','re`1j?;f','mCe	acS\n1i}r','',0,'?'),('W3|xӕr֜','wp-content/plugins/wordfence/images/flags/kw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lݺaft5','nd:T<\"&dAdm4Ex()','',0,'?'),('bhָ{-w(','wp-content/plugins/wordfence/images/flags/ky.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','늤>@|gH3','CiF%YRzdHbxNz7CHl','',0,'?'),('\nos{8oY?','wp-content/plugins/wordfence/images/flags/kz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z߀9\r','Q$ػv4d:I)Ía`\nO','',0,'?'),('tI@,([','wp-content/plugins/wordfence/images/flags/la.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZrΐB\0/>~i','q*a9}oJ](SGĩ44xl','',0,'?'),('Ө::ǞFA','wp-content/plugins/wordfence/images/flags/lb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H(W8JW','xbl*-Le|CA0D','',0,'?'),('a?X@','wp-content/plugins/wordfence/images/flags/lc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fFnmU%\\','LE+NơYDv_qcW5','',0,'?'),('`rA','wp-content/plugins/wordfence/images/flags/li.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~[k\"4{;','Ɯ`,^@Ir2S,j[mK6Ut','',0,'?'),('Nu.N3XT','wp-content/plugins/wordfence/images/flags/lk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FqO.aA','A@1TVD:~!Eu>*8?\0\" ','',0,'?'),('Yf nرy','wp-content/plugins/wordfence/images/flags/lr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J:x^b;#uc','s˨-%FUCE՞24DgIC','',0,'?'),('$Z<0aeNT','wp-content/plugins/wordfence/images/flags/ls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','txE&ʮm\rn','}}6nG\"bd08n_IHı;A','',0,'?'),('m}+s]','wp-content/plugins/wordfence/images/flags/lt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5.%Vzl','Tי`4vFl%lfuwGGԋ','',0,'?'),('9Arm\rX','wp-content/plugins/wordfence/images/flags/lu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ڡyn7x','^ԹkCxջ&*t7owŕ','',0,'?'),('^L9ZY3q','wp-content/plugins/wordfence/images/flags/lv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cm|._','/Ţ*\'49i}?(3','',0,'?'),('hMxh\'','wp-content/plugins/wordfence/images/flags/ly.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C̲ۨb#~<Q','(vLmv6Wqx^Ѵ','',0,'?'),('?zO{9&~=v','wp-content/plugins/wordfence/images/flags/ma.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+~ɢ̓PxU','_,~c\rUW.㈁?%/Ћ','',0,'?'),('nIA	R6	}\Z\n','wp-content/plugins/wordfence/images/flags/mc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(	FVyǱ.m','8دcVw;DؙR8~?','',0,'?'),('/?[xL\"N','wp-content/plugins/wordfence/images/flags/md.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(ok=ha','t+cxlFzܓove]5s','',0,'?'),('<^^i6Ե5','wp-content/plugins/wordfence/images/flags/me.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZsL5Uʢ','ˢ֩+4uצL\'%轁_','',0,'?'),('M[\"\\:P','wp-content/plugins/wordfence/images/flags/mg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ě|d>',')TQib9qb݂qM*`6	','',0,'?'),('xxPyܪ1','wp-content/plugins/wordfence/images/flags/mh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KQ:CYM','_?bz33R/zdX<','',0,'?'),(' >eHb\0','wp-content/plugins/wordfence/images/flags/mk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0\n-o','FeJR\n7LE$T3','',0,'?'),('%J!Ӧ[,}VǕ','wp-content/plugins/wordfence/images/flags/ml.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V1~ex','vGQ%T.lq!f,>','',0,'?'),(']Zs@~OQ','wp-content/plugins/wordfence/images/flags/mm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uk0IZAfށo','cOۍVaֵ%k֙','',0,'?'),('ߥ䓿~;Q2D','wp-content/plugins/wordfence/images/flags/mn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C\']jn`','FS^|\nFKrS筌%XV7','',0,'?'),('f<u@ܭ','wp-content/plugins/wordfence/images/flags/mo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fO};ë1','ϻ*p&=G՝bYTA[Ld*n','',0,'?'),('br>','wp-content/plugins/wordfence/images/flags/mp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','冒;A&n=','d:THz,zY;h|oiĖ','',0,'?'),('*_LfV}xfN','wp-content/plugins/wordfence/images/flags/mq.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?H\n \rp;IE','K#Jr\rI0f0dՅ*\n;3M','',0,'?'),('@$\"\rf(7U&','wp-content/plugins/wordfence/images/flags/mr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%{m\\x','#ٟ	vNwZ^\"?7','',0,'?'),('kF3lt','wp-content/plugins/wordfence/images/flags/ms.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޛyǨxW','r:1fJH)81(G{<M):1','',0,'?'),('&L!}Vm `','wp-content/plugins/wordfence/images/flags/mt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RdZP|iQމ{','x$!O\\%3	o8P`?ZG','',0,'?'),('֮xb=4@ t%','wp-content/plugins/wordfence/images/flags/mu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ph\'A(l','\"i#7.Ks(}px','',0,'?'),('	[0079xv','wp-content/plugins/wordfence/images/flags/mv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{)jJ{lz','r\"n?5ab2|J6/\r','',0,'?'),('(wZBNڸ]NSS5','wp-content/plugins/wordfence/images/flags/mw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';R1ߴQJv','!-}*U<LϢ/@','',0,'?'),('Zv8~`֬_','wp-content/plugins/wordfence/images/flags/mx.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\?aҫK/ҋ','T\n>F4߭X(\0\rLKF','',0,'?'),('aS\ZM[h}#H','wp-content/plugins/wordfence/images/flags/my.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Zf ','Z!&Ű1.T^','',0,'?'),('JgV#OY','wp-content/plugins/wordfence/images/flags/mz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"4ȭ7','3\'Dկj\0xu<˻ɕ:(J','',0,'?'),('q\0.޷\Z`-','wp-content/plugins/wordfence/images/flags/na.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1=Xu4','AHQ:jܭb[Cd,','',0,'?'),('SQT#kNw','wp-content/plugins/wordfence/images/flags/nc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nOxm|','OknW\r_!<΁hY','',0,'?'),(',#N2m\\bj','wp-content/plugins/wordfence/images/flags/ne.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̭BInC s~','Q@ZgFWՍOB#hcc_轌^','',0,'?'),('zDZ؉Jp','wp-content/plugins/wordfence/images/flags/nf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5E5h','̑(%Qn<,L`zs\nPlw:-','',0,'?'),('HuQ{y	W$ ','wp-content/plugins/wordfence/images/flags/ng.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A3[EN\"рY','*l`ZǏ}-XWK\"p','',0,'?'),('d4.m4עV)','wp-content/plugins/wordfence/images/flags/ni.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ԏ,fT','^@mMы(\ZŎEl`%w','',0,'?'),('fЭJ6-u]','wp-content/plugins/wordfence/images/flags/nl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kɞl\r',' 2(6LD\"0FblFt3','',0,'?'),('v%Q*[Gw','wp-content/plugins/wordfence/images/flags/no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҒTǯWF5~','ianuvwگ;v^$\"t)[*','',0,'?'),('MCSڒ%,<\'L','wp-content/plugins/wordfence/images/flags/np.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.]H2{','eЉLu 4l\04i}QqOow0\0','',0,'?'),('i8LO尞sL<','wp-content/plugins/wordfence/images/flags/nr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\ZԶ|','n<)eqGnc?#r<xd\r&%W','',0,'?'),('\')qZzs1<L','wp-content/plugins/wordfence/images/flags/nu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(mß,G','Os]WvM5\'0:\rf!!`>c','',0,'?'),('\'yx\Zu@\\','wp-content/plugins/wordfence/images/flags/nz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H/ ^\"q\\t&','.;YmfCiXŀ','',0,'?'),('<ʍ8P\0\\=\0+','wp-content/plugins/wordfence/images/flags/om.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z,;YO]&','~?,nG?FK&f㇚ s','',0,'?'),('L[LA$8);','wp-content/plugins/wordfence/images/flags/pa.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*\nrg@<n','z\'Yه%o6lpn\\PQy','',0,'?'),('(MR;oTPE','wp-content/plugins/wordfence/images/flags/pe.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<<$,E+<(','?ӌ\\0s op\Zaeq','',0,'?'),('3\Z~s㸆18)/','wp-content/plugins/wordfence/images/flags/pf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9}=T{f\\','Y{)d*D4\"ZHZ#','',0,'?'),('ʱ\'AK\"d;3','wp-content/plugins/wordfence/images/flags/pg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɂ%X;{Eҳ]','],l7n\nTKm\ZG*KT','',0,'?'),('_&O~9RG','wp-content/plugins/wordfence/images/flags/ph.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ل@ܥ){v',' Mkpq)c.}M^˙z','',0,'?'),('`ڮ/ZE\0]܋3P','wp-content/plugins/wordfence/images/flags/pk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p,k','Ѷ{]Q>xAr]9bYU','',0,'?'),('\"m韟o','wp-content/plugins/wordfence/images/flags/pl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s풑-','Z%\'KH1	}ӏ?&%','',0,'?'),('>%pm','wp-content/plugins/wordfence/images/flags/pm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\nKFN','\r}Ŝ@C䘂Ebņ\\\nta(','',0,'?'),(':ZW_*if','wp-content/plugins/wordfence/images/flags/pn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s;;Nn䩘','X8FpfJx%rʥG,ld^,','',0,'?'),('iCXI\n3','wp-content/plugins/wordfence/images/flags/pr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IdMNhJ#','҈D\0w]K#\nu!*Yb^p\'','',0,'?'),('3癗@<','wp-content/plugins/wordfence/images/flags/ps.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bHVzk1j','ǂ#l\'Ϊkj̖[)|~W$My+U ','',0,'?'),('ve_a̴1','wp-content/plugins/wordfence/images/flags/pt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T:x','eQ[&(&2kMһw','',0,'?'),('¹S2%=er>','wp-content/plugins/wordfence/images/flags/pw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V0\0L','{&F*oތK=:H=<\'','',0,'?'),('!gۇC;F\ZT','wp-content/plugins/wordfence/images/flags/py.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\nE)\ZM','F\"vh#ayjHٿm0\rs;','',0,'?'),('TiqTl}','wp-content/plugins/wordfence/images/flags/qa.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E2́|n','NRF`x3bTbӽWwXߵqQ','',0,'?'),('O:23F`,(2','wp-content/plugins/wordfence/images/flags/re.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ph,,i-\r','sk/ǎ_:BgKH\\L','',0,'?'),('Ԡ$ֽ*:ܥ','wp-content/plugins/wordfence/images/flags/ro.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5VZʹ_݋','i|jfmG-Gj7,L@','',0,'?'),('?mf\\-h8T','wp-content/plugins/wordfence/images/flags/rs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nPe\ZS<_','E6ӆBeLh4L//a','',0,'?'),('FsT&\'|','wp-content/plugins/wordfence/images/flags/ru.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q?p2^%k\Z#','tYܱMw7il	PIVhHp]','',0,'?'),('xʈp>kOz','wp-content/plugins/wordfence/images/flags/rw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ł/T_nQE*Pk','mЈe\r\\޵^%:y','',0,'?'),('d#a8-','wp-content/plugins/wordfence/images/flags/sa.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W\\LbUCh5V','#}1~xPwd24ZL骇IS\"\\A','',0,'?'),('zlG>?~m','wp-content/plugins/wordfence/images/flags/sb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l<)J+','j1\'UՀtޡlsR','',0,'?'),('˲J0\\V4','wp-content/plugins/wordfence/images/flags/sc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@l+^+9U','d8B!\Z5ѹVV+/ 3B,/','',0,'?'),('?bU,I','wp-content/plugins/wordfence/images/flags/scotland.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y5bG&','.e\\	Oͳj','',0,'?'),('/jSACJF','wp-content/plugins/wordfence/images/flags/sd.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ڶ-,p','CPg7@h9ko2CD5','',0,'?'),('v\Z))`o','wp-content/plugins/wordfence/images/flags/se.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']eFB/$Iri',')^+{4Z/0RTT2\'','',0,'?'),('	^d7[xC','wp-content/plugins/wordfence/images/flags/sg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ӳjXfƚ i','X46VpTE_.EE#','',0,'?'),('tO$ҥh\r\Z','wp-content/plugins/wordfence/images/flags/sh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>G	{nդ[',']L=AAϋY|N0@Gs','',0,'?'),('& 6Ӿ1S','wp-content/plugins/wordfence/images/flags/si.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rϕ5`}䋅%{',',&3?\nt/ӄq<}z0?#\'','',0,'?'),('WuRPbIH','wp-content/plugins/wordfence/images/flags/sk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x3i2fV.V]G','ZaDᅂ@1~es^ѡ-\r','',0,'?'),('7+8dc@$','wp-content/plugins/wordfence/images/flags/sl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.B`u,&$1','\n 5$c2>95tPm<+w,[','',0,'?'),('潂mF=H{O,','wp-content/plugins/wordfence/images/flags/sm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@7fߧ84,e','ʄ=cM@L,ds{!^j','',0,'?'),('nZ&YwLV<','wp-content/plugins/wordfence/images/flags/sn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','컯uIڍt','*6_Ś[h^9&K/\\\'[V','',0,'?'),('e:̳ ','wp-content/plugins/wordfence/images/flags/so.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wc@y;W&KH','.#!Oc@aj]1Ǆ^Le','',0,'?'),('&YMRz0vAo2','wp-content/plugins/wordfence/images/flags/sprite-des-128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LmFQr','J)@uKa	,`8\n -%','',0,'?'),('N-#Z3k8T','wp-content/plugins/wordfence/images/flags/sprite-des-16.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3JEE4M`kf','/3V 1^2* T\n','',0,'?'),('H&=b','wp-content/plugins/wordfence/images/flags/sprite-des-256.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U5!B<R2|B','un#l3\n6=1E\\]VeZ','',0,'?'),('ZbWe`','wp-content/plugins/wordfence/images/flags/sprite-des-32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#5Paf\'','/7-QxLʾA~{uM:','',0,'?'),('៵@~G52','wp-content/plugins/wordfence/images/flags/sprite-des-64.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+\n4F6.\\j	$R','Lɜ7?ykiE&:','',0,'?'),('fUڬQ7l','wp-content/plugins/wordfence/images/flags/sprite-des.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9VΙT3uq\"','WZ%&!s`zM9pfSqe','',0,'?'),('P)3t;ޯ','wp-content/plugins/wordfence/images/flags/sprite-des2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MdTWcp,','l8	?쑠N/<M','',0,'?'),('w}%euV','wp-content/plugins/wordfence/images/flags/sprite2.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','} oĘ_2','Jxg7Ӭޯ0&\'$KFI?\r8','',0,'?'),('̹9BFht,<F','wp-content/plugins/wordfence/images/flags/sprite2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m3;','FώhLv\"jcYLxo','',0,'?'),('o2-bt\rd','wp-content/plugins/wordfence/images/flags/sr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AapL<zu','9P[GihHi\n%','',0,'?'),('\\?+VQa@l','wp-content/plugins/wordfence/images/flags/st.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RK{< ','4Ț.~+mvD)ݘ\nE4ҫ풼,','',0,'?'),('n94cok','wp-content/plugins/wordfence/images/flags/sv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v8mkDa\0S6','YtR&m.tkJ+Y\"ڮ=|/Ӱb','',0,'?'),(',?hgchˡX@','wp-content/plugins/wordfence/images/flags/sy.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<6F_.6E=TN','CQSW2L\")0\r/]','',0,'?'),('5ݵCt4A','wp-content/plugins/wordfence/images/flags/sz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':9Y/X9','ܜ:[\n{<Y\r-l?QO','',0,'?'),('V69sC!?','wp-content/plugins/wordfence/images/flags/tc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G/	QJ','bdm0^5]xAN{NV(9\\?	','',0,'?'),(']uFa>','wp-content/plugins/wordfence/images/flags/td.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9l0#8;6','g׎=ץ1t՛Y|Jj]X,','',0,'?'),(']A6p}0v3L','wp-content/plugins/wordfence/images/flags/tf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')v=^4sʉ<','Wuşlvvdiq(Jo	','',0,'?'),('@`uf\'','wp-content/plugins/wordfence/images/flags/tg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vto^h','֌R+l{,eZiW׹dX(','',0,'?'),('DNC|\\Kd7','wp-content/plugins/wordfence/images/flags/th.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-(o)o','1e2QLJh70y','',0,'?'),('?~\"S%ɞ','wp-content/plugins/wordfence/images/flags/tj.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WnXd,Djn','A^϶XWE1iSo\ZIzХ','',0,'?'),('\0mU#','wp-content/plugins/wordfence/images/flags/tk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~kdi\\','CS\ZB/vW\\b~:7fq','',0,'?'),('qU6JΣUI>','wp-content/plugins/wordfence/images/flags/tl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\\X[;O\0w9 4','82\"M@5F-Bob?\'䦧','',0,'?'),('hW(g_,rGk','wp-content/plugins/wordfence/images/flags/tm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}kԶϯ1t6','>Wy@\'ܼoWB~v-Y','',0,'?'),('Igbm,asYp)A9','wp-content/plugins/wordfence/images/flags/tn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3eez','QU\'LMR>M=O*5</^','',0,'?'),('ry)v|r','wp-content/plugins/wordfence/images/flags/to.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\'K^ejJ','̳\0g)xC[~lfl@g 2`ίmmx߉','',0,'?'),('\Z5VyƎ','wp-content/plugins/wordfence/images/flags/tr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Js^R','GکSW kvXaw;>|)Z=w','',0,'?'),('S-5-pau','wp-content/plugins/wordfence/images/flags/tt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r3tk9Vk','պ\n($W0,~\\򸐡#$!/_','',0,'?'),('!A;HW','wp-content/plugins/wordfence/images/flags/tv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eKgМl','烢LUKdғt5x','',0,'?'),('\"\nk\"cjiV(','wp-content/plugins/wordfence/images/flags/tw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l7}aEY3QT','G2vٗSoT&','',0,'?'),('<*)1Yg','wp-content/plugins/wordfence/images/flags/tz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']#Dft>>','í3v	,U$yNJ;L vQx','',0,'?'),(']혏dT\'J','wp-content/plugins/wordfence/images/flags/ua.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@sJ','G#j\\&j`U@PIʑ','',0,'?'),('.8{\'O2ixCQ','wp-content/plugins/wordfence/images/flags/ug.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r+YkSI-@^7n','.O5ONȐM	o	V%\0UDt','',0,'?'),(':Cc*-|a4','wp-content/plugins/wordfence/images/flags/uk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(1lfB','i91pI)HvS<toP}Hh\'_','',0,'?'),('yc%:o','wp-content/plugins/wordfence/images/flags/um.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=G\0	-k[ԇ','&Su:}N,/M[w͗{','',0,'?'),('}3(7f\rKd','wp-content/plugins/wordfence/images/flags/us.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŁBb/\'x','.@_wՀ$Rd\nl#Ь','',0,'?'),('\\/W\"-Τ1q','wp-content/plugins/wordfence/images/flags/uy.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rCӳAL)','G\0S`12Sw+=n2','',0,'?'),('f\'\"Y˱V','wp-content/plugins/wordfence/images/flags/uz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^zlvYi6)6|c4;','-.V?N:ΑmYYkgV','',0,'?'),('!z4','wp-content/plugins/wordfence/images/flags/va.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r)p؂\Zt3\0','ꗃ\'UfH/]뛊-SN8\"','',0,'?'),('gx8PMo','wp-content/plugins/wordfence/images/flags/vc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jF\"{|0','E۳ަDIĿi#l#+v/','',0,'?'),('ʱ1wB_/','wp-content/plugins/wordfence/images/flags/ve.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Utv9Hu\Z*a\\P','[CoVU智<X\\xxp<	','',0,'?'),('Sp*ǁa','wp-content/plugins/wordfence/images/flags/vg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~U}\0$ը\0u~','9a/oDX>˂行_66','',0,'?'),('`m[鴡ƿj','wp-content/plugins/wordfence/images/flags/vi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(~)NSϢԡ','bP1ԙK;|y_3r','',0,'?'),('۾S)9','wp-content/plugins/wordfence/images/flags/vn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P᳗vwܶPTo','^S5nAoȀU|)6|,','',0,'?'),(' S hnUdx','wp-content/plugins/wordfence/images/flags/vu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' u%k{m͢(u','ʯ{i\"ʵBG1\'\"*','',0,'?'),('ε`tvS','wp-content/plugins/wordfence/images/flags/wales.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Co{v','!iMF\\S^M@j(FH 9\Z\'','',0,'?'),('D#Ia4*xM,','wp-content/plugins/wordfence/images/flags/wf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/c  k=O','3PcsC:)zKa&p','',0,'?'),('`O(G7`	M@','wp-content/plugins/wordfence/images/flags/ws.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\0N=HOsT','%.=,)!1ZsSc4','',0,'?'),('~OU','wp-content/plugins/wordfence/images/flags/xk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Gl}$5I','Ys\0ڗĖS$#:.IUՔw','',0,'?'),(',7m=i0`@*\\','wp-content/plugins/wordfence/images/flags/ye.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\07CK{DY)','bMjF\"&t,IT1#O2L$[','',0,'?'),('ݏ97X<Թ/j\\','wp-content/plugins/wordfence/images/flags/yt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʉrT\0h','p^EkUCז,0h4=_[','',0,'?'),('[kXt9Nt','wp-content/plugins/wordfence/images/flags/za.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pCh\"ڟ.3','jn܇/PCiI,Yy[','',0,'?'),('y51\\m>G','wp-content/plugins/wordfence/images/flags/zm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n|Ϸ{>c-R','	y@BF5|h䒧$_','',0,'?'),('!xsC	ph^:&','wp-content/plugins/wordfence/images/flags/zw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	MQ>qQ\r','CO8+ƻrD[jF6FOH;ze','',0,'?'),('.E[Jlx','wp-content/plugins/wordfence/images/forward_disabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M_Z?N)Ҋ:5','/<>O&ȕJR݇e}(m','',0,'?'),('\0hKf\0','wp-content/plugins/wordfence/images/forward_enabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\0/3e4e','0Q7018ު9-z9ؽqSrĒP','',0,'?'),('窒u\rZJW+','wp-content/plugins/wordfence/images/help.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$N;\'M Y','\Z7\0r/iz;ki,=LZg','',0,'?'),('٘\"Pܞ,','wp-content/plugins/wordfence/images/icons/ajax24.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:m𙗣P','j*edoX~7&N9|L','',0,'?'),('\' oS','wp-content/plugins/wordfence/images/icons/ajax3.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mwߴtꍓ\'\ns','dz\nyKƮ\'#]x	VJR.=:','',0,'?'),('y&aA7]Dm','wp-content/plugins/wordfence/images/icons/ajaxRed16.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%B\ng2;','D,AJlOSpe؇&','',0,'?'),('4=','wp-content/plugins/wordfence/images/icons/ajaxScan.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʖѴ~fi','ߩ0ԍѦƻH\n¡;','',0,'?'),('j&V164','wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r9 #{','ﾱnѿ0c~NrAug~ΔI','',0,'?'),('(x*J,LÛn<K','wp-content/plugins/wordfence/images/icons/arrow_refresh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kw``|}$G','u/2/@H_Ilh/aU:	','',0,'?'),('6[f9? _','wp-content/plugins/wordfence/images/icons/bullet_yellow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J&ɌԔQ<','1Nߗ׍?*ií!FMp9^.','',0,'?'),(']*J','wp-content/plugins/wordfence/images/icons/email_go.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jEH).','& qC1QU_.O31!&۴','',0,'?'),('`%{+','wp-content/plugins/wordfence/images/icons/error128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':%7!.','{h\0,]zkV{җ6nG\nxs9','',0,'?'),('z5*\ZADZCkj','wp-content/plugins/wordfence/images/icons/magnifier.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uO{:qcV\'',' atvdQ0(IjƖO$e(*','',0,'?'),('Ρ~ߓ:eo','wp-content/plugins/wordfence/images/icons/tick128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ğch4\"','V}X e~G[C峆5','',0,'?'),(';`$r$=','wp-content/plugins/wordfence/images/icons/warning128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pGIt*Np=','*/ȾstA}.b\'\\','',0,'?'),('X@%1Ci','wp-content/plugins/wordfence/images/lightbox-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m]a\\$','Ǘh?S):i@h.Xg','',0,'?'),('?z6aDz','wp-content/plugins/wordfence/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:m𙗣P','j*edoX~7&N9|L','',0,'?'),('Kjh','wp-content/plugins/wordfence/images/loading_background.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'2p\nKX','Ύ%XŖF1s;Lzr璻','',0,'?'),('ﾘQ)B\n,','wp-content/plugins/wordfence/images/loading_large.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y{ObUW~Y˙','p8\'	t:Qo]{5G1E','',0,'?'),('s♼{DR[k1I','wp-content/plugins/wordfence/images/logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'9%(wdh','uM/w`xG|w9?ICJ^fNv','',0,'?'),('V,U3','wp-content/plugins/wordfence/images/rr_premium.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"3 ,2','M\nhg^աFR-ȝ~0','',0,'?'),('#9\rPuLk0kU','wp-content/plugins/wordfence/images/rr_sitecleaning.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')\r\0)5','ʻ{\"ӝ^mlܡɱMh2a9q7v','',0,'?'),('QoH*(','wp-content/plugins/wordfence/images/sort_asc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',I+ƾ=','dCTe&,)ѴFG\ZdON','',0,'?'),('57N	C=-c','wp-content/plugins/wordfence/images/sort_asc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&DKzS§0','NQ*TZ%P%jܑtZn/','',0,'?'),('lXwB*XW','wp-content/plugins/wordfence/images/sort_asc_disabled.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oɧ*X9e','v\Z|5.YX Z鹁Ź','',0,'?'),('x_,[5','wp-content/plugins/wordfence/images/sort_asc_disabled.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ǐ#a]2','[8lYckl	u#KVn','',0,'?'),('?Yvq_ۮXO','wp-content/plugins/wordfence/images/sort_both.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%BQxSV.D','6\"@Xg\'W7wgJq','',0,'?'),('	7f	`','wp-content/plugins/wordfence/images/sort_both.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dm	8f|Y','~%ۉ%>BlouI)ȉ7g','',0,'?'),('7c.$P!\"򹚆','wp-content/plugins/wordfence/images/sort_desc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<j_ˊR2','*-9.HGO6/L):Cdz','',0,'?'),('ZD:-h${ma','wp-content/plugins/wordfence/images/sort_desc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?զ)X?N','bEԚB#:(#=_(\Z|U#','',0,'?'),('xy!q).ˉ\"','wp-content/plugins/wordfence/images/sort_desc_disabled.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m͟r 9',';	_Yt7KsmC\ro','',0,'?'),('usT­BB','wp-content/plugins/wordfence/images/sort_desc_disabled.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J%{OZ\"/o','^*n^\0m+!NkɌ/ԯ^k','',0,'?'),(':mwvK\rZ~','wp-content/plugins/wordfence/images/wordfence-logo-16x16.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y~F,N8zO2','u ¼%5dɻDXt!?Q','',0,'?'),('FOۣg','wp-content/plugins/wordfence/images/wordfence-logo-32x32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ۯIuU','\\9BHo>߶YSs9v*q(\0','',0,'?'),('jڿt1u}','wp-content/plugins/wordfence/images/wordfence-logo-64x64.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v^IN/g@\\u','8Vݏǃ4p]cy\\','',0,'?'),('E(zRA1;eNqD3','wp-content/plugins/wordfence/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2eª\\og',' oMJ#A|ߎ(;6R\n','',0,'?'),('V/־_=','wp-content/plugins/wordfence/js/Chart.bundle.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5]ddf','>`NN`N\"KӞckG<;','',0,'?'),('7<LU39TU3Əs','wp-content/plugins/wordfence/js/admin.ajaxWatcher.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.%H1C','yw ^MBtw |Xjp%','',0,'?'),('\"[Q	','wp-content/plugins/wordfence/js/admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k;8zRIQy','xm$\"M©s/\r=؀','',0,'?'),(',{HĬq','wp-content/plugins/wordfence/js/admin.liveTraffic.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h(?g>','[G=WVҬ\Z-%m@','',0,'?'),('[Q\"ABb.Q:','wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\#kzI]','pfُ;&<丹z!v','',0,'?'),('wA/	ĉ\\q','wp-content/plugins/wordfence/js/jquery.colorbox-min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4?JǃG`\nNxl','늠yfo؇A}\n͟:','',0,'?'),('6CT>w<x','wp-content/plugins/wordfence/js/jquery.dataTables.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3S7\00C','- Ni0E<D#yǮ','',0,'?'),('EN06','wp-content/plugins/wordfence/js/jquery.dataTables.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aGz׳','nXnCqbEI\'(','',0,'?'),('h~x`h~?','wp-content/plugins/wordfence/js/jquery.qrcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԹXp`me<','wP\0pzuYDSz(WߥP3$S','',0,'?'),('a\Zcr2','wp-content/plugins/wordfence/js/jquery.tmpl.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\}\"7ڷDZ','.IH\Zg\0H!7`gޠZzȄž6|','',0,'?'),('˄v+nG','wp-content/plugins/wordfence/js/jquery.tools.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':-Eՠx$B',',4~aTlS fQO	fTӵ;)','',0,'?'),('He0|F0$ؕ','wp-content/plugins/wordfence/js/knockout-3.3.0.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_B8lc^','5J9hALg@`uwo3\0I>','',0,'?'),('XiU1`]','wp-content/plugins/wordfence/js/perf.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uQ\"wFR@p','U&+/#\"1k[wc6Jx','',0,'?'),('}05MZ','wp-content/plugins/wordfence/js/select2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' bG.iTRU','L`<VEqA\\\'`2澯 J','',0,'?'),('y/dzQg','wp-content/plugins/wordfence/js/tourTip.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޗϬ?\"oh,^pQ','VQ$*=Ǐd1Ty«9Z<','',0,'?'),('|Otx|ꌤ','wp-content/plugins/wordfence/js/wfdashboard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԽP`{i','=Pzr!?w\Z/d!LӪ1!','',0,'?'),('XUnB','wp-content/plugins/wordfence/js/wfdropdown.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rpc\'\Z','SGs8;Z!זJu1z?','',0,'?'),('G#Y@[rzi1','wp-content/plugins/wordfence/js/wfpopover.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';&mAhlMPZX','_.V袏X4Ni_k=C3','',0,'?'),('R1?YVDt','wp-content/plugins/wordfence/lib/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iz~i,L','	HQIqzڤp9C4>H3G','',0,'?'),('\'FEAvQMv','wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\r5]xVI\'i','G݅\'!YE3P5adM','',0,'?'),('y1-/fIנ','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#%y]-bd','aSHoy(e	0J:|f','',0,'?'),('-n$.#g%}','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','puQ: *','30wH=wpsEa','',0,'?'),('`c0\\3','wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O\"%éODZj','Z?=b\0D\ZZ\'˿_pwѻ,:','',0,'?'),('ۖJBwC|Mv','wp-content/plugins/wordfence/lib/Diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R|$V;P','ǖh[\0ɶ|0<*\'	lWz=','',0,'?'),('&)-â\ZΙp','wp-content/plugins/wordfence/lib/GeoIP.dat',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PSZLKR_ȹ','Ͼbzfq^U=vMi#','',0,'?'),('gRT6KX\Z','wp-content/plugins/wordfence/lib/GeoIPv6.dat',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=jb=mBĄ\0','cכvu.-iXOdNU','',0,'?'),('J![W6ݧ','wp-content/plugins/wordfence/lib/IPTraf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}:U9(>1','S&iC-TŉԏȄ\rWIl6','',0,'?'),('Kߺb','wp-content/plugins/wordfence/lib/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?HY/2?T','!~\n\\تևJ˴˻','',0,'?'),('SP;^ƭzI','wp-content/plugins/wordfence/lib/conntest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\"r\r','wch+0F(cAtw','',0,'?'),('fNdL','wp-content/plugins/wordfence/lib/cronview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uxފcy&','	DȰluw\0mC<雗','',0,'?'),('\Z;5(OOR','wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5L,{ׄ:)','=nc05e\"S0h6','',0,'?'),('zvo:B%','wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[%O);-0','y*$ш|E1<\'!R\0[{','',0,'?'),('\rҗr׾ \n\Z','wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*vŜeFv','-o\r,K@pwE\Z·4DO<','',0,'?'),('$o1T2]l','wp-content/plugins/wordfence/lib/dashboard/widget_countries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$Y@ǁdż','7d Fv-FnV{eEŠ','',0,'?'),('Ws{NhPr㼱','wp-content/plugins/wordfence/lib/dashboard/widget_ips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C\0cۋ{|<Z','{Nzv&ge ','',0,'?'),('e؟v笪Ej','wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%8lվw','gN8\\\'mC&X&,','',0,'?'),('L.\nw;[','wp-content/plugins/wordfence/lib/dashboard/widget_logins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<!','n^eRqԃ\nNf$E˯','',0,'?'),('u;Ȍ0qw=','wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ňAh\Z&ma`6','yҊS4ȃ/smhD`nR7','',0,'?'),('k6*H	u١','wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UPx1[KX','200HSwSմ4y','',0,'?'),('\\^s,z(','wp-content/plugins/wordfence/lib/dashboard/widget_tdf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nlB\rAu&','ϵ}1&t/{qO\")LlN','',0,'?'),('Ƿ\nH','wp-content/plugins/wordfence/lib/dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','enLq','YU/X6L,-]8Ta\"3','',0,'?'),('6Ri*5æ','wp-content/plugins/wordfence/lib/dbview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!.3\Z)','	$1_C<OeA7','',0,'?'),(')\0e_5=','wp-content/plugins/wordfence/lib/diffResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D`\n^;','cȑPYnEs&	D$*','',0,'?'),('#\n/PZ~h','wp-content/plugins/wordfence/lib/email_genericAlert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FB!@f-A','Bus ?\\`H\"\Z<z','',0,'?'),('Fe	57[','wp-content/plugins/wordfence/lib/email_newIssues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IҦ΁kK)9D','EL\"haؙmрx0Ⓔr\Zc','',0,'?'),('t+N-̒','wp-content/plugins/wordfence/lib/email_passwdChanged.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IwKmKa{į;','a|<yc\\X|ۛ\"Oe&28','',0,'?'),('\'?h	}Y\0IG','wp-content/plugins/wordfence/lib/email_pleaseChangePasswd.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*GsWcȐ3','tHH/OdVD$b=	','',0,'?'),('^u}G','wp-content/plugins/wordfence/lib/email_unlockRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' E28.63R','\nb=Dhs/TT9NGż','',0,'?'),('$-#q`l$Wۉ','wp-content/plugins/wordfence/lib/live_activity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8	4U#<','F-O\"3yturpi','',0,'?'),('RLSf,@L=.','wp-content/plugins/wordfence/lib/menu_activity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[*\",P>S%k','nJ{!7VjoMy֎n1','',0,'?'),('Fa#<&$;','wp-content/plugins/wordfence/lib/menu_blocking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R~r䶰]^C','$Kv%G:\']6dC+xv0u,/c','',0,'?'),('<I#h29','wp-content/plugins/wordfence/lib/menu_blocking_advancedBlocking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1Iϟsɮܲ<','0w{\'vFg J]7օ.','',0,'?'),('DlֹrS?','wp-content/plugins/wordfence/lib/menu_blocking_blockedIPs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','럓=) )','AU¢1u֢oAM!]A 1b@','',0,'?'),(';}yhh4۫\Z','wp-content/plugins/wordfence/lib/menu_blocking_countryBlocking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rV\0B֬ru5','Bj*$9fs}gɪ*','',0,'?'),('dTofҷbS','wp-content/plugins/wordfence/lib/menu_dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rS=jJ;f','S^1\\5{7xqE5èRW[O','',0,'?'),('WP旃^qy','wp-content/plugins/wordfence/lib/menu_firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xUh|yH$r','{ú\\uL?W.$ӓc','',0,'?'),('#SDcYPQ','wp-content/plugins/wordfence/lib/menu_firewall_bruteForce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c2Xqџ \Z','.&9,zNaxAܱz$bv','',0,'?'),('}F!+\r','wp-content/plugins/wordfence/lib/menu_firewall_rateLimiting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G,Q<ajm','jS;<AdЂ[dHimt','',0,'?'),('6cbkki3@H','wp-content/plugins/wordfence/lib/menu_firewall_waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+$P\rh','gr49\'K/K.D\ZtJ\r','',0,'?'),('WM{h(','wp-content/plugins/wordfence/lib/menu_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' B|\ro%c','$\Z#MT5-G;kr|b[sē','',0,'?'),('6cI	@۞o','wp-content/plugins/wordfence/lib/menu_scan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q?:t','c7+16&MlUO1','',0,'?'),('|^R̟\0)j@:','wp-content/plugins/wordfence/lib/menu_scan_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r)w]U.<Q','wmI[[3MOy6tH:','',0,'?'),('n#5;-}-','wp-content/plugins/wordfence/lib/menu_scan_scan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K⣡v[\0\n','n}#e]mh,pr','',0,'?'),('5ߡFZ','wp-content/plugins/wordfence/lib/menu_scan_schedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uo9kWP/nl*','iVꖻ-oc7b>sO?(~Q\0','',0,'?'),('ojyV','wp-content/plugins/wordfence/lib/menu_tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%%\"$%/|U','~*\0j+c~0VgN_','',0,'?'),('!##sw:\rH*$q','wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?zc>v+:','7(bfY	\\h~QU4?J','',0,'?'),('CQ+(,`lg\r','wp-content/plugins/wordfence/lib/menu_tools_passwd.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p<R) -','=\rSꇗ7 	GfB\r21','',0,'?'),('@L߯7٭kقE','wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"O^3!vO','D!%(\\ҦiV5','',0,'?'),('Cs\\\ns\'m','wp-content/plugins/wordfence/lib/menu_tools_whois.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p@E[ܟ','+FK;I(D=ƶKHX2ek','',0,'?'),('#>҆Kl','wp-content/plugins/wordfence/lib/pageTitle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lw+6','UW5XTVH*Oފl-\\?','',0,'?'),('~ӤwJ̼.','wp-content/plugins/wordfence/lib/schedWeekEntry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D1D1 .V','ro+:\'(|J:qiBgH','',0,'?'),('F{A','wp-content/plugins/wordfence/lib/sysinfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a\"(v7f','\0}?No3	J۾qfyAg¥','',0,'?'),('M~^x;','wp-content/plugins/wordfence/lib/unknownFiles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';AGt','L;H7LNl:8y','',0,'?'),('LR7QToG|{','wp-content/plugins/wordfence/lib/viewFullActivityLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/{g/C)','rIubf//7i⭲ 6}ٱM','',0,'?'),('ٵ\nhJxdvԃ]','wp-content/plugins/wordfence/lib/wf503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°4l@%GT','Q	Y+|,  \'式E','',0,'?'),('2]hqu:T6EU','wp-content/plugins/wordfence/lib/wfAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܨW[M','йM%~RشksL:','',0,'?'),('#疭ۭv\"M','wp-content/plugins/wordfence/lib/wfAction.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@_>js','xs4]6	nwn+FXWkN','',0,'?'),('Ɇ8pŻѵV','wp-content/plugins/wordfence/lib/wfActivityReport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dG.գv','bN;G^c0!#/9wgk','',0,'?'),('ދ1Fa','wp-content/plugins/wordfence/lib/wfArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','emyVM\Z','b\"s5]ٯ\\b$@_;vyYR1','',0,'?'),('-=QCwtnL#','wp-content/plugins/wordfence/lib/wfBrowscap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q?SXl4Z>','??+djB5k!23=w{(@FWv','',0,'?'),('XJp','wp-content/plugins/wordfence/lib/wfBrowscapCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|}Hk:=&Ѱ',':ߑ>*W4EaبX{I','',0,'?'),('1]M|KFZ','wp-content/plugins/wordfence/lib/wfBulkCountries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}M슱_#9','p8Ah\ra$|cfKg$H#w64','',0,'?'),('ґ-\r{,','wp-content/plugins/wordfence/lib/wfCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(1b\"3:!`kt','MϯspNh铌D4','',0,'?'),('Z4<n?e','wp-content/plugins/wordfence/lib/wfConfig.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BWN%\ns$X','mĻ]NMֲvNR)Y','',0,'?'),('B6[sM','wp-content/plugins/wordfence/lib/wfCountryMap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']hF3k;u','LWBn1/R@c.E~O3','',0,'?'),('8ÛZEQ$}UPT','wp-content/plugins/wordfence/lib/wfCrawl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0vH\no&|','u,=*5w<y=W\"ݞ^Ђ','',0,'?'),('xβЦA	<','wp-content/plugins/wordfence/lib/wfCrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0=+7zXL','t;	oGn#UTQz','',0,'?'),('J^\Z7uGk+','wp-content/plugins/wordfence/lib/wfDB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d	\"+o','%:HEoW\\,*Ţ#طV','',0,'?'),('ikmCxʷ','wp-content/plugins/wordfence/lib/wfDashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sAm4VR!?','}u\ZiXHc!tuَ|`uKE','',0,'?'),('l9=h,>&','wp-content/plugins/wordfence/lib/wfDiagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qSw9=ԝ','jv8[jgc6!GS.TT','',0,'?'),('F\ZC1P','wp-content/plugins/wordfence/lib/wfDict.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*6Att#','*Pq_Hj#\\ٔЕ$^\'','',0,'?'),('A0ff` Kǁ}','wp-content/plugins/wordfence/lib/wfDirectoryIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','켘~d[!LA/9','q\\}U2@nǇ+H׸xi','',0,'?'),('=9))\\','wp-content/plugins/wordfence/lib/wfGeoIP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~bj !b`aP)0','lܶSb<)iog^Q','',0,'?'),('q5@*=&\\X','wp-content/plugins/wordfence/lib/wfHelperBin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';!ȍ4QX#','չ%-^qUqMeY','',0,'?'),('PM\ZI̸ݭY`r','wp-content/plugins/wordfence/lib/wfHelperString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OVFaDV44ܪ','2-7na5A>cִ\ZNA-p{Qn\Z','',0,'?'),('ikCT,','wp-content/plugins/wordfence/lib/wfIPWhitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ia|0\n5a','&;P{$n\0tr	\0m`(Ŷ^','',0,'?'),('jsw2pqS','wp-content/plugins/wordfence/lib/wfIssues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o;{	FO1m','%Lb*=%+ףg3yE?','',0,'?'),('ؠ]fP','wp-content/plugins/wordfence/lib/wfLockedOut.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"yxer\"','Ifz\n\"g:','',0,'?'),('w+\"+$^','wp-content/plugins/wordfence/lib/wfLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F!# ũ\0Y_','F^(dX^lD+yFVܟ3s','',0,'?'),('\\h RX<C','wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G,ΰڏ','X\nOT>3+]e{-nIf','',0,'?'),('tǱ%F','wp-content/plugins/wordfence/lib/wfNotification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9e~*-թL9','*R\ra4j	u	zRQ3tN','',0,'?'),('mqPoD0*L','wp-content/plugins/wordfence/lib/wfRESTAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FEW\"*7GJ','e4XyMDB=0G\'Wo&','',0,'?'),('^k֪Dv6R','wp-content/plugins/wordfence/lib/wfRate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\\XE\nW\0','b¸ڻ\'mVkީqS','',0,'?'),('ތt+\\+XaZU','wp-content/plugins/wordfence/lib/wfScan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^_I?s$.','ᅙJW\rPG*1cC]5S','',0,'?'),('6XԪ4[_=t','wp-content/plugins/wordfence/lib/wfScanEngine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t0u/\Zlw','dczYpTIciAfeF]i$','',0,'?'),('bHzfWgw','wp-content/plugins/wordfence/lib/wfSchema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2]:8','aXGj{=hܵ!oJE','',0,'?'),('K2;<Dkub','wp-content/plugins/wordfence/lib/wfStyle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\0pwqD','ؚʉp#Yaŋ>@u_HJ','',0,'?'),('hLJHX#0','wp-content/plugins/wordfence/lib/wfUnlockMsg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\n>9ae\Zj','dIvF m7\ZtIg>(&','',0,'?'),('e\\1tƋ<	','wp-content/plugins/wordfence/lib/wfUpdateCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vkv)Ւij','íonUߨVUZ2w7LB','',0,'?'),('Q49LzJ','wp-content/plugins/wordfence/lib/wfUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O([\04<Rw>','4/ YB6(鞖','',0,'?'),('eŐnA','wp-content/plugins/wordfence/lib/wfView.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⇲*!P\'|%\Z','\0+FoL (\\.w g{&:όH','',0,'?'),('v{Cҧ4I','wp-content/plugins/wordfence/lib/wfViewResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','όn:3Mmb','a/Q1Y쓎;PڔB','',0,'?'),('ݡ=NxK`*','wp-content/plugins/wordfence/lib/wordfenceClass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+KrYGR.','HsJ+y\rv0&`%\'CE','',0,'?'),('kHm1`0ѹ_','wp-content/plugins/wordfence/lib/wordfenceConstants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w;(t5ڐ','li[q%+\'ЩH--j#E҇','',0,'?'),('X-4J_3','wp-content/plugins/wordfence/lib/wordfenceHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G7nUuZ','61\nBLko_qd6!','',0,'?'),('z|*6S\\53','wp-content/plugins/wordfence/lib/wordfenceScanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TE9F f','_(H[מ93R^0}78Ԁ','',0,'?'),('h<]OpNCƴ','wp-content/plugins/wordfence/lib/wordfenceURLHoover.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$\'g-ԡ\'J',']C42{8`j&C^dYfV!','',0,'?'),('vFI2hn','wp-content/plugins/wordfence/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oe˼;','^w?zMp~cEaES','',0,'?'),(';Lt׬Cɣ','wp-content/plugins/wordfence/tmp/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iz~i,L','	HQIqzڤp9C4>H3G','',0,'?'),('=S6aXo,2','wp-content/plugins/wordfence/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\\o	jk_','I#\nY\ng+өe6J#0*e9\r','',0,'?'),('_k4!*}݄ ','wp-content/plugins/wordfence/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>BaXwa;','?~n!]%n91˔;g\"','',0,'?'),('0&Y','wp-content/plugins/wordfence/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JJ˭9FN=O','v(tM-|1=C4','',0,'?'),('\"0rN1M#','wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EӤ㭇Mg','Q*\'B+Eߞ:myuW','',0,'?'),('t!\Z%\n','wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,}vĨ3G)','Er4@\0ԡ$z3$l\Z`iexl','',0,'?'),('s˱Y*uO','wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\0>}LQ\0','_U\0]q=Չf\\/	@d\r+v*(','',0,'?'),('~Ӹbc\Z$@$*','wp-content/plugins/wordfence/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c@qxy=`','G-Dߜz!܁yq0m]!=','',0,'?'),(']mٲ	▭','wp-content/plugins/wordfence/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OfI8xE\Z','H\\ΣB.\\;j\0\'X`5ɣ','',0,'?'),('{Pzҹaeӧ9','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/bootstrap-sample.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K!೚Rlq`','Ej(5/bwh)Ҟ','',0,'?'),('~iI;ݭ]AS','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8w)n.ZC{v28','c\"3\r),\\ӷPV)ޤ3^?','',0,'?'),('I6U\r73p','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h<|7b','_^F\";+r&Z~ӦQ|5','',0,'?'),('nvZYV','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r*w>+/e','KOoA{/\Z:j3\0jɶyCJ','',0,'?'),('BJOzD','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZTַ?*=቎v%',':Z:b\\%5N)*N&2AdzLf	','',0,'?'),('Pdc3','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kYs\Z칱u',';kZC0_RQ7$k','',0,'?'),('^Q6lJ!	ͦ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JaD5Hr','[49<`ϖ)Bы3NGTB','',0,'?'),('߹V=\"#n	','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I	=~i','iaCʹIGDzp9>\n-eW\ZO2','',0,'?'),('rMܴ-\nS','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' }^)9o','geHBϔ@\"4#MЌR@È	DI','',0,'?'),('X/\0	','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Hs=F᭝\nnH','=i\\TG\ZrڮPMZ!','',0,'?'),('n09jv8\"','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nB','R5sITH&eq(MJ\n','',0,'?'),('ҭ_VlKg!p1','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$P2KK','ז	I%dN(..gŵocԫ','',0,'?'),('!O4bCRRfO','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']+U,yr','sT@>}wMtæ.DZMyR','',0,'?'),('c[b]ݽJF','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yn_,c','R7Lbi%\"^/','',0,'?'),('СqD֚?iX','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2_\'g=;D','t\rdHѳD.&!4','',0,'?'),('\'`F̔~Ė','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Jg!fyL','^E/\Zή<4n\'w}Bt','',0,'?'),('<xB','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6.{T=HXCv;','s h6gz>g嚗	Bza(srC','',0,'?'),('8K ?O]ʹY','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZlY^[F\r2xʻ','6=Sq-5 )EL}AViA]','',0,'?'),('xVM>n{Oǟ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	L7q\"?','Ίe0/(fJ9C@t%]-o','',0,'?'),('Aػ#\"j','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\njP\\k]4J',';ֆd6G~m9hV jh','',0,'?'),('Q6K4H','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T,`HRSv','Dy4Rw߮Ҷk,˙8d','',0,'?'),('rI\0ygE!2\0C','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\r$knɀ1Y','a5NN&L썠k\\Sx;','',0,'?'),('j)nQ8ޮD','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z]0޼|0','jK\nrK*Җ_N?u','',0,'?'),('\r#Dje]w','wp-content/plugins/wordfence/views/marketing/rightrail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'4##Kqe\r\Z<','[~0hɓ~݈P\'N_','',0,'?'),('T??:q׮Pah\'','wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[!*ye#','LaAM.<u,\'sf-=g','',0,'?'),('HcIJ%H','wp-content/plugins/wordfence/views/reports/activity-report-email.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5\0b&NB?T','\r$G܃uVQԨ{t5$\\','',0,'?'),('Nd#R+r\0s[','wp-content/plugins/wordfence/views/reports/activity-report.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GTj$M#Ԣ%','p-˶qhisY^7}#:<','',0,'?'),('֋8[0ʊ','wp-content/plugins/wordfence/views/waf/debug.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʑbc&Yz','(fuK:A3V\r\"ƞdo','',0,'?'),('Ha+̰I','wp-content/plugins/wordfence/waf/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']gjPw','PNQ^~&\n>DLw=Vh;mX	','',0,'?'),('6>l\rѲY','wp-content/plugins/wordfence/waf/wfWAFGeoIP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IZG4p\'`','	8+>uwHrmjj^> ','',0,'?'),('\0D`8Rɲ%','wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(p.´o_T','RZo+YBlx-1]\\VfXWM','',0,'?'),('%7娳','wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f9E3\Zr1<','!vS}hN<kA寓\'tc	)t','',0,'?'),('E#-v376Ť','wp-content/plugins/wordfence/wordfence.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J➵gܭ!J','>\nv=rLyY@oz\rq3\n','',0,'?'),('Q<zI9\"pX','wp-content/plugins/wordpress-importer/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('-K`A','wp-content/plugins/wordpress-importer/languages/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('\rKӋjY','wp-content/plugins/wordpress-importer/languages/wordpress-importer.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3I3=[b','I&s\rMfQߖw$&m<| X','',0,'?'),('o&={K\ZԜ','wp-content/plugins/wordpress-importer/parsers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D@i*	Af/̵V','Mkw౏^G/CʓV/S<ڀ䊲','',0,'?'),('IWAf=!TV','wp-content/plugins/wordpress-importer/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c%KU( ','諎xNЕgؑ','',0,'?'),('obPaq9 \r','wp-content/plugins/wordpress-importer/wordpress-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s+#9U]','aDOL$FJ# \r2Dpt','',0,'?'),('J}FE\09','wp-content/themes/index.php',0,'gD,V=\\bP','gD,V=\\bP','k~	UH\ZxPĀ<;X','',0,'?'),('@iATy\n0Bp','wp-content/themes/salient/404.php',0,'-D\rU5F)U','-D\rU5F)U','s%vىidqh?̀','',0,'?'),('3GrZN:o@','wp-content/themes/salient/comments.php',0,'JM0cdZz','JM0cdZz','+\nst\0\'$F\ZJ~2Q','',0,'?'),('m0AD8o','wp-content/themes/salient/css/colors.php',0,'qה@8\Z|!2o','qה@8\Z|!2o','eݟC)<\nD-8','',0,'?'),('sӎsmgs','wp-content/themes/salient/css/custom.php',0,'`MnBg ԋ7','`MnBg ԋ7','{4KVWMҷ_C$vO','',0,'?'),(') \0hn/Gv','wp-content/themes/salient/css/fonts.php',0,'NTJz>','NTJz>','m5-T-[C\"I5*ui<','',0,'?'),(')\n4y5\0','wp-content/themes/salient/footer.php',0,'\0 EM(H Lh,','\0 EM(H Lh,','`j@|KPט㛛}Wt)','',0,'?'),('qR\"ak\'YQԉ','wp-content/themes/salient/functions.php',0,'h!Z|O}:[','h!Z|O}:[','\\E)ZVo8;9#)g9:iUS\\I','',0,'?'),('\0O[m2v','wp-content/themes/salient/header.php',0,'``\0 >T.=','``\0 >T.=','5N>fCZ-($-gwka\Z','',0,'?'),('0os5T7?','wp-content/themes/salient/includes/custom-widgets/recent-posts-extra-widget.php',0,'N^2c\0wkڪK6','N^2c\0wkڪK6','U8\Zk#5]aԃ&j!','',0,'?'),('d\'pS`eH','wp-content/themes/salient/includes/custom-widgets/recent-projects-widget.php',0,')`O=i',')`O=i','=YQ	?e◞v}k{Dv\"n9u','',0,'?'),('OKEpRb','wp-content/themes/salient/includes/header-search.php',0,'(Al_d7','(Al_d7','WUC%)OYf0HL;n-Y','',0,'?'),('xmE(C>KIg','wp-content/themes/salient/includes/portfolio-functions/video.php',0,'r+RWK9','r+RWK9','=ӿ$IjIϞ7X|\0','',0,'?'),('&?TeAVw','wp-content/themes/salient/includes/post-templates/entry-aside.php',0,'u(\"<)}c','u(\"<)}c',' 	LPk^mnzZ@','',0,'?'),('P@dU&ʒ3Qɨ','wp-content/themes/salient/includes/post-templates/entry-audio.php',0,'C%D|5^c','C%D|5^c','}ojHa̽۴@UǼ녣','',0,'?'),('3*S@','wp-content/themes/salient/includes/post-templates/entry-gallery.php',0,'\06ǳHJ˥s','\06ǳHJ˥s','^޾Cb7l\Z\nLV ','',0,'?'),('YJ254$ ,','wp-content/themes/salient/includes/post-templates/entry-image.php',0,';׵G\r%,b̒d',';׵G\r%,b̒d','A8@ğ/-rʠbۘ','',0,'?'),('r6tPV\rOXM','wp-content/themes/salient/includes/post-templates/entry-link.php',0,'.66lCӱ&','.66lCӱ&','M>eʽXȋǯ\'@`.Q','',0,'?'),('Ѱ`%YH%N9G','wp-content/themes/salient/includes/post-templates/entry-quote.php',0,'ےlN:B','ےlN:B','E\"}ikt	P\nF..]','',0,'?'),('0 }BB_t>$a','wp-content/themes/salient/includes/post-templates/entry-status.php',0,'aGۘwR1pz,','aGۘwR1pz,','#۸c+\'1.t)Ely<p<[m','',0,'?'),('40(K	z','wp-content/themes/salient/includes/post-templates/entry-video.php',0,'\'!*0R6;','\'!*0R6;','2d1Sʲ_f~{s*g`)Q±%$r','',0,'?'),('6~g#]F','wp-content/themes/salient/includes/post-templates/entry.php',0,'r\0\rv)ZH|P','r\0\rv)ZH|P','Nw\ZGehb-:\0ݭ2y4\rQ','',0,'?'),('4%8e!Yh%','wp-content/themes/salient/includes/post-templates-pre-3-6/entry-audio.php',0,'9P~UGr:J7','9P~UGr:J7','\Z;}CûeRD/d1r:j3k','',0,'?'),('t˚%Y,E','wp-content/themes/salient/includes/post-templates-pre-3-6/entry-gallery.php',0,'7폧2~ʥk','7폧2~ʥk','ہdTyc42.x󇝚G[I','',0,'?'),('EaaHٍb','wp-content/themes/salient/includes/post-templates-pre-3-6/entry-link.php',0,'WK8dA=V%¯','WK8dA=V%¯','wӝJ6 P=pSpl^\r','',0,'?'),('gg*9\r\"?^>,','wp-content/themes/salient/includes/post-templates-pre-3-6/entry-quote.php',0,'E[BI0X\n','E[BI0X\n','gOo͊,63b*\nj:|%}p','',0,'?'),('?<w\nNZN\Z','wp-content/themes/salient/includes/post-templates-pre-3-6/entry-video.php',0,'ãzhPwQ*','ãzhPwQ*','Cx`B!|tcyX\n+T䓿ƌ','',0,'?'),('mc\n۟>l\Zo','wp-content/themes/salient/includes/post-templates-pre-3-6/entry.php',0,'{>5˼Bܨ\n','{>5˼Bܨ\n','g:׼҄7zC.]m1Q','',0,'?'),('e2Og;c','wp-content/themes/salient/index.php',0,'޳h۝{Ё','޳h۝{Ё','!\rK{4 \n\n5Lo6','',0,'?'),('hgv,LL8','wp-content/themes/salient/js/ajaxify.js',0,',ݦl#pkˍ',',ݦl#pkˍ','eȒ+2LO1D%Lϣc','',0,'?'),(',,҂_{%','wp-content/themes/salient/js/caroufredsel.min.js',0,'i*ɝh	','i*ɝh	',';,^\n<ĈA\"Ij\"+׸;GN','',0,'?'),('Kl&4{z','wp-content/themes/salient/js/flexslider.min.js',0,'FFUGPP]x8K','FFUGPP]x8K','%V$9[w*dE\'','',0,'?'),('H.jb#9/','wp-content/themes/salient/js/flickity.min.js',0,'Ż.I41u/1*','Ż.I41u/1*','NZM5آ]$ThX','',0,'?'),('.,b+)#8','wp-content/themes/salient/js/imagesLoaded.min.js',0,'7 QE','7 QE','8{\'\r4\"֋{ݦu\Z/Jyv','',0,'?'),('W1Iń','wp-content/themes/salient/js/infinitescroll.js',0,'d7CY𼁾','d7CY𼁾','8csXzP~X83YD 74','',0,'?'),('_F)\ZS_','wp-content/themes/salient/js/init.js',0,'5蔯D}Bs','5蔯D}Bs','im\rb]	ބAi$\\tM\0^UAh4','',0,'?'),('PPcž<B\0','wp-content/themes/salient/js/isotope.min.js',0,' 2BQ[rv{',' 2BQ[rv{','QSt^+ j锻*lVGOo	','',0,'?'),('yO\'Lt','wp-content/themes/salient/js/jquery.fullPage.min.js',0,'#=3EQڔy','#=3EQڔy','\ZΔ{o\'^2g\n)q','',0,'?'),('>Y^$ơ','wp-content/themes/salient/js/jquery.iosslider.min.js',0,'KB@d݊qg','KB@d݊qg',',c©ma}uCF-5','',0,'?'),('!:,O}','wp-content/themes/salient/js/jquery.twentytwenty.js',0,'ad,R50[g','ad,R50[g','~6(\\\r7Q-fLJTc\0:3T','',0,'?'),('a,es޻F.','wp-content/themes/salient/js/magnific.js',0,'K	#FU_','K	#FU_','iG}ꈬLTjW\Z\\Bk','',0,'?'),(')2pObE\0','wp-content/themes/salient/js/map.js',0,'iDt[YI&e\\','iDt[YI&e\\','jMpUG{>\\3w<E\"M','',0,'?'),('j@<8','wp-content/themes/salient/js/mediaelement-and-player.min.js',0,'Tԉ(\'EM','Tԉ(\'EM','wz?sT;fc\ZkdVg9fP','',0,'?'),('QJo\Zݔ','wp-content/themes/salient/js/midnight.js',0,'FZ/O1','FZ/O1','5CJ5g\r;|sW:v!ZZr[','',0,'?'),('nڬB5s','wp-content/themes/salient/js/modernizr.js',0,'ϥ2\0ħ)W','ϥ2\0ħ)W','Ֆ}wXǊ>G~3=','',0,'?'),('g!LBM=_','wp-content/themes/salient/js/nectar-particles.js',0,'\0j;','\0j;','X)\0D\Z<ޫ>9䱷1PJAg','',0,'?'),('\"J dЉg','wp-content/themes/salient/js/nectar-slider.js',0,'cLy4O;z-','cLy4O;z-','WS).o]d,JYj\nrd','',0,'?'),('vwosiWd','wp-content/themes/salient/js/nicescroll.js',0,'L)pc','L)pc','-h1D]I3>P#F\'J@','',0,'?'),('-@3NM','wp-content/themes/salient/js/orbit.js',0,'`9s/<','`9s/<','P{Q\'Wf3܋͂Ѽ\nʥF1','',0,'?'),('d\'D\'͚T}','wp-content/themes/salient/js/owl.carousel.min.js',0,'L9C!V߁]','L9C!V߁]','dcԅgw|{HT4o3]APY','',0,'?'),(' N7,x','wp-content/themes/salient/js/parallax.js',0,'yǎcaJs','yǎcaJs','A56};\\V3s\0ebԅ/','',0,'?'),('6\"ۋ])W`','wp-content/themes/salient/js/prettyPhoto.js',0,'\nk5C','\nk5C','*]^B>Z^@tt2*X','',0,'?'),('?T\\/-2d','wp-content/themes/salient/js/respond.js',0,'L{Azlv','L{Azlv','^W@,p`BtlEtEF&uh4V~','',0,'?'),('D`#T','wp-content/themes/salient/js/select2.min.js',0,'noʙ@ut7','noʙ@ut7','fvFq(|o9et^c@^Z','',0,'?'),('ebQ$}o','wp-content/themes/salient/js/sticky.js',0,'!(YJP','!(YJP','C\0,5{\\\rᜢS	tok&','',0,'?'),('^>jپVNb:','wp-content/themes/salient/js/superfish.js',0,'P=3Svi','P=3Svi','r~D Xl6h*','',0,'?'),('-WyBu','wp-content/themes/salient/js/touchswipe.min.js',0,'CdSu<','CdSu<','^P&~sSR\nE+1\0Id<','',0,'?'),('=>+kSib','wp-content/themes/salient/js/tweenmax.min.js',0,'ʧLB{كW','ʧLB{كW','%6yPDc4); . 7q,','',0,'?'),('4Q| ','wp-content/themes/salient/js/vivus.min.js',0,'v4`a.','v4`a.','/;ЄN־|  Z3QgDW','',0,'?'),('ݺLs${','wp-content/themes/salient/nectar/assets/functions/ajax-search/wp-search-suggest.php',0,'tdTzajأ=O','tdTzajأ=O',')\0#}El]n5ZISmNÔ(','',0,'?'),('=Kd_;#rh','wp-content/themes/salient/nectar/assets/functions/ajax-search/wpss-search-suggest.js',0,'\ZC\n\\;3','\ZC\n\\;3','R<No^w\n<;S\\','',0,'?'),('AV.Uy`','wp-content/themes/salient/nectar/assets/functions/multi-post-thumbnails/js/multi-post-thumbnails-admin.js',0,'fڅE:.','fڅE:.','\Z7;N\\mQR\0vG','',0,'?'),('h2dKSd','wp-content/themes/salient/nectar/assets/functions/multi-post-thumbnails/multi-post-thumbnails.php',0,'s0!XP_M\0n','s0!XP_M\0n','E^HGeC:CA4!g3J^','',0,'?'),('O?	QyeZe','wp-content/themes/salient/nectar/assets/functions/wp-menu-custom-items/menu-item-custom-fields.php',0,'>룿Fr?{','>룿Fr?{','lqJ*o@lJc2*66dxJ:','',0,'?'),('?̤*%r9(','wp-content/themes/salient/nectar/assets/functions/wp-menu-custom-items/walker-nav-menu-edit.php',0,'?%XiPB#','?%XiPB#',' MJP]N)UWIl^9Wpĥf','',0,'?'),('ϱZֱg_','wp-content/themes/salient/nectar/assets/js/nectar-meta.js',0,'\r\ZhDFL:cr','\r\ZhDFL:cr','ң&DqUWeN׳d-\"\'^S','',0,'?'),('& v3#','wp-content/themes/salient/nectar/assets/js/nectar-reorder.js',0,'Zhߧ?','Zhߧ?','6AѾP/	kh_H¦\0\rF','',0,'?'),('@Fj{_lqk','wp-content/themes/salient/nectar/love/nectar-love.php',0,'ot[-+lp','ot[-+lp','xTG.y;o=3V=O\0u`3C','',0,'?'),(',2ƚu/>l','wp-content/themes/salient/nectar/meta/category-meta.php',0,'T2}{k','T2}{k','^YQV\0/Yltf<T','',0,'?'),('~^ؕԏKv\Z','wp-content/themes/salient/nectar/meta/home-slider-meta.php',0,'UI4^je>','UI4^je>','6QP?\Z\n;ynHӖ>','',0,'?'),('Sø,','wp-content/themes/salient/nectar/meta/meta-config.php',0,'k\"md|Yz','k\"md|Yz','b.ϫ7<wB5Qڟ:BQ?!','',0,'?'),(')cA9>','wp-content/themes/salient/nectar/meta/nectar-slider-meta.php',0,'DcIR','DcIR','֫z8-cdFO).`.','',0,'?'),('ԝq?{dvY','wp-content/themes/salient/nectar/meta/page-meta.php',0,'Ri^&a','Ri^&a','JNTߏbjY~K*','',0,'?'),('_i@F4}','wp-content/themes/salient/nectar/meta/portfolio-meta.php',0,'D* Ivr','D* Ivr','>l1qcQ،pv~wK>','',0,'?'),('γ2Y0\\.m','wp-content/themes/salient/nectar/meta/post-meta.php',0,'|91̟B|u','|91̟B|u','O\"Kb\0_muw*]-;M>d,','',0,'?'),('Gd&\0','wp-content/themes/salient/nectar/nectar-vc-addons/nectar-addons-no-lean.php',0,'zRD$Hsd]','zRD$Hsd]','NR瓘1ajsì7&Spla','',0,'?'),('L5y\\כP$','wp-content/themes/salient/nectar/nectar-vc-addons/nectar-addons.php',0,'\rM9\\/[])','\rM9\\/[])','/6Xdq672!s-pl֦*','',0,'?'),('\0]vUԞGR` O','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/bar.php',0,'tTvhB#+\n','tTvhB#+\n','1PeG^ۄ#','',0,'?'),('b5z7423Jr','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/carousel.php',0,'1&!i&','1&!i&','Slǃ-+i(ٓmu)','',0,'?'),('h4\r52iBJ','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/client.php',0,'v/x2\nIU','v/x2\nIU','3ӦCn|\ZG^@r~aÓYqD#','',0,'?'),('/05	wY+\'','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/clients.php',0,'JI)f\np*1{','JI)f\np*1{','8Nt>@m\'GP|J\0-J*ޛf','',0,'?'),('˳V{,','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/divider.php',0,'#S)έSf2˗\"','#S)έSf2˗\"','f\0.dưۈj&1Ԝ`/3u','',0,'?'),('j\r	6|d\\ʦ','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/fancy-title.php',0,'g8,	،,48','g8,	،,48','ZnC߇c]\ZO Fnl','',0,'?'),('s]W2#','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/fancy-ul.php',0,'(]\0[A.mf#','(]\0[A.mf#','rmM@\n*}9IRi=O|+','',0,'?'),('?nf%,','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/fancy_box.php',0,'8L%)=bH-','8L%)=bH-','근\0%{Tbn_GG͜٪','',0,'?'),('I`%=D ySr','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/flip-box.php',0,'31&ǋ','31&ǋ','Wۤ\nĤ(Tc4G4}`','',0,'?'),('2\\L]\'}2u','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/full_width_section.php',0,'`Sh[ʭ:q','`Sh[ʭ:q','\Zg>hvRcQeA','',0,'?'),('T]$T~/','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/gradient-text.php',0,'\rAնl','\rAնl','bk\\_[.2$HX~dqcӠK\r','',0,'?'),('&^͈)BiKpu','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/heading.php',0,'H]6hf','H]6hf','KidJ\'/1@ʰC>J>>T','',0,'?'),('>,s}9\Z.f','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/image_with_animation.php',0,'kN[ܽtl0M','kN[ܽtl0M','K\01x[BD#Sl\ZZ![','',0,'?'),('>.t1N@Q.','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/milestone.php',0,':&)Т7`',':&)Т7`','셱6iu9{AT1>B2','',0,'?'),('wEg˺̊\r','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/morphing_outline.php',0,'kR)>b2I0','kR)>b2I0','É[N OQ?8rE\'','',0,'?'),('2H-Ë?`','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_blog.php',0,' _y\ZX',' _y\ZX','s	Օ[J*сPBHu7.','',0,'?'),('Nqa4\' #@_','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_btn.php',0,'xoYZ','xoYZ','b|.\']6ABZ','',0,'?'),('	n s9&R','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_cascading_images.php',0,'u(s)5py','u(s)5py','^f[Q\rbI%F颢C; ȋR','',0,'?'),('y,2gC6Di','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_cta.php',0,'obp.Υ','obp.Υ','~\"jT+\'#so=.C	TM6LZ=','',0,'?'),('XBmy6i','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_food_menu_item.php',0,'Ӹ;%^`f','Ӹ;%^`f','B{%փȕA|f','',0,'?'),('U?\\','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_gmap.php',0,'ȟI\n]q','ȟI\n]q','rÎXt&2}s]^qE','',0,'?'),('l%$\"DV','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_horizontal_list_item.php',0,'$nqNbg5 ','$nqNbg5 ','snm=yb+d+ƳG`3S$','',0,'?'),('7頜+|r','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_hotspot.php',0,'<,V	UD','<,V	UD','!^\'vD,䒽XlH>b\ZP','',0,'?'),('ڄn@ip','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_icon.php',0,'IXu É8g','IXu É8g',',,idMyY:{2cV\nJ','',0,'?'),(')0v6&6AM','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_icon_list.php',0,'N]b_pf7s$r','N]b_pf7s$r','IlB>y/ .*TJi9,#O','',0,'?'),('௺]vxpk<d','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_icon_list_item.php',0,'YAu@%=','YAu@%=',']zYoȺ$yee3l+ʶ>fI=','',0,'?'),('Y~gGz6nN','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_image_comparison.php',0,'vҥ><nQ\0','vҥ><nQ\0','qETp:@Rn~','',0,'?'),('\\̔\0t~','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_image_with_hotspots.php',0,',GKlB}',',GKlB}','k)c9	ʭ]l<[SԛM@','',0,'?'),('u?4@FQYV','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_portfolio.php',0,'jI|tn\n','jI|tn\n','`x󚯪qx`mb3@W~h','',0,'?'),('9g.#8Ҧ[B','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_slider.php',0,'	ȄA4i','	ȄA4i','6e`4<Xg_4t\rG5','',0,'?'),('2\"{/u}s-*','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_video_lightbox.php',0,'*nq}Z','*nq}Z','ҧp6ϠA]\0~]<25','',0,'?'),('Y%\'\Zs4ih͉','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_woo_products.php',0,'8>sp^x*ߦ#','8>sp^x*ߦ#','}zoK0A>QB58&','',0,'?'),('g|DnTdi$','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/page_link.php',0,'\r=;QK;','\r=;QK;','R;M2\nтN8','',0,'?'),('{xz','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/page_submenu.php',0,'N-\re܂R?8	%h','N-\re܂R?8	%h','X23IUC#u{}՝]\r/Wj\"','',0,'?'),('. 81','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/pricing_column.php',0,'2z3!0v5ݪ','2z3!0v5ݪ','ՌOvUW5)y\rGETdo;	','',0,'?'),('$AБn$۠','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/pricing_table.php',0,'fyXƵ^=X','fyXƵ^=X','d.|,_wk1=ɴx','',0,'?'),('\"9Og9sr#@׻','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/recent_posts.php',0,'!,y2PgNKp','!,y2PgNKp','ͧiW1LY.c@JJE,','',0,'?'),('^=-ؖ@,','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/recent_projects.php',0,'$\Zþ=<\"!','$\Zþ=<\"!','4TLAƋWZX4tw\Z','',0,'?'),('FYg\0GJ#<Xm','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/social_buttons.php',0,')2`\Z]',')2`\Z]','#\ZZ;bnus2MzmDco','',0,'?'),('qJU','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/split_line_heading.php',0,']\"\ZV',']\"\ZV','fM#	ǨZ	vdEDC;','',0,'?'),('oQj{)Wv','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/tab.php',0,'Ug@Aa','Ug@Aa','+F$	*dÏYki飰','',0,'?'),('?*vaVf[Qb','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/tabbed_section.php',0,'2ZDI{aRg','2ZDI{aRg',' 7ѧ8jȺǕ``^OK4tP','',0,'?'),('(U75iد0v','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/team_member.php',0,'t!<d]vD}','t!<d]vD}','@\ZR&\0R.WdH?rCѰG','',0,'?'),('!lec\")','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/testimonial.php',0,')t_wvlےe',')t_wvlےe','jM5H!;<mWwc','',0,'?'),('j-:(\r^','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/testimonial_slider.php',0,'FPKqv,ۈ}q9','FPKqv,ۈ}q9','bSW=:cdEbڶHeaTy','',0,'?'),('*,]G]I','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/text-with-icon.php',0,'[bNх4ش','[bNх4ش',',(UjZA??$P2\Z','',0,'?'),('.4ne*`#VG','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/toggle.php',0,'w[\ZH/n','w[\ZH/n','뿕\"PS;S\nh33}[h','',0,'?'),('!ܣ)SS7','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/toggles.php',0,'-z2eMjS8yDr','-z2eMjS8yDr','F\"G6]K~\rb\rc/>W','',0,'?'),('Վ8	!&nΟ','wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/vc_column_inner.php',0,'^*1mHE','^*1mHE','>TT\"\\>^ə1pO]HN','',0,'?'),(';܎\'/bnג9\"','wp-content/themes/salient/nectar/nectar-vc-addons/salient-studio-templates.php',0,'-kpkܣI','-kpkܣI','tVa*jLZ3','',0,'?'),('团-&Ne<+(','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/carousel.php',0,'I<G3Q+','I<G3Q+','XjhQѴ\ng;Es4d;4]y(','',0,'?'),('4k	wqt','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/client.php',0,'\rEM=:6','\rEM=:6','>\'i9z_t凜xGԘgE1;z×3','',0,'?'),('x\0)o~C)I','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/clients.php',0,'hp47ȡN8','hp47ȡN8','3ێ\0M\'O1\nAMN','',0,'?'),('v(.Ȱ0d5,','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/fancy_box.php',0,'ʴqX','ʴqX','@`\r-wt\Ztrrep','',0,'?'),('X;!^ё','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/full_width_section.php',0,'laAUh2','laAUh2','19H 4\n^\'BV!zYF*c','',0,'?'),('yHdEw','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/item.php',0,'/N3\0Ng\0','/N3\0Ng\0','ED)A;#4Wr{','',0,'?'),('gҊ{EHe5)','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/morphing_outline.php',0,'ܘ\\m:nC%h','ܘ\\m:nC%h',',J`BIU#tob*\0','',0,'?'),('`fQ^7$9\r','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_animated_title.php',0,'ZƃZjxʍm','ZƃZjxʍm','b=j嶁)f\r{5@?Ϗk','',0,'?'),('|@>c5','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_btn.php',0,')\0YK-ګ֛',')\0YK-ګ֛','bi]?Y<?5]MMsT <!b?','',0,'?'),('	Kv\0V~1','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_cascading_images.php',0,'ZۃHʢB','ZۃHʢB','\0g{c^th]8p	a','',0,'?'),('M-2TL','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_cta.php',0,'`K;T\ZQ8','`K;T\ZQ8','ы9T{	yֺgwmG\nWg','',0,'?'),('epJٲTH','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_flip_box.php',0,'ؒB,_!','ؒB,_!','.gy{\n]P!~oQ','',0,'?'),('g̮sD,ЯN','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_food_menu_item.php',0,'[*E6}U','[*E6}U','ӝRRJnB1V}AϾH>}i','',0,'?'),('9(Jshl7','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_gmap.php',0,'G=ay0N;\n','G=ay0N;\n','Ah2x0/\n,]HyP\Z','',0,'?'),('%-*,Ed{','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_gradient_text.php',0,':PAUp`)',':PAUp`)','omZM~}լTDR}Ku','',0,'?'),('GH=\rUF','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_horizontal_list_item.php',0,'we`_Ew	','we`_Ew	','@(ؠ<||t:+bԭ0','',0,'?'),('@`}z','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_hotspot.php',0,'V 㦚ܙF','V 㦚ܙF','FtM<._E3?4y','',0,'?'),('ҘԨ%=','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_icon.php',0,'}U^99x','}U^99x','HXоvڒ5tM\ZJe%@MeF\"2','',0,'?'),('\'D;C	VS[.','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_icon_list.php',0,'e!bϰ_߆y','e!bϰ_߆y','SstQc,.hP)]3L`c\'@','',0,'?'),('uN$.kI\n%G','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_icon_list_item.php',0,'mdOs[\0','mdOs[\0','@M@nRN1F4߭٦\0P{2\Z8]','',0,'?'),('\"@fQ)','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_image_comparison.php',0,'Zdҡ1h/+_','Zdҡ1h/+_','禩B\\έb,ė\"4q\0km8BP','',0,'?'),(' hFa','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_image_with_hotspots.php',0,'ݦ٤H_{','ݦ٤H_{','ݞtS_̅$UZ7;y','',0,'?'),('cÔ}xԵ','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_video_lightbox.php',0,'~(qV*[u&','~(qV*[u&','m.`%8VJ;zyhg}','',0,'?'),('8S5(\'B@Z','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_woo_products.php',0,'Kt1)\Z]YD','Kt1)\Z]YD','vexlF~h\\0x>\n:?','',0,'?'),('r@\'I,\"','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/page_link.php',0,'Ԓʉ	NRz__(','Ԓʉ	NRz__(','6E\n.;LοV9¾','',0,'?'),('9_Q-cxX','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/page_submenu.php',0,'v,tVbVU}(','v,tVbVU}(','k\0f(}?71,J8yPA$','',0,'?'),('0=C_W<tZ<','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/pricing_column.php',0,'I/륭I=','I/륭I=','qR\r\"=S`ȿT','',0,'?'),('ˢ\'IF\"	i`','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/pricing_table.php',0,'\rƦnch=g','\rƦnch=g','*+%*ψIڳ@`l76','',0,'?'),('Mu,r\\i4','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/split_line_heading.php',0,'j0\nI?z:','j0\nI?z:','\0#T$\'ud ','',0,'?'),('Ά*wce-4','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/tab.php',0,'fJH\nij','fJH\nij','d-{WUkS?wC7*=ġ','',0,'?'),('Mb%?J=','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/tabbed_section.php',0,'H͎n+:Ly/	L','H͎n+:Ly/	L','U`\"\r7p?GSᅏ2o','',0,'?'),('\0d(-7tM{','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/testimonial.php',0,'w~3','w~3','ݾG`*,ͪQ=t;ڿiN','',0,'?'),('I#z\'^1ܔ','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/testimonial_slider.php',0,'6C-UYvd','6C-UYvd','$FNwrţ\0º\'.','',0,'?'),('e^f[Ly','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/toggle.php',0,'nI5s~ÌwސZ\Z','nI5s~ÌwސZ\Z','L[t]4@VW+N#rǉs','',0,'?'),('3:rCX`e','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/toggles.php',0,'\rXd,&@N','\rXd,&@N','oLQUB\\ E4y4{נk\"U','',0,'?'),('@[=3C','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_column.php',0,'\Z&h9жH','\Z&h9жH','P*h\\iRНG]}q','',0,'?'),('`\rvX!)V','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_column_inner.php',0,'q=\"X)w','q=\"X)w','R{\Zl_^d=|Qr](&4Le]k','',0,'?'),('zxwPh56/x','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_column_text.php',0,'Ab|F}$','Ab|F}$','u 5qKYq\'uOjT7s8','',0,'?'),('(w~*]7','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_gallery.php',0,'.J#߫I','.J#߫I','iRǽ)CNz(NF脴[','',0,'?'),('\'{m\'LFT@\\','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_pie.php',0,'^u{rO_$R','^u{rO_$R','u\"ڹS5AI̍+Az','',0,'?'),('405vu0','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_row.php',0,'\"ˇ\\?','\"ˇ\\?','rU<<\r˛Af\"l&BV','',0,'?'),('C$*Cu','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_row_inner.php',0,'-Gjj\"','-Gjj\"',',8ܦOhyxwKZPURB','',0,'?'),('}\n*IC-jpu','wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_widget_sidebar.php',0,'ߛ\" d@rI','ߛ\" d@rI','ΗjDWFcBrV5y=YWjU7z','',0,'?'),('1lm:_\Z=','wp-content/themes/salient/nectar/options/fields/button_set/field_button_set.js',0,',\r1?g?',',\r1?g?','}ğ֍qlݴyCp','',0,'?'),('\nftGen','wp-content/themes/salient/nectar/options/fields/button_set/field_button_set.php',0,'{7e):JUXWTH9','{7e):JUXWTH9','D$Tݒ^/bBYuVPr!(','',0,'?'),(':\ru:_o\n\n','wp-content/themes/salient/nectar/options/fields/cats_multi_select/field_cats_multi_select.php',0,'WQKc(\n!O8','WQKc(\n!O8','~RV\\Cԇ7^5of3+b','',0,'?'),('$ucJMpr\Zh','wp-content/themes/salient/nectar/options/fields/checkbox/field_checkbox.php',0,'w́\',\"e','w́\',\"e','e8B㙡lq\n>3i!9GD','',0,'?'),('&֏)fʑH','wp-content/themes/salient/nectar/options/fields/checkbox_hide_all/field_checkbox_hide_all.js',0,'TUYTP','TUYTP','$}KBq_G_epM|/V','',0,'?'),('d~S$.miU=','wp-content/themes/salient/nectar/options/fields/checkbox_hide_all/field_checkbox_hide_all.php',0,'Hŭ\'$={	Kv','Hŭ\'$={	Kv','%ʚK耧X%UgpJBRGB!','',0,'?'),('|%V\\3$?*x','wp-content/themes/salient/nectar/options/fields/checkbox_hide_below/field_checkbox_hide_below.js',0,'9 -sV=,NZ','9 -sV=,NZ','dpL6Xuq=ưX$(syG','',0,'?'),('/O:O[j^','wp-content/themes/salient/nectar/options/fields/checkbox_hide_below/field_checkbox_hide_below.php',0,'jՋaq>Z','jՋaq>Z','*B~\0ڼ)ҹJyc','',0,'?'),('_{̷\ZHn*\Z','wp-content/themes/salient/nectar/options/fields/color/field_color.js',0,'#F!x\'o.\\','#F!x\'o.\\','+,k6`B*wao%\"','',0,'?'),('\';rq','wp-content/themes/salient/nectar/options/fields/color/field_color.php',0,'GY}X?LE','GY}X?LE','ЊD}`Ћ騽=y)?x','',0,'?'),('STR58=','wp-content/themes/salient/nectar/options/fields/color/field_color_farb.js',0,'U ^N(k\r','U ^N(k\r','|V_@Ð͌%%\r}	$1','',0,'?'),(';]`j_PP!z','wp-content/themes/salient/nectar/options/fields/color_gradient/field_color_gradient.php',0,'ek<}5%m','ek<}5%m','%Al\"~dURM،#I\rM','',0,'?'),('@5?dL]','wp-content/themes/salient/nectar/options/fields/slider/field_slider.js',0,'l:Н^^KԣXrU','l:Н^^KԣXrU','8ޫ3˂NchsQX#4m','',0,'?'),('b+b!{\'','wp-content/themes/salient/nectar/options/fields/slider/field_slider.min.js',0,'T1$=-gMor','T1$=-gMor','\\;]Tʍ︊\"9ܱ37=','',0,'?'),('\\| O4љ','wp-content/themes/salient/nectar/options/fields/slider/field_slider.php',0,'Pekf&ca','Pekf&ca','¦LP\nw$0\Z	rP\\_','',0,'?'),('4#tޤ0%Z$QN,','wp-content/themes/salient/nectar/options/fields/slider/vendor/nouislider/redux.jquery.nouislider.js',0,'䷂/71K1','䷂/71K1','9T+Б5YL\0-ОedtFѨ>ة_','',0,'?'),('@|V#','wp-content/themes/salient/nectar/options/fields/slider/vendor/nouislider/redux.jquery.nouislider.min.js',0,'E1fP!-','E1fP!-','IJAWA0}-2_}פffI_%','',0,'?'),(';SP_^+e3','wp-content/themes/salient/nectar/options/fields/upload/field_upload.js',0,'\0-}	:w״P','\0-}	:w״P','&{Ёs*m|֌x]lKGhu(Β','',0,'?'),('{\Zm!Fij:','wp-content/themes/salient/nectar/options/fields/upload/field_upload.php',0,'xM򾊚','xM򾊚','_+1pbȚLpe(F{W_i@tk>','',0,'?'),('poE8¾E','wp-content/themes/salient/nectar/options/fields/upload/field_upload_3_4.js',0,'L!+\')\'8d','L!+\')\'8d','\"ˏp\0x]LWWS*Hnqsݘ{W','',0,'?'),('eQz	n?ٱ:','wp-content/themes/salient/nectar/options/fields/upload/gallery.js',0,'kЖ\nKNeD','kЖ\nKNeD','&h0ɼ˽h\'D:\ru','',0,'?'),('IӰ\"~e$e<*','wp-content/themes/salient/nectar/options/js/fonts.js',0,'c) a}ם','c) a}ם','J}JsJ@/(փ{\"ԁ','',0,'?'),('xno~]{G','wp-content/themes/salient/nectar/options/js/options.js',0,'L\'Ġk','L\'Ġk','\r\rG԰yy{Zv:','',0,'?'),('aun]Хd','wp-content/themes/salient/nectar/redux-framework/Gruntfile.js',0,'/NNssÃ0!Љ','/NNssÃ0!Љ','A(\nbPyw]9O','',0,'?'),('}q}&%ںP','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/media/media.js',0,'߲v~b{Qkz','߲v~b{Qkz','Glmw%dA,vn6L[Mr=','',0,'?'),('u#\nՕ9ݢB.','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/media/media.min.js',0,'Ϻd\\vUdgXn','Ϻd\\vUdgXn',':\Z\"/\"5	z.]2>G!','',0,'?'),('\nND*','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/redux.js',0,'̼cleѥZB<W','̼cleѥZB<W','PE\r<2pv\n뜨a *7!s','',0,'?'),('\Z~i;jCp0','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/redux.min.js',0,'e\"3I','e\"3I','Me_bW\\=U\Z&CNӘfLس:','',0,'?'),('6	m݉Z$','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/cookie.js',0,'J\'Ff%g(3','J\'Ff%g(3','TGf8yy5SdvB-ެN','',0,'?'),('2(Tu.*d','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/jquery.alphanum.js',0,'v\"\"G⡿OZ','v\"\"G⡿OZ','A@goD#A&{1','',0,'?'),('5g_=Y','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/jquery.serializeForm.js',0,'&ʎqB,\nīA','&ʎqB,\nīA','!0BQYmM]2{c(B','',0,'?'),('AaV\"TQ<lE','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/jquery.typewatch.js',0,'5\\P܂&;','5\\P܂&;','QřљItqfI6`E','',0,'?'),('n+O!U-5?ՊB','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/jsonview.js',0,'5A\r[͂$','5A\r[͂$','wFYsP\'FQ(Rg>y','',0,'?'),('c:8c@͟\\','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/jsonview.min.js',0,'9aD˿9b_xǵ','9aD˿9b_xǵ','#5u:]bQ','',0,'?'),('Z23+n8^5uׅ','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/lte-ie7.js',0,'4YXNoe','4YXNoe','u\rSF?TPF\r\\<\'su\n/zl׍_','',0,'?'),('U/CUw8s6?','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/qtip/jquery.qtip.js',0,'rsaY','rsaY','D:ȍ~L3uo	\0cٯ:','',0,'?'),('&!΅6','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/qtip/jquery.qtip.min.js',0,'ap\n?l0Z','ap\n?l0Z','&h	$\\	.&iE:xK','',0,'?'),('D,BuO5/_5','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/redux.select2.sortable.js',0,'wbzc+i','wbzc+i','^#Jju	爘	','',0,'?'),(')O#?','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/redux.select2.sortable.min.js',0,'J!!*DңIU&Q','J!!*DңIU&Q','IR^{5>\ngd]X$\\oE','',0,'?'),('9Mga?a{','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/spectrum/redux-spectrum.js',0,'S|,\'	s$Y;','S|,\'	s$Y;','AUR!U*p_rfFI\0)u+','',0,'?'),('N]%ά\r','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/spectrum/redux-spectrum.min.js',0,'cP!-F`\\','cP!-F`\\','CPv9&}q~)]g)c','',0,'?'),('Ai\nO]tAg8Q','wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor.min.js',0,'+8#','+8#','?\rm8j\'	4ĝ\nX4}\0','',0,'?'),('þfdSh','wp-content/themes/salient/nectar/redux-framework/ReduxCore/core/dashboard.php',0,'N5o_}C','N5o_}C','a(:\0f4E5?~rW>+XM9','',0,'?'),('k\nh3w-w2','wp-content/themes/salient/nectar/redux-framework/ReduxCore/core/enqueue.php',0,'=O)4U\"@R','=O)4U\"@R','$6}$\n\Z)&\0tm(V$f|','',0,'?'),('$	Ay,nB@','wp-content/themes/salient/nectar/redux-framework/ReduxCore/core/newsflash.php',0,'WR','WR','[ \"x[hWe(e2W3','',0,'?'),('7*3.>ݷŋ9','wp-content/themes/salient/nectar/redux-framework/ReduxCore/core/panel.php',0,'엯sjd_x%V','엯sjd_x%V','4.ϜpeZnH<d=0JO8?','',0,'?'),('X0Ӊy','wp-content/themes/salient/nectar/redux-framework/ReduxCore/core/required.php',0,'HӮpay-','HӮpay-','0d3\0ܘp	A;⚀NGG','',0,'?'),('Lm?U{k','wp-content/themes/salient/nectar/redux-framework/ReduxCore/framework.php',0,'}DP$d','}DP$d','\"ϗG7ոzvW\0n+\nۇ[','',0,'?'),('\r\\n>[\n|M','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/browser.php',0,'=n y(Y','=n y(Y','8odA|5&_l\ZCs2%^#','',0,'?'),(':Ih$L','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.p.php',0,'ubj9yOr=','ubj9yOr=','%O+e7ȿ|~䊝[8','',0,'?'),('p&>Tq','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.redux_admin_notices.php',0,'ޣY5fX','ޣY5fX','S8<?=S*<R}j2˪y','',0,'?'),('n<VWԊ','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.redux_api.php',0,'ڿcaN}[rb','ڿcaN}[rb','49~ve4>辪WAH7','',0,'?'),('7A.yλ\Zq','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.redux_cdn.php',0,'.sCѵmw!','.sCѵmw!','G4ÉnꚱlX:6r~','',0,'?'),('\nM]V\'`E]5)','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.redux_filesystem.php',0,'Zws','Zws','rmµ _ݒuEm3ǎ\\]','',0,'?'),('\\9CB\0_6','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.redux_functions.php',0,'4kKGM2J','4kKGM2J','-Ƣ7:S6ʓ)M;.ZH','',0,'?'),('.i.8p=B','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.redux_helpers.php',0,'~\\aecQW','~\\aecQW',':pvsHWib_?j','',0,'?'),('B;i?[ԾK','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.redux_instances.php',0,'䊪X-PE','䊪X-PE','2F5^OX*{*ֱu=cM','',0,'?'),('ZGuk\0@','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/extension_customizer.js',0,'c8К','c8К','|4,e0:T@6+aK k','',0,'?'),('+YȮmygSE','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/extension_customizer.min.js',0,'d)hfi98+','d)hfi98+','b<DGm$,l|lI{L','',0,'?'),('~, o_)ƅ','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/extension_customizer.php',0,'TS3:-|r/','TS3:-|r/','ڊaN@vM	LȥM8N8Ǧ','',0,'?'),('[Da4l','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/inc/customizer_control.php',0,'-1Ц(\"(Af:','-1Ц(\"(Af:','b&^!5(\"S\rȗ#-?~1-e_','',0,'?'),('akR׍8k{','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/inc/customizer_devs.php',0,'`3q]o!\'uE','`3q]o!\'uE','Y$l1VC]G?S\'嬾v','',0,'?'),('\rAe=','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/inc/customizer_fields.php',0,'>J]Ҙpk','>J]Ҙpk','Ԇƴ`Y1pmk\rڇ㣛\n	','',0,'?'),('\\M&8r','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/inc/customizer_panel.php',0,'ű*~AyF ','ű*~AyF ','w	:O\"@ Jy\rd{hT8','',0,'?'),('FPJ3bÙ','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/inc/customizer_section.php',0,',as',',as','^b#QݬP/e\nvY@y%(','',0,'?'),('7iynkDf','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/import_export/extension_import_export.php',0,')DJyjL+',')DJyjL+','L^\\JVLݮ/','',0,'?'),('eFwM','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/import_export/import_export/field_import_export.js',0,'_t\n߲c[o','_t\n߲c[o','DsttuCx{뷃VB;[','',0,'?'),('-$.P،','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/import_export/import_export/field_import_export.min.js',0,'XOA3TBV','XOA3TBV','(́ǃv{Os7oaDYWV)Y`','',0,'?'),('5Pֻ	o	(','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/import_export/import_export/field_import_export.php',0,'s>?Y`ʔ','s>?Y`ʔ','Rޢ~3A2\0`v>)!e','',0,'?'),(' \"/S>OP','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/options_object/extension_options_object.php',0,'iB8XȆ6','iB8XȆ6','H|_^>aΉWP]','',0,'?'),('-dG!؁&N.','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/options_object/options_object/field_options_object.js',0,'|(-;S0','|(-;S0','?HA=<}0_^UèW|\\','',0,'?'),('&M ۡ^;','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/options_object/options_object/field_options_object.min.js',0,'U9#pt?','U9#pt?','<V<$D\n1yf#Et^\Z}','',0,'?'),('**sQ8~?q/','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/options_object/options_object/field_options_object.php',0,'Hven*塚:-','Hven*塚:-','}2blldo5\Z<+i{','',0,'?'),('H0*J\nq','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/ace_editor/field_ace_editor.js',0,'{nD=QO','{nD=QO','qM38&I^-:$	{','',0,'?'),('oDîx','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/ace_editor/field_ace_editor.min.js',0,')q!s>',')q!s>','C>;9{q\Zv{C!T5>OJ','',0,'?'),('M-a4\"$v','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/ace_editor/field_ace_editor.php',0,'vhW4!','vhW4!','I4:\"7eLv%K','',0,'?'),('Tw׺g@^3f','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/add_remove/field_add_remove.js',0,'OĻs','OĻs','#`oٓݦ$ψ3,T{H,2aZ','',0,'?'),('r32 vV','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/add_remove/field_add_remove.php',0,'.`0\\3','.`0\\3','ҋ`[ỈGP+Intpj','',0,'?'),('+ߗ֛6n)\"','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/background/field_background.js',0,'}#_,|P','}#_,|P','Րh޻Z?p\"8H{)5o','',0,'?'),('kL=Iw9ζ	b','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/background/field_background.min.js',0,' i4:d',' i4:d','\"Z5Vq yOF?J	_d%/|','',0,'?'),('0 /RؾlI','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/background/field_background.php',0,'(APvg\Zy','(APvg\Zy','NlSUF㯑C!}i2s㒴','',0,'?'),('&x&&\\c$i','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/border/field_border.js',0,'9U\"hkMs@','9U\"hkMs@','gnkqf;GCˣ[tg%','',0,'?'),('tJPf`\0q< \'','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/border/field_border.min.js',0,'Ëno<Ri\'2','Ëno<Ri\'2','^*roP_8LvƆjvtD7**Y','',0,'?'),('ו<`>:s鴣6','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/border/field_border.php',0,'>>nP8cru','>>nP8cru','9g=s\Z_624iע`|e','',0,'?'),('E[D','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/button_set/field_button_set.js',0,',peba\"l',',peba\"l','Y5KV\'}\\[mZőqS[','',0,'?'),('~qj=(','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/button_set/field_button_set.min.js',0,'s&;<y','s&;<y','?jc&9~xjMʻt\Z','',0,'?'),('h*\"Alt','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/button_set/field_button_set.php',0,'\nm`%v\0d>','\nm`%v\0d>','Jσ\ZXG/dD*/i7','',0,'?'),('Yd冄Amq','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/checkbox/field_checkbox.js',0,' `!UH&_',' `!UH&_','Y,s?w\\j8Z6TK}','',0,'?'),('f<?ҫso25s;3','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/checkbox/field_checkbox.min.js',0,'^B8ZM','^B8ZM','h7eV0B$MȺ	*3dIu','',0,'?'),('Ñ	%XO','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/checkbox/field_checkbox.php',0,'=\rދ]','=\rދ]',')\Z^8cXn5PKۘGEڇ9','',0,'?'),('0#Sj:0','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color/field_color.js',0,'Q+Lɏr','Q+Lɏr','SE>w:i\'݄dc}7@Թ','',0,'?'),('o4\nZ,-U','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color/field_color.min.js',0,'wE2','wE2',';Z2rZpzY$_±,WWw{qt\Z','',0,'?'),('1Ef	','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color/field_color.php',0,'V&2aI|xKz}','V&2aI|xKz}','E2:F;-,U[lYjf','',0,'?'),('%pl4xO','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color_gradient/field_color_gradient.js',0,'\"d8 0GB ','\"d8 0GB ','>|N,4_%Qu\\];1ר','',0,'?'),('G읷N3V','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color_gradient/field_color_gradient.min.js',0,'_&`N','_&`N','V}u,\Z犥\r>ƸnJuzJU','',0,'?'),(':B','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color_gradient/field_color_gradient.php',0,'U)-Ԃo_*','U)-Ԃo_*','!wè8UP\\,o?|(I\0x','',0,'?'),('͢h·Ho','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color_rgba/field_color_rgba.js',0,'PĘ+r','PĘ+r','Sràu%T&xe.>W*!','',0,'?'),('r_a\ns*\"','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color_rgba/field_color_rgba.min.js',0,'Qupx6f5d ','Qupx6f5d ','~hsG%*@Q\r','',0,'?'),('	vt\\`dQ','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color_rgba/field_color_rgba.php',0,'֋\r]4Vd\ncn','֋\r]4Vd\ncn','kuP?>Wt(0.R]~','',0,'?'),('\'Yt_KȪd','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/date/field_date.js',0,'0_ͻCS;!%h','0_ͻCS;!%h','651q]R7\0񳸄1','',0,'?'),('W&S_TW ʯ','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/date/field_date.min.js',0,'᫽u2U','᫽u2U','Gsⱛ<x:\n\'!ّO\0','',0,'?'),('Zp7b?9/','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/date/field_date.php',0,'B7\0VA8\'','B7\0VA8\'','-p70)2lpDaܛyq','',0,'?'),('$=!T~9','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/dimensions/field_dimensions.js',0,'Rn-k~t@%','Rn-k~t@%','M}}kQ84LKۢGD2','',0,'?'),('3s+doCY#;','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/dimensions/field_dimensions.min.js',0,'9]		e','9]		e','<\rr\n\ZPoΘ̇)1Iz','',0,'?'),('=l/','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/dimensions/field_dimensions.php',0,',?]Efѿ1',',?]Efѿ1','vv}nV|խ*y~','',0,'?'),('E:){A8SjFd','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/divide/field_divide.php',0,'nqS9p','nqS9p','_Ut*!Ϡvm2u׆^@+r','',0,'?'),('\ZLyxM','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/editor/field_editor.js',0,'(2Å|Ngg\nW','(2Å|Ngg\nW','uj	>lі==y\"','',0,'?'),('v?I','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/editor/field_editor.min.js',0,'lGI:]i','lGI:]i','!@K:X\r>A9}-','',0,'?'),('\"ebۘmJy','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/editor/field_editor.php',0,'_0TN','_0TN','	[E=\nٚXqmRzJ','',0,'?'),('\0RXҩ2}X','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/editor/field_editor_c.php',0,'ُ\0	B~','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('JWm','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/gallery/field_gallery.js',0,'2Pv(\\PcҞa','2Pv(\\PcҞa','g\n~=O5ܕ+3/)9)+','',0,'?'),('\'%nژ9','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/gallery/field_gallery.min.js',0,'9Qch-0T','9Qch-0T','3\n.cvg5A_am','',0,'?'),('/hAuuttDu','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/gallery/field_gallery.php',0,'㴍XpYbG','㴍XpYbG','RvW*ή	9,wLw7̈́','',0,'?'),('X:=sU1','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/image_select/field_image_select.js',0,'KrV5d:|','KrV5d:|','<էp#dLz\r[dV?','',0,'?'),('2lpR\n)A#','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/image_select/field_image_select.min.js',0,'p(EdzV8','p(EdzV8','wC@3wB7+zں\n\0v*>','',0,'?'),('y{M(468>H\Z','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/image_select/field_image_select.php',0,'N_:XMg:6[y','N_:XMg:6[y','b8c=ͪp;-܈\0T','',0,'?'),('r&Et*T','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/info/field_info.php',0,'\\XRV[','\\XRV[','UYQZ$S3+i~;	~','',0,'?'),('Y5=:qKJI','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/link_color/field_link_color.js',0,'{y2T{z','{y2T{z','D@W%튔3zVQLwo%Ύp&','',0,'?'),('0]T2cϕ9}','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/link_color/field_link_color.min.js',0,':6P̆',':6P̆','5N|%-ZJ`DԖi`b','',0,'?'),('T/*','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/link_color/field_link_color.php',0,'X`;\'@|f','X`;\'@|f','7g6Ҟ04j!{d/&[)\0I','',0,'?'),('\nѰYR,[5gY','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/media/field_media.php',0,'zAҒpzףG','zAҒpzףG','3ƣ-\r(LbjNiI>|$TDz','',0,'?'),('AbF:Dv|t','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/multi_text/field_multi_text.js',0,'/:7cjܞ','/:7cjܞ','\'ժ3\",<\\s {}Фs\r','',0,'?'),('ޤOfPg','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/multi_text/field_multi_text.min.js',0,'gm{Zrt{','gm{Zrt{','tR:56#*)9f.2҆','',0,'?'),('YzZ^6s!','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/multi_text/field_multi_text.php',0,'ȳiH9k|)<n','ȳiH9k|)<n','`m] [	%g}T\n','',0,'?'),('z@),','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/palette/field_palette.js',0,'r$|O+k','r$|O+k','2}&tl4\':u}4Z$+qa9','',0,'?'),('6/vF*sHr','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/palette/field_palette.min.js',0,'6В3pG{','6В3pG{','ʛ j$b{SC2#o%','',0,'?'),('o@79{̊|pv','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/palette/field_palette.php',0,'.)i02%w>','.)i02%w>','`wA2Yh_	gG','',0,'?'),('Th\Z!Y','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/password/field_password.php',0,'pb=U\ryq;3','pb=U\ryq;3',';AZ(pq\'s=ow?DO	/o]','',0,'?'),('PBJzfNe20n\06','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/radio/field_radio.php',0,'DtUQ֐\r`d','DtUQ֐\r`d','Ydu*f0؎B )̞Y;\0','',0,'?'),('3&`CR(S','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/raw/field_raw.php',0,'&D]d#{ҋ','&D]d#{ҋ','Tݹ\0Қi8lWW	kpZ,=iayL','',0,'?'),('\r(@;;L;','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/raw/parsedown.php',0,'Fhܯ\n0`','Fhܯ\n0`','֝jX67wCM>&v','',0,'?'),('2TWi<j','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/section/field_section.php',0,'5XXQ]P','5XXQ]P',';[˖eR6n','',0,'?'),('GTՋhs[L_','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/select/elusive-icons.php',0,'ڠ<VhID ]d','ڠ<VhID ]d','u(o	P3MT:ra7','',0,'?'),('jXP53ePy9','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/select/field_select.js',0,'+C-\0Fd	','+C-\0Fd	','¬Hޣẗ́+]CEMc','',0,'?'),('\r<\0v#y','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/select/field_select.min.js',0,'U	*1#ȃ^\n','U	*1#ȃ^\n','Wf=Xa|U*L6x~E','',0,'?'),('O2 qw!$\"','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/select/field_select.php',0,'|I=mVdW','|I=mVdW','>Rm[tp賊H;%Ym','',0,'?'),('%14-\"Isb','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/select_image/field_select_image.js',0,'œ\'t\rhYng','œ\'t\rhYng','H[A1\Zu?֌׽Ԏa>H','',0,'?'),('y9Ǣ%[)jywC','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/select_image/field_select_image.min.js',0,'TT{<4&','TT{<4&','=`jSxalA72fS','',0,'?'),('Y{@Up1ex','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/select_image/field_select_image.php',0,'2MP(M\Z','2MP(M\Z','8C\\Z.WڎvT.ɝm-','',0,'?'),('jqVB.ͅu~둱H','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slider/field_slider.js',0,'{L5>PCQP|','{L5>PCQP|','Kꣻr+ᶪcJIi8G','',0,'?'),('o眏l2wP','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slider/field_slider.min.js',0,'T1$=-gMor','T1$=-gMor','\\;]Tʍ︊\"9ܱ37=','',0,'?'),('I1IG','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slider/field_slider.php',0,'!\0vT>&Q','!\0vT>&Q','hd%Rr2+R~:+CZ','',0,'?'),('w߆,Tvﴯxvi','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slider/vendor/nouislider/redux.jquery.nouislider.js',0,'䷂/71K1','䷂/71K1','9T+Б5YL\0-ОedtFѨ>ة_','',0,'?'),('\\_j&Hͯ','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slider/vendor/nouislider/redux.jquery.nouislider.min.js',0,'E1fP!-','E1fP!-','IJAWA0}-2_}פffI_%','',0,'?'),('n\088/i23}','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slides/field_slides.js',0,'	/ǟ!)','	/ǟ!)','#<h3\0k[Rˠ~h','',0,'?'),('kvt)eZlF<','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slides/field_slides.min.js',0,'._[FV','._[FV','q݃.\ryR7Ԫ[	5RHر\ncC,/h','',0,'?'),('MFHFvd','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slides/field_slides.php',0,'xEP,):>y)تv','xEP,):>y)تv',')AF\'twh1zIzGڷ䗁B\"','',0,'?'),('%$K4f44}','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/sortable/field_sortable.js',0,'R9kY{0ws&Q','R9kY{0ws&Q','X0\\P:s}-XvR!tS\n','',0,'?'),('qH~g֒','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/sortable/field_sortable.min.js',0,'UҴR0tf','UҴR0tf','s)؄{+](iRWV@\0','',0,'?'),('ꨊׂ|w','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/sortable/field_sortable.php',0,'HyfDLԺ','HyfDLԺ','l@Cou{BhBTP=1','',0,'?'),('AWi	\Z*Qo;','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/sorter/field_sorter.js',0,'0A(3f','0A(3f','HHÔȡ3V3>׏1nońtb','',0,'?'),('$wr̿Ӧ','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/sorter/field_sorter.min.js',0,'g	?X\Z%|T5eB','g	?X\Z%|T5eB','쫤iĔuÈc^gkM','',0,'?'),('sNZז<,','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/sorter/field_sorter.php',0,'tOKv}o','tOKv}o','@FxظFxXA%qΔP','',0,'?'),('>瘤\"','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/spacing/field_spacing.js',0,'|vl߶|U2','|vl߶|U2','ӪZLj RxQU=&,','',0,'?'),('g<֥7uH','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/spacing/field_spacing.min.js',0,'p;QK]8X`2t','p;QK]8X`2t','7sB&iǯkإ/v_94`Fu\rU','',0,'?'),('_(IQjIY','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/spacing/field_spacing.php',0,'UK%aRl/ъ','UK%aRl/ъ','r>n:ޝ;	ͳd4Nއ[k','',0,'?'),('`09	\Z%Zi','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/spinner/field_spinner.js',0,'~閒SĢqB','~閒SĢqB','|	,pm\"hѮY$\"g}','',0,'?'),('4]t0-%tB','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/spinner/field_spinner.min.js',0,'3(>m/>B','3(>m/>B','g-\0}aV3y\\jIC','',0,'?'),('H:h{TzIo3͛w5','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/spinner/field_spinner.php',0,'|\rqі܅5r','|\rqі܅5r','\0ktm&-\0_\'qP_=!','',0,'?'),('13	c-','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/spinner/vendor/spinner_custom.js',0,'szxHE','szxHE','^59N8_3Y/R6sbA\rOF','',0,'?'),('G%,/СӋ=h','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/switch/field_switch.js',0,'(hK\"<ɿ_','(hK\"<ɿ_','5*+(Uטw@j_&{q\0','',0,'?'),('Pq4`/]P','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/switch/field_switch.min.js',0,'GUm','GUm','?R.\0!?1Ԑ*:}R7E<','',0,'?'),('uOEt\n4Xx','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/switch/field_switch.php',0,'9WB!Q֢gV','9WB!Q֢gV','\'rG.YwBSADM-߇8','',0,'?'),('%.ڃ)	N>','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/text/field_text.php',0,';$xWAާ\n(',';$xWAާ\n(','=ۓOkNi[;=>SuvX镞','',0,'?'),('&7=P','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/textarea/field_textarea.php',0,'}f1X8adue1','}f1X8adue1','/00[3t@3B7Oh+','',0,'?'),('qԘf;J[xfeY','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/typography/field_typography.js',0,'!Vr^}wǆ','!Vr^}wǆ','(J~ucAHSR$','',0,'?'),('W2w\rnփ!]|','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/typography/field_typography.min.js',0,'2M!I޴?aBŶ1','2M!I޴?aBŶ1','Ehݠǹy	9IH%L+pD','',0,'?'),('Y].PtS','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/typography/field_typography.php',0,'*P$\riR\r97','*P$\riR\r97','DBA.ü\'C/{ H`nO','',0,'?'),('u{ov8;S%','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/typography/googlefonts.php',0,'1C:b ','1C:b ','e02.W5kQL+U','',0,'?'),('ÓK/ʾgṻau','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/upload/field_upload.js',0,'\0-}	:w״P','\0-}	:w״P','&{Ёs*m|֌x]lKGhu(Β','',0,'?'),('[\"Cɦc+\\','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/upload/field_upload.php',0,'xM򾊚','xM򾊚','_+1pbȚLpe(F{W_i@tk>','',0,'?'),(')\'5`	;','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/upload/field_upload_3_4.js',0,'L!+\')\'8d','L!+\')\'8d','\"ˏp\0x]LWWS*Hnqsݘ{W','',0,'?'),('>bS}峬','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/upload/gallery.js',0,'kЖ\nKNeD','kЖ\nKNeD','&h0ɼ˽h\'D:\ru','',0,'?'),('ƶ7;ZCk','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/lib.redux_instances.php',0,'\"a\"I}/','\"a\"I}/','y\nK\Z&.m\rG4','',0,'?'),('|,\' ,CG','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/themecheck/checks/embedded.php',0,'V7Nř','V7Nř',';}8fmjad>NVYchPo','',0,'?'),('_Tx%CUأ','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/themecheck/checks/full_package.php',0,'Zi\0','Zi\0','J=\\ܒ`8UoTg%61+$[','',0,'?'),('Br6TP~R#g','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/themecheck/checks/index.php',0,'i=\0!\\','i=\0!\\','Aũ`97}b>MHJHh|Fj','',0,'?'),('\06X2\04','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/themecheck/class.redux_themecheck.php',0,'2l6Y\Z~F','2l6Y\Z~F','$R6x\nԺuPS*KWOS','',0,'?'),('Jq۷e3:cw','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/themecheck/index.php',0,'i=\0!\\','i=\0!\\','Aũ`97}b>MHJHh|Fj','',0,'?'),('Q(,)_\rM$','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/themecheck/js/admin.js',0,'6}ׄ;','6}ׄ;','7+nb]hc%cfQ','',0,'?'),('ZO\"F!U','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/themecheck/lang/index.php',0,'i=\0!\\','i=\0!\\','Aũ`97}b>MHJHh|Fj','',0,'?'),('yY\nH)','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/tracking.php',0,'\r\n8)X̸','\r\n8)X̸',' #\roVS38dρ3ln','',0,'?'),('u\'+q\0i1','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/color/validation_color.php',0,'c]665','c]665','|m[Jl(s{ޛ\'Dڶv','',0,'?'),('=sGS\r','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/color_rgba/validation_color_rgba.php',0,'	%>H\rE','	%>H\rE','va\rX))Xs笚{8lA\n','',0,'?'),('~0]_%CF','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/colorrgba/validation_colorrgba.php',0,'Y}	','Y}	','6,QR`-͠\"l5u7Uj>^','',0,'?'),('6Eɔa+;\"','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/comma_numeric/validation_comma_numeric.php',0,'ctZ>7T0ey','ctZ>7T0ey','0	[\r@|1TR-~Ib;\r','',0,'?'),('dȲ\Zug!p#M','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/css/validation_css.php',0,'ik7','ik7','DOG?	dCt\n','',0,'?'),('v˾8p.p3m','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/date/validation_date.php',0,'mw)dJ$f=O','mw)dJ$f=O',';>a%q|M\"UPnEqz}ؘ','',0,'?'),('THc\n\Z&','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/email/validation_email.php',0,'Pfݽfo\Z(i','Pfݽfo\Z(i','zO\Zߺ$l^.*\0Yi)^{ag','',0,'?'),('c9kᔁ{>.','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/email_not_empty/validation_email_not_empty.php',0,'=NR	*','=NR	*','\0y44,ץk2{Y\'V','',0,'?'),('3\\м\Z69W$tY','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/html/validation_html.php',0,'W=#?@c̈0','W=#?@c̈0','fhp2DdlQdҮ8aV y/H','',0,'?'),('a7r','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/html_custom/validation_html_custom.php',0,'wB	(S1`gu','wB	(S1`gu','fYVLO 1c[=^','',0,'?'),('jZ??ů4','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/js/validation_js.php',0,'-.^j\\tAt4F','-.^j\\tAt4F','YvW7,Mw3ӉhuZ','',0,'?'),('=f\'DBty','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/no_html/validation_no_html.php',0,'Hk(hR','Hk(hR','Ȅb⋡(teEQBb|fzo','',0,'?'),('\\V{kng0','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/no_special_chars/validation_no_special_chars.php',0,'ud]pG','ud]pG',':G+Jd1;@g,Mx\"#[','',0,'?'),('QudM0WR','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/not_empty/validation_not_empty.php',0,'`Ibaܙ۞0z]RO','`Ibaܙ۞0z]RO','2h[RM1&kV=WpX\\Y','',0,'?'),('HvOf0','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/numeric/validation_numeric.php',0,'oTsM땲9n','oTsM땲9n','i)\'VDY^1?A\Zao@oF','',0,'?'),('I@pAo\nJB<P','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/numeric_not_empty/validation_numeric_not_empty.php',0,'`f]fvn͜Ic̠','`f]fvn͜Ic̠','&dkT,d^fʡU$o\Zb','',0,'?'),(':bAR,^5','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/preg_replace/validation_preg_replace.php',0,'r?ͽp','r?ͽp','G \03öWh\nCn\\E\'!<','',0,'?'),('fP}^]q\Z(f','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/str_replace/validation_str_replace.php',0,'Wf/ǱFJ','Wf/ǱFJ','fj$u\\%77H)D`','',0,'?'),('J]R%s{MP','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/unique_slug/validation_unique_slug.php',0,'Cגb,\r8\"wJ\0K','Cגb,\r8\"wJ\0K','\0Ḗ~x5]bvDfSeh','',0,'?'),('~H4ȿ*vm','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/url/validation_url.php',0,'r-@n7hR','r-@n7hR','dx<\ZHE{+sݬ+\Z(','',0,'?'),('`Fs]3	[r|+','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/js/jquery.easing.min.js',0,'~T&1^b9Ҁ','~T&1^b9Ҁ','cijOlH$P`sƼWN{8','',0,'?'),(';9Z}߫df','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/js/redux-welcome-admin.js',0,'&\nؘ','&\nؘ','N\'af,_LoڌxTo!','',0,'?'),('?+SKf@\\`X','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/views/about.php',0,'],Bpxu','],Bpxu','ҵ&;݆	Ԋd$i?%','',0,'?'),('k[B=!\rMhO[','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/views/changelog.php',0,'a܉\'h','a܉\'h','wgYׁ͓hCgz[','',0,'?'),('H\0]M','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/views/credits.php',0,'U3l]p','U3l]p','\0Edk1	ݤxQH(2^2@\0','',0,'?'),('e7|o\0y','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/views/extensions.php',0,'@F}&KB\\\'Td','@F}&KB\\\'Td','v:Zkth=z gI윆','',0,'?'),('PZ{FxTlǏ22','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/views/status_report.php',0,'E6vBe}j','E6vBe}j','V̇bWxs7ZQ#1NwCP`5','',0,'?'),('р淤2','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/views/support.php',0,')幟iM',')幟iM','j\\#3,l`(IǓRb{*','',0,'?'),('#*\'0z','wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/welcome.php',0,'`:e:	X','`:e:	X','Ꜹm(q34;N*m7>','',0,'?'),('m@T7-\n,Lo','wp-content/themes/salient/nectar/redux-framework/ReduxCore/templates/panel/container.tpl.php',0,'62p}&','62p}&','\\6\\&9!\rHKui<+','',0,'?'),('IWd','wp-content/themes/salient/nectar/redux-framework/ReduxCore/templates/panel/content.tpl.php',0,'g4\Zma(','g4\Zma(',':}<\'|kS>%rJ','',0,'?'),('jZjׂd\nh!Y','wp-content/themes/salient/nectar/redux-framework/ReduxCore/templates/panel/footer.tpl.php',0,'\"a/q{d6ii','\"a/q{d6ii','aBCsd|ѥK~m9','',0,'?'),('U@9jfx\\tZ','wp-content/themes/salient/nectar/redux-framework/ReduxCore/templates/panel/header.tpl.php',0,'\ruԝz^Z','\ruԝz^Z','P#pFsZZ,UNKNϱS\\','',0,'?'),('/.t\0jC','wp-content/themes/salient/nectar/redux-framework/ReduxCore/templates/panel/header_stickybar.tpl.php',0,'3܉XyjB9%','3܉XyjB9%','}onHI]!`\'oNLYfI','',0,'?'),('IXH|fέ9rN-','wp-content/themes/salient/nectar/redux-framework/ReduxCore/templates/panel/menu_container.tpl.php',0,'CaiY[@A\'','CaiY[@A\'','{Vz]dIjKMȐǧٳZC','',0,'?'),('rg(\\i','wp-content/themes/salient/nectar/redux-framework/class.redux-plugin.php',0,'/źqILNI(4F','/źqILNI(4F','8^Tq^20kyxON','',0,'?'),('EwlJ΁ab','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/class.vendor-url.php',0,'5\\,SSßJ0','5\\,SSßJ0','JQ,X0D;Kw\"n;W0','',0,'?'),('Og6i\r|','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/extension_vendor_support.php',0,'EM]5','EM]5','[^)\\I7̜(Γ	','',0,'?'),('C{f4ZfGL','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/ace.js',0,'v#Éh\Z','v#Éh\Z','_XjޚrM+B&C{N9Μ','',0,'?'),('J[.$','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/ext-emmet.js',0,'	Q\n%Q}X\rՌ','	Q\n%Q}X\rՌ','*\'\'4֬w)ׄ (Ak8.-#','',0,'?'),('4\'I}CiWpp6w','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/ext-searchbox.js',0,'͞w	>8','͞w	>8','5D\r@ڜҫ|d\03','',0,'?'),('O7J\'x}','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-css.js',0,'JJ%d*0[','JJ%d*0[','oLE 3~cQPF1\\1O3','',0,'?'),('QbTW>#','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-html.js',0,'IcS`]$׸M','IcS`]$׸M','69O@B+eN_R̓','',0,'?'),('._o2?','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-javascript.js',0,'t֧9&g:G','t֧9&g:G','!\niٔy/옸+>*','',0,'?'),('ɮ&\0 R\"P','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-json.js',0,'hJdH~','hJdH~','n~ĜIF*~q9=d','',0,'?'),('9w&kkXR','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-less.js',0,'eE~:.1]3','eE~:.1]3','|dNԝFEśNǣ|酻<','',0,'?'),('fXXs^F^\r','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-markdown.js',0,'3*5=dg5','3*5=dg5','\rL|z	Q\n%BۏTb|','',0,'?'),('t8','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-mysql.js',0,'oQCr< &ĺ','oQCr< &ĺ','g!9k3۽vOZyU*	z','',0,'?'),(']\n	sͤ\'','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-php.js',0,'5==@lNU3@','5==@lNU3@','葈`:@Gk$4VxH*D','',0,'?'),(')Ɖ3& ?	\nZ','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-plain_text.js',0,'0~FEa}\Z@hag\'','0~FEa}\Z@hag\'','4AL#Cj]Hh','',0,'?'),('#.X51̿','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-sass.js',0,'헮aK#]H(M','헮aK#]H(M','H:.{X$P`0KWĚ\'%;','',0,'?'),('ʥnᤆձc2d{','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-scss.js',0,'_1F.J/gW','_1F.J/gW','\rZW\0+GI	y\ZmS\\(O[','',0,'?'),('/7\'ۅgGf','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-text.js',0,'ُ\0	B~','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('ecʱ>٢DC','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-xml.js',0,'J!\r%qU=w/{','J!\r%qU=w/{','غxS4{_wY-\Z_Uf$d','',0,'?'),('Fb2B舘','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/css.js',0,'0llx\Z:$j8','0llx\Z:$j8','})EŰ|ڲ@mr_','',0,'?'),('beGc{񺪇G','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/html.js',0,'\Z\0 n2$','\Z\0 n2$','g8D	n\\ʟ\ZH','',0,'?'),('r1 u%\n{','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/javascript.js',0,'Z:^vak^','Z:^vak^','o^r	ĻgOJ7>U','',0,'?'),('\0\'xQSY\n','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/json.js',0,'/KT_ъ\'5H','/KT_ъ\'5H','@@q`/2;<}2I\0j`','',0,'?'),('͏֏;&mL','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/less.js',0,'{֐?`BT','{֐?`BT','QSM\Z<ɣ1㗝*1:P','',0,'?'),('{H^htJb4','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/markdown.js',0,'?}}yFt%D','?}}yFt%D','!Cћ)ӕ$9vvqlSݾfi[,','',0,'?'),('Qad<8g','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/mysql.js',0,'*vGC@8','*vGC@8','mثT+u{	E]V/!7b.8,','',0,'?'),('eL K\0i-','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/php.js',0,'.Grrg','.Grrg','gz߃S/A:|q;r8A2$	,wA','',0,'?'),('<Z^?H* <@π ','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/plain_text.js',0,'\r{ÇFJy1	[','\r{ÇFJy1	[','KNom\n|!7_T:`tS','',0,'?'),('$7cmBغ<RU','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/sass.js',0,'%ufک\0','%ufک\0','&Stݼ,o}󎾸QH-','',0,'?'),('gL|\"/\Z','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/scss.js',0,'E\n^$\Z>Q','E\n^$\Z>Q','wYmᒒv@*9\0BÃy]tA,','',0,'?'),('LQZ:?I	','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/text.js',0,'mlRXw\rh|{2','mlRXw\rh|{2','sAё 1cxqW[+C4|','',0,'?'),('[|v*\')\Zb','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/xml.js',0,'zZDԕrN8ar','zZDԕrN8ar','f1]\Z@5`;0yZ^g\"	','',0,'?'),('^\0\Zφ','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/theme-chrome.js',0,'U \0g[㵍','U \0g[㵍','>+_qk[eGg\\^5<Cr ','',0,'?'),('g8j]Fx','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/theme-monokai.js',0,'\"[feJ','\"[feJ','p}+٤7F8dc9:','',0,'?'),('נ)]\'].\\B','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/worker-css.js',0,']qѭqASzߜ',']qѭqASzߜ','D^ps\Z7c˔EcP`','',0,'?'),('SRsxur/','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/worker-javascript.js',0,'̓\"2(-\nX','̓\"2(-\nX','ɲp#<`Gq|AA|]t|4eF.v','',0,'?'),('R\r;p9\\қ','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/worker-json.js',0,'E/G5wܡBIL','E/G5wܡBIL','<THN\"{@d>[y,Ψ?P','',0,'?'),('wA%Q@8i,]S','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/worker-php.js',0,'L6nS0yp','L6nS0yp','YK]+ɞraQ\'-z{','',0,'?'),('MpLt5W^b','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2.js',0,'7@','7@','$,H±4MnH0D2q9oJ[H','',0,'?'),('˝iWy','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2.min.js',0,'C&ҏ2TE1?','C&ҏ2TE1?','gFM4\nF_0\ZG2A\ZA','',0,'?'),('X/7\rST','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ar.js',0,'6{w<(','6{w<(','qQs^Xj\n=#rC','',0,'?'),('znaulw\\\ZU','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_az.js',0,'aWk\Zy:26','aWk\Zy:26','1\'V1vTW??v`2qhX','',0,'?'),('\0Me5GV','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_bg.js',0,'$L*v=u(QB','$L*v=u(QB','ZքM9]P:їceI(S','',0,'?'),('ؽ#RQ|r','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ca.js',0,'W\'H4ND','W\'H4ND','\n}O wWn2uI$Tv\\&鵭%','',0,'?'),(' #SL+j','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_cs.js',0,'-oa>e','-oa>e','pA9Ho~zMYL\\y','',0,'?'),('SlŐy8p','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_da.js',0,'7G!:P_(F}','7G!:P_(F}','˟8戰rLX!P$e_DB','',0,'?'),('VPh\ZcN@','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_de.js',0,':KxgBGx',':KxgBGx','|jDV+hkgvY@kH >','',0,'?'),(')yPس%','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_el.js',0,'O&fq\\t','O&fq\\t','%Brʿ>bǨ86AwX;k|','',0,'?'),('3u7{~,','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_es.js',0,'_	nww`','_	nww`','Lzڍ|ZI7w','',0,'?'),('{Z','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_et.js',0,'c)Z2PZ','c)Z2PZ','b!WW ]ұ\n`m\ZֺSK','',0,'?'),('ؤރ%kw','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_eu.js',0,'|<L\nT4F},U','|<L\nT4F},U','7:JԱaL[}w[','',0,'?'),('pʡ:zg 9','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_fa.js',0,'\n6>(i~;','\n6>(i~;','III{=\"@0)1;','',0,'?'),(',3\rmB','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_fi.js',0,'ݞ֑ikZ','ݞ֑ikZ','ȭE`@\':\0ovˡQW`','',0,'?'),('ԛsBBPF	c','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_fr.js',0,'񰅯\n?Uz	+','񰅯\n?Uz	+','6ao`v[s\0APee^','',0,'?'),('|6̆R$e`?w','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_gl.js',0,'\0{Χb=qk','\0{Χb=qk','3JZ{i@+l*ΔAXН\nc','',0,'?'),('@Oߤ>','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_he.js',0,'(\\J_Ѐ','(\\J_Ѐ','-q(GeDσNߧ[W=','',0,'?'),('f![ʬ','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_hr.js',0,'{oL1ϭ,]\n','{oL1ϭ,]\n','NMރBt[fB\"g\r0-?c!Clr','',0,'?'),('hqE1U2뱪p','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_hu.js',0,'\ZsCo>-p','\ZsCo>-p','K\'2&%23cLp\'W)','',0,'?'),('e>lKd`','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_id.js',0,'2f>3< s]','2f>3< s]','<r,hV\r{7`tWc;r J','',0,'?'),('a\0\rN8H%','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_is.js',0,'-*DVF;','-*DVF;','Zn;֌&])\0{wSoZBʌ[+Q)','',0,'?'),('\"\' .)','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_it.js',0,'ENF1\r3Reߢ','ENF1\r3Reߢ','}M(܍*=\n_MkDN','',0,'?'),('v5Ie.s6','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ja.js',0,'\Z	N','\Z	N','6܄M<[AU@.Rt.<d|E','',0,'?'),('ËӈT z','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ka.js',0,'xUcm|_n','xUcm|_n','gjv[y(Guf{>KJXhx','',0,'?'),('^`Zu A6','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ko.js',0,'ݨY(* jj/','ݨY(* jj/','*YP4M`.{=pV;WdW','',0,'?'),('^(]KM\\','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_lt.js',0,'xQ(#Ƣ','xQ(#Ƣ','htwh+r׭CESU=Rr?','',0,'?'),('*#(/i','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_lv.js',0,'\n$8rkuQ2','\n$8rkuQ2','sA [iQvό.7ɒcޖ]*D','',0,'?'),('ڍGOpq','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_mk.js',0,'w ڇ','w ڇ',';4,E:dN*YΠq^','',0,'?'),('(儬Yƍ[D','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ms.js',0,'k[:7','k[:7',':!r\"qJS}昣0\\fTV','',0,'?'),('dL͟kRTU','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_nb.js',0,'%PV','%PV','}]	W\n*5Sx ax:7l','',0,'?'),('i(v6\roKҠ\0','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_nl.js',0,'Hp{,e*','Hp{,e*','?:tDw(^','',0,'?'),('l.\'#fc','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_pl.js',0,'<*YC','<*YC','@s{I{,@X','',0,'?'),(':FZnCڵ','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_pt-BR.js',0,'2}H%Bn','2}H%Bn',']߆J27#z{i䢜$sa;t','',0,'?'),('OW>&J	].','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_pt-PT.js',0,'|?FWi4','|?FWi4','3o%$~_^U77','',0,'?'),('rFqpyrcX','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ro.js',0,'s0Yi','s0Yi','pNz3kcU(Lo5d','',0,'?'),('0\'q{)-%','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_rs.js',0,'wbꝢXDt','wbꝢXDt','VVBQ/L@am U/GN1\Z','',0,'?'),('7\r,At','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ru.js',0,'\Z9z','\Z9z','Qi\\eS\\&%e','',0,'?'),('v?ԑl	','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_sk.js',0,'#AS!k,/pd','#AS!k,/pd','d+nl(D\'<G?sew/뺶zp','',0,'?'),('fL;iޜM','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_sv.js',0,'QEl)d4\Zn','QEl)d4\Zn','HpI\'&̻aJ\0A[k','',0,'?'),('RC=ԟS','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_th.js',0,'N&V;8NG}','N&V;8NG}','`~ݣ..*t~_Wd+ It','',0,'?'),('1͂RZ@zq=','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_tr.js',0,'e]Ȑt&!yV','e]Ȑt&!yV','e\ZqM]ۿ-+e5=lI','',0,'?'),('䗶\Z56W_','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ug-CN.js',0,'F}fHb','F}fHb','X;\'6\Z(=1HS@]\n8CV','',0,'?'),(',yPQR*J|','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_uk.js',0,'A 0W#TtwG/','A 0W#TtwG/','8Qÿ% n;0@\ZC֛	','',0,'?'),('\\R:]֟~','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_vi.js',0,'΂ hVlKGPϗ','΂ hVlKGPϗ','f#W%Z6q5m*RQ߾9Y@','',0,'?'),('hhwrH_(F','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_zh-CN.js',0,'SLGTfL','SLGTfL','7$)]/\Z6Êah]XW','',0,'?'),('OZ+S6X=','wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_zh-TW.js',0,'Lł/ MV','Lł/ MV','<;<β^+Z: [x{b','',0,'?'),('NT14y#$.','wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/demo-data/index.php',0,'.a1[F','.a1[F','Aũ`97}b>MHJHh|Fj','',0,'?'),(')?Ge\nN \\^SR','wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/extension_wbc_importer.php',0,'A݄Xb\\[y','A݄Xb\\[y','(h8ۤg@%ۡ(>\0?н','',0,'?'),('E>t}\n	\0REq','wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/inc/importer/index.php',0,'.a1[F','.a1[F','Aũ`97}b>MHJHh|Fj','',0,'?'),(')2(][B\"X.','wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/inc/importer/parsers.php',0,'ND{˅\'-','ND{˅\'-','~dhv+ls03%Vѳ\\:Ś','',0,'?'),('147\Z!q;&bT','wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/inc/importer/radium-importer.php',0,',XlKeh5KE',',XlKeh5KE','SiBhydNz{$QM\rHO4','',0,'?'),('kX2o\n=','wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/inc/importer/wordpress-importer.php',0,']iyA4\n',']iyA4\n','*\ns[iه#jK}.\"1n&$\"','',0,'?'),('t]<P)ip','wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/inc/index.php',0,'.a1[F','.a1[F','Aũ`97}b>MHJHh|Fj','',0,'?'),('hZW?4_','wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/inc/init-installer.php',0,'^ul7PPyq1','^ul7PPyq1',']iŦFH\0\"l}x','',0,'?'),('/=s%lN','wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/index.php',0,'.a1[F','.a1[F','Aũ`97}b>MHJHh|Fj','',0,'?'),('%EW|ll^ޞ','wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/wbc_importer/field_wbc_importer.js',0,'I;b','I;b','Rm8v)4f\n.#F[tcEڑvVP','',0,'?'),('$ Ԑ@;kɃ','wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/wbc_importer/field_wbc_importer.min.js',0,'EiḎɟ`','EiḎɟ`','e?,8`zxVLeQʡS','',0,'?'),('6Zph\\o]q=DD','wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/wbc_importer/field_wbc_importer.php',0,'9c4!X>','9c4!X>','S#_N߫2:-ymϣ','',0,'?'),('LlwJZQ6','wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/wbc_importer/index.php',0,'.a1[F','.a1[F','Aũ`97}b>MHJHh|Fj','',0,'?'),('3MnL(','wp-content/themes/salient/nectar/redux-framework/index.php',0,'-c+,','-c+,','k~	UH\ZxPĀ<;X','',0,'?'),('5[\nsiBTpWv','wp-content/themes/salient/nectar/redux-framework/options-config.php',0,'w0-ˇloާ߂P','w0-ˇloާ߂P','4)}%n5o[x?ݯ~','',0,'?'),('?7$|__Zr','wp-content/themes/salient/nectar/redux-framework/redux-framework.php',0,'02Ng[oC','02Ng[oC','i$~I鈞=cfS*)m\r','',0,'?'),('\0ɇ`}pu[d','wp-content/themes/salient/nectar/redux-framework/uninstall.php',0,'^mUrZ*̋D','^mUrZ*̋D','pOK·oPS}OoO(9I','',0,'?'),('NFοڅSX','wp-content/themes/salient/nectar/tgm-plugin-activation/class-tgm-plugin-activation.php',0,'\Zb;ȊK','\Zb;ȊK','ҍdMPZÚ,<kF9\\GPpC','',0,'?'),('$2rPO','wp-content/themes/salient/nectar/tgm-plugin-activation/required_plugins.php',0,'luqͅ5','luqͅ5','Kpsi+I>H+SY,6Q~N','',0,'?'),('E(0/2s','wp-content/themes/salient/nectar/tinymce/nectar-shortcode-generator.js',0,'r+//>ސ+','r+//>ސ+','sĆ9k>^f\nֿ%.','',0,'?'),('&AcpLud@B	','wp-content/themes/salient/nectar/tinymce/shortcode-processing.php',0,'mCAhS!jPT','mCAhS!jPT','geRՔ(TBz1}c~d,vaI','',0,'?'),('3c\"*;@^aCӓ','wp-content/themes/salient/nectar/tinymce/shortcode_generator/js/chosen/chosen.jquery.min.js',0,'OO\rĴ2\\|','OO\rĴ2\\|','\\purr-E~Z.|4d\rV ','',0,'?'),('cnN#ɦJ','wp-content/themes/salient/nectar/tinymce/shortcode_generator/js/magnific-popup.js',0,'dCoAw19 ','dCoAw19 ','Kkp\0\r\r>Eqֱn','',0,'?'),('\\؞g|\"Ù','wp-content/themes/salient/nectar/tinymce/shortcode_generator/js/popup.js',0,'x,wt/\Z)y','x,wt/\Z)y','W\'Wvݺuyl[݃L}k#C','',0,'?'),('ѕsݶpl78','wp-content/themes/salient/nectar/tinymce/shortcode_generator/js/simple_slider/simple-slider.min.js',0,'ȁEZ($i1z','ȁEZ($i1z','\Za.0mrR]W@~ϻN','',0,'?'),('\r9kv04yJ/','wp-content/themes/salient/nectar/tinymce/shortcode_generator/js/upload.js',0,'Qz_y<bvL','Qz_y<bvL','~OnۜFt\Zqv.̣E4','',0,'?'),('3v<TBU','wp-content/themes/salient/nectar/tinymce/shortcode_generator/js/upload_3_4.js',0,'U}jW1L7','U}jW1L7','\r:̜;*uHxeH ѶS','',0,'?'),('<p_bkH','wp-content/themes/salient/nectar/tinymce/tinymce-class.php',0,'\rmP;VyG','\rmP;VyG','9*EZ93KoEXͫ䄷P','',0,'?'),('N`NJj}߽','wp-content/themes/salient/page-left-sidebar.php',0,'f\r-','f\r-','LEι\\ȅ(D<nt','',0,'?'),('`TӀ','wp-content/themes/salient/page-sidebar.php',0,'Rꐣg5_ ','Rꐣg5_ ','y0+g|f_-5,W^','',0,'?'),('fwYL','wp-content/themes/salient/page.php',0,'=Fwc','=Fwc','e&ʰqoĝj\'F$0','',0,'?'),('A~dO5t\Z(','wp-content/themes/salient/search.php',0,'Z!;uk','Z!;uk','Uam	Ƣ]9o\0\'R','',0,'?'),('Kfo','wp-content/themes/salient/searchform.php',0,'ÿWP5߳t','ÿWP5߳t','י7z҅#L|\'*g','',0,'?'),('1ͺk{\\*Gq','wp-content/themes/salient/sidebar.php',0,'w/coc4)l','w/coc4)l','\\f0v#vu>|2,A0','',0,'?'),('05&y','wp-content/themes/salient/single-portfolio.php',0,'ELB/XWgM','ELB/XWgM',')TkfGmxՑ+rm6ob9','',0,'?'),('4db\'l}M','wp-content/themes/salient/single.php',0,'ΰ.E/','ΰ.E/','Ac7T!\\.rr:X\r@','',0,'?'),('bͧ0j','wp-content/themes/salient/taxonomy-project-attributes.php',0,'\02x6%$0$','\02x6%$0$','znX?F끈~Ŵ(>jE4j2HL','',0,'?'),(':vd \n=O\r#oY>','wp-content/themes/salient/taxonomy-project-type.php',0,'$ð:V','$ð:V','HܔGrBu,@~2Qc\r+PLU','',0,'?'),('ìxˑE#\"~','wp-content/themes/salient/template-contact.php',0,'l\"޻)T$','l\"޻)T$','YCw*.+Y܏nr3L0>o椌}9','',0,'?'),('!Hw`ăp.','wp-content/themes/salient/template-home-1.php',0,'fiϻOÐ','fiϻOÐ','~y1:+20vU\02hr,2\Zm','',0,'?'),('p99:\rk?A','wp-content/themes/salient/template-home-2.php',0,'ѫ\0kP~k','ѫ\0kP~k','	wu9ml+̟psE','',0,'?'),('8qs}Tn0','wp-content/themes/salient/template-home-3.php',0,'џ)UXZWۮ','џ)UXZWۮ','I3vg\rFt>^bݼ-ai','',0,'?'),('PeȰ2ܓ','wp-content/themes/salient/template-home-4.php',0,'~y[\'/ q','~y[\'/ q','궟]S/^R?gbz^) }.z','',0,'?'),('*%)E','wp-content/themes/salient/template-no-footer.php',0,'1hGn=id','1hGn=id','`zX\"R1.V.J','',0,'?'),('|c[$j8c','wp-content/themes/salient/template-no-header-footer.php',0,'G+\Z\\_j88r','G+\Z\\_j88r','S3{m.Sj3Ł:/h','',0,'?'),('\Zޚ-92K.a','wp-content/themes/salient/template-no-header.php',0,'1L_vzs ','1L_vzs ','\rW-68ɆyE)U-ǟBb','',0,'?'),('Y\r\"#','wp-content/themes/salient/template-portfolio.php',0,'|S|S@IK1','|S|S@IK1','mrZ|wuYp6Ѝ (a rA	~C','',0,'?'),('H+2&K!^=','wp-content/themes/salient/woocommerce/cart/cart-shipping.php',0,'|w6(ի','|w6(ի','..!9orW8	mۓ\n','',0,'?'),('ȢD[aDCz','wp-content/themes/salient/woocommerce/cart/cart-totals.php',0,'ǮE\nғ4','ǮE\nғ4','iRF^ymvW`pq&WSO	H','',0,'?'),('Kp=*K)1Mv','wp-content/themes/salient/woocommerce/cart/cart.php',0,'!\r=:37I','!\r=:37I','\0ӏ&R&<~\'04C:ҥ','',0,'?'),('pd>>j','wp-content/themes/salient/woocommerce/cart/shipping-calculator.php',0,'$csQ\n$','$csQ\n$','tbeK: ,d0m%%|Q','',0,'?'),('q̷+m ԸN*','wp-content/themes/salient/woocommerce/checkout/form-checkout.php',0,'큤n,nrQI','큤n,nrQI','`.ib{߄B%lIih7#)8ω+','',0,'?'),('`cHւ|sI','wp-content/themes/salient/woocommerce/checkout/form-shipping.php',0,'Ꭵq!&̜','Ꭵq!&̜','7CJHs빷DiQښ{(پy8T','',0,'?'),('!0OC{','wp-content/themes/salient/woocommerce/checkout/review-order.php',0,'PmW̌X(آ','PmW̌X(آ',')rn\\An&*XcKAYo?TM','',0,'?'),('fȜKݓa','wp-content/themes/salient/woocommerce/content-product.php',0,',R/* nB)',',R/* nB)','o%挶nr_g*?\"tE2[','',0,'?'),('^[]^X\nr','wp-content/themes/salient/woocommerce/content-single-product.php',0,'GãUs{7','GãUs{7','ۏK.Us$ZUn$','',0,'?'),('&o.|','wp-content/themes/salient/woocommerce/loop/add-to-cart.php',0,'ONϠ:Φ','ONϠ:Φ','bJ\\7=dfTqy7S\';8>','',0,'?'),('d8XR?O.6','wp-content/themes/salient/woocommerce/loop/loop-start.php',0,'(q$\\|`fR-k!','(q$\\|`fR-k!','O`:*:S4JQG6L2-X=@','',0,'?'),('J\nե^)!o','wp-content/themes/salient/woocommerce/myaccount/form-login.php',0,'̝fŵ@I+','̝fŵ@I+','?W_?\Z\\s1]#m<J1u3zv','',0,'?'),('\\޻/\nfzu','wp-content/themes/salient/woocommerce/single-product/product-image.php',0,'W6$X;9ҫx','W6$X;9ҫx','JIp}혘0]8','',0,'?'),('%wn0T]g,A<','wp-content/themes/salient/woocommerce/single-product/tabs/description.php',0,'\Zߺ.BtGl\0','\Zߺ.BtGl\0','Lx鵗e3 #o_3tTcd\r','',0,'?'),('*p\'+\'','wp-content/themes/salient/woocommerce/single-product/tabs/tabs.php',0,'=W\nӼ4\r-','=W\nӼ4\r-','fצQ \0ez|;=L-:o!','',0,'?'),('xs2\"ZU®','wp-content/themes/twentyfifteen/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 2MD$',';q:\n@5=$o','',0,'?'),('}%Jgz','wp-content/themes/twentyfifteen/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[k\"xE7@s}l','58!;	\'9Os&A3XL4oP','',0,'?'),('|\Z:s~','wp-content/themes/twentyfifteen/author-bio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4ԡR$)wZO','8h=\nҟ`;$rKkyo','',0,'?'),('\\Jh\'{a`_','wp-content/themes/twentyfifteen/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RڢdɓGH','[8Vs%z2z47\Z|GH#Bo','',0,'?'),('2[s$tX[','wp-content/themes/twentyfifteen/content-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\'iV1','Vb3(\nUű1_K)#C(~W','',0,'?'),('`䃽eWY','wp-content/themes/twentyfifteen/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VX+1','B7[\rYA\n<0K8.ķA','',0,'?'),(';\"Cؘܳ hc\Z','wp-content/themes/twentyfifteen/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$zx6ޓM#','dĥS8LfO̒-8ahT\Z','',0,'?'),('^K^8v8','wp-content/themes/twentyfifteen/content-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<CUyQOb','D[eqzyx+OsegP=<,iD|','',0,'?'),('v#9)?Ip','wp-content/themes/twentyfifteen/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?<h>CBqp','4Qu SpnIk/','',0,'?'),('J0\0;','wp-content/themes/twentyfifteen/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BH\r%%^f\r','ȣJ@%0W--]\"\0\0\"C','',0,'?'),('Ĭ+0','wp-content/themes/twentyfifteen/css/ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lgIN6','n0yQj\r\"}A(bf}<','',0,'?'),('ld՟L1u0','wp-content/themes/twentyfifteen/css/ie7.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dh=[KM7,','Z:c\Z	ɺk{O;nJcj','',0,'?'),('A¶\\ď\0N','wp-content/themes/twentyfifteen/css/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('\0ێx%d\ZkK](','wp-content/themes/twentyfifteen/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hYӠ&6	N','w9n\\&#,@^pBsB:tQ2r','',0,'?'),('MaN`:,','wp-content/themes/twentyfifteen/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+qg@','\r+Jq )<^!<v|','',0,'?'),('\'_G>r-gʯ','wp-content/themes/twentyfifteen/genericons/COPYING.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B;a`GԢމ','+P4g.{^W/![qu','',0,'?'),('}vϣG','wp-content/themes/twentyfifteen/genericons/Genericons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','→(7kj','ɞ1X**yhs','',0,'?'),('J];o*P','wp-content/themes/twentyfifteen/genericons/Genericons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/=³zeX*|b','Ä@Pw*\'0M\'D۝c1חd','',0,'?'),('J9?+Q鴵','wp-content/themes/twentyfifteen/genericons/Genericons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&tw4Љpc$',';=LV|,8Tg0WNQA@kC@','',0,'?'),('donW>a','wp-content/themes/twentyfifteen/genericons/Genericons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s/n]dz?','*SW.~5t=Vp̦','',0,'?'),('uQ\"~Wð','wp-content/themes/twentyfifteen/genericons/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4MiHjJBc','\0v1sN>cID٦I0-','',0,'?'),('vlBT[6BJ','wp-content/themes/twentyfifteen/genericons/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u9\nJLa7Q焑','{vx(DJ*qb\\Q3ѣ','',0,'?'),(':X&eͣ','wp-content/themes/twentyfifteen/genericons/genericons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĥUSt+',';Ji24{3.(^Z}řۉ*E','',0,'?'),('LÓ<\\A\\j','wp-content/themes/twentyfifteen/genericons/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('x.o\Z0Lu ϳ','wp-content/themes/twentyfifteen/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6EִJM','i9F[+31zt\Z֌&/b#Ci','',0,'?'),('^COP>','wp-content/themes/twentyfifteen/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{I<<$~','\\\r/BM^UЮ^ʋ\n,$','',0,'?'),('L$@]%+X','wp-content/themes/twentyfifteen/inc/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a [`z','դ<N?GX4-\"Qgm+cx6c','',0,'?'),(',G :0/','wp-content/themes/twentyfifteen/inc/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4_NG^F}[F','QB|ܪ\\{ΆkK4)','',0,'?'),('*lXKPqU','wp-content/themes/twentyfifteen/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%E4G	H','ATO&*ϑp=\Zs','',0,'?'),('\ZZ	݂f','wp-content/themes/twentyfifteen/inc/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('aqbOaI-\r*','wp-content/themes/twentyfifteen/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x^Rhg','-BWB`v>O:]R8GӇNC','',0,'?'),('q\0^mvBsfC~','wp-content/themes/twentyfifteen/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɲbZKKW:','WfpUg!Ry#?Y^','',0,'?'),('@N _n','wp-content/themes/twentyfifteen/js/color-scheme-control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gO:]ɏX','ˬG|\0fˌ,w}ᚋ릞۹','',0,'?'),('Z1hN3','wp-content/themes/twentyfifteen/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t?\rJ4a)','\n+7gvnKwu%bv&(','',0,'?'),('&KG)','wp-content/themes/twentyfifteen/js/functions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kf-u-m.','ʘIe|9ñH>DB*x~+!f','',0,'?'),('WWՃome','wp-content/themes/twentyfifteen/js/html5.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\"ȶjȓP','٤mSm?޾jr^آ','',0,'?'),('ZuApX%B','wp-content/themes/twentyfifteen/js/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('koZz!/f','wp-content/themes/twentyfifteen/js/keyboard-image-navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/80r\ro','zpYuOEk2h!yK&%KʏA','',0,'?'),('q𷞊D`','wp-content/themes/twentyfifteen/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t>:{','vĜe7\0qnc^hڣ','',0,'?'),('8ASK\Z','wp-content/themes/twentyfifteen/languages/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('ײ2Dɻ&-u	','wp-content/themes/twentyfifteen/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B5^\0`C','j7X	wm8/%2Ω|r.','',0,'?'),('鍕cBw!W','wp-content/themes/twentyfifteen/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6\'I;%,U','.vq.B!|Yxᒸ=','',0,'?'),('5]/\r','wp-content/themes/twentyfifteen/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a1Q#','k[Ն~zpt(tlJW,%fq','',0,'?'),('m\Z/','wp-content/themes/twentyfifteen/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[tծ1OrH^\r','WAL3\'j\r\rNfFzaqUl','',0,'?'),('\\+5¦DW\"','wp-content/themes/twentyfifteen/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\"7ў׉!T\n}','\"`AH(UMHls\ZZ<','',0,'?'),('\"\\D-\\gc','wp-content/themes/twentyfifteen/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*pz.9{S','7A}esىA}Kƶhet<1X','',0,'?'),('xAgm%','wp-content/themes/twentyfifteen/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lCn/','S,˦F?bZ\\|bQ','',0,'?'),('uv՞(S5훨','wp-content/themes/twentyfifteen/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q&17h?IyOK','4۶l!zo}s<QI>QB','',0,'?'),('82NG@|M8|\n','wp-content/themes/twentyfourteen/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*<S\"\ns','0F8s\0N\Z\n~pOiD?O','',0,'?'),('RBeL±{','wp-content/themes/twentyfourteen/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZCJ+W','ݲK`XMUCL۶:','',0,'?'),('iiBe8.8','wp-content/themes/twentyfourteen/author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' }zY','ORvPڞsM}N~5_4v','',0,'?'),('ߖ/2Z{6','wp-content/themes/twentyfourteen/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ȇ@9{%=','qokg$v\rޮߗfd','',0,'?'),('jI!W*:G','wp-content/themes/twentyfourteen/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','._݇X',',s}naonA:<)3ٿOuOi','',0,'?'),('4Bi\01>/','wp-content/themes/twentyfourteen/content-aside.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y*s$uR','-\';$>I<\'+Hf1','',0,'?'),('anܨ5MgU{','wp-content/themes/twentyfourteen/content-audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gdL#\\|','H\r\Zi Zr`((e;^','',0,'?'),('!A\rږ\r>','wp-content/themes/twentyfourteen/content-featured-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`X\'gT\\d)','%#ބԆO(P\0TV','',0,'?'),('+qK(e$k\\','wp-content/themes/twentyfourteen/content-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ΜQWƗ`w','j6mtmv+pE$q-\\䒟EY','',0,'?'),('`Ƚc )d','wp-content/themes/twentyfourteen/content-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ky#$~ pǁ','\01f9; =MN}Qź','',0,'?'),('5WB$l','wp-content/themes/twentyfourteen/content-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g%VҔэԪc','6!s\'6fHs(r@q	','',0,'?'),('|t|Ay\rA','wp-content/themes/twentyfourteen/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	]X&2_','ܥmX7S8-.}F#{','',0,'?'),('mjg.P','wp-content/themes/twentyfourteen/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f2\"zYl/','egZƛosel^.cp','',0,'?'),('=Fh3{DW}!b','wp-content/themes/twentyfourteen/content-quote.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dkI9<','Q4Gj%M)s&l3>M19','',0,'?'),('QBQP6*J̿c;','wp-content/themes/twentyfourteen/content-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_9Nvt(ܶ.',']SCfds&{MLA7FPL','',0,'?'),('b|Lv_7E','wp-content/themes/twentyfourteen/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CKZ˳?','%GƔ[n` {!ws','',0,'?'),('69&R','wp-content/themes/twentyfourteen/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#`Y0r?n','.0f`e{	h-c]\0rNg','',0,'?'),('|;?12','wp-content/themes/twentyfourteen/css/ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǎ?nOjeA','$z({#?\'3/Q)','',0,'?'),('\"}%xR:F','wp-content/themes/twentyfourteen/featured-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q qϞ2Vw','LKq/ݨv85=\"ޡu','',0,'?'),('pXI}y','wp-content/themes/twentyfourteen/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qJnj9T','C&/z;]\r}w6Q\"_֭x','',0,'?'),('`1ox','wp-content/themes/twentyfourteen/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','23s#~h','xx;YAt!ED=?SL^L','',0,'?'),('LoSX9!r4','wp-content/themes/twentyfourteen/genericons/COPYING.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B;a`GԢމ','+P4g.{^W/![qu','',0,'?'),('UF Ԟ','wp-content/themes/twentyfourteen/genericons/Genericons-Regular.otf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1k\ZN+>','̀S(SoӄQ)L r$','',0,'?'),('Ǩ`r]h','wp-content/themes/twentyfourteen/genericons/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4MiHjJBc','\0v1sN>cID٦I0-','',0,'?'),('Y1؎$ɧ','wp-content/themes/twentyfourteen/genericons/README.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I#\'yF@d\"','\r,A@794c}vҥG','',0,'?'),('=g<;3w','wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r98ez`','z\"1\Zq6O4&t.smeL','',0,'?'),('|UCDh','wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','flG{','%vCF2T@Nmab :zfa','',0,'?'),('*괶Z3\\f','wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\' K>','Iiw-ƹ7_K	A/qD]i؜','',0,'?'),('倽ڊt%','wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zgÅm~v',']6p@DUS	YBN6Ҁq','',0,'?'),('༗!>#@7W\'','wp-content/themes/twentyfourteen/genericons/genericons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4b-+l','jliѵw>\rq6X17/#','',0,'?'),('Ȅ7gb^I5','wp-content/themes/twentyfourteen/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wi?T','3=5Lc+7LCVg\Z','',0,'?'),('\'T*<=`ӿ','wp-content/themes/twentyfourteen/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ыp	D.r.','rjWVe#RC$[gVajW#','',0,'?'),('{fZߥ	KQ','wp-content/themes/twentyfourteen/images/pattern-dark.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E[.t5\0k','S84+WJh4s4z6f','',0,'?'),('\rn8#Ô9|','wp-content/themes/twentyfourteen/images/pattern-light.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iGpjSݨ','M۔%>-oy\\3}>#A%,','',0,'?'),(',1`Цq;R|','wp-content/themes/twentyfourteen/inc/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']z4f߮','Gl%fՄ0AGˎyB\0u2+YGX','',0,'?'),('ޠ@wc!','wp-content/themes/twentyfourteen/inc/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c\0<E6	;.*+','W.pX5@R;/ƙ\"ͼ','',0,'?'),('rSXi','wp-content/themes/twentyfourteen/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`?O\\)މ\0','	ZVE\r\r4m斢n`q','',0,'?'),('գmp驍9\n','wp-content/themes/twentyfourteen/inc/featured-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sjh(2','^\\{oc5ԭUzQWC{&','',0,'?'),('\Zpr5>#Eĕ','wp-content/themes/twentyfourteen/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bk-j,y','hĭbW|XR[й@\rr=','',0,'?'),('ud*oZ>','wp-content/themes/twentyfourteen/inc/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}O%[~X8','\"95^s	؎\"ck%j!q','',0,'?'),('\ZNwVl/̸','wp-content/themes/twentyfourteen/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^*1xӶ#','e\"vV!tXBv\r翕1','',0,'?'),('d#u=kf\'\0','wp-content/themes/twentyfourteen/js/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bp_[r$/','[\"g4vZL|KjGW޿','',0,'?'),('\0 M\\5̿c\0','wp-content/themes/twentyfourteen/js/featured-content-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Pwp\"LK6','=X/E\n\"RS-w~5&$3u','',0,'?'),('ťXQ','wp-content/themes/twentyfourteen/js/functions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+4<\\>[r','PKp5bm{mP8㥔Hu	','',0,'?'),('vPiZ޴8W','wp-content/themes/twentyfourteen/js/html5.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zk\\8F2YA','JGU$ܫ3ރE:O2%!-','',0,'?'),('zSͬ\\/','wp-content/themes/twentyfourteen/js/keyboard-image-navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?ft3K%\0',';0f3+#\\*_~*X\\.}','',0,'?'),('C2}	2-c','wp-content/themes/twentyfourteen/js/slider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')Cۤ\0G(,','kX!31n7ٵ ,{','',0,'?'),('oPZ\n%o2X!\'^','wp-content/themes/twentyfourteen/page-templates/contributors.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*x/>7eC','3kcbTxvT`!j_5B','',0,'?'),('c\'6zI','wp-content/themes/twentyfourteen/page-templates/full-width.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ce\"m\0os','%ޫ+x[o{\r\r','',0,'?'),('&(yf\r*KcA','wp-content/themes/twentyfourteen/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M;DjR?','[ZP~__!/\'8;_(Y+','',0,'?'),('3\'!9IDL$','wp-content/themes/twentyfourteen/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c>E6ǅx^','&8MdP	oO}QDU5Sb0%','',0,'?'),(';Μpne^@','wp-content/themes/twentyfourteen/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nF\re2}R6t\r','J6YNDK\Z\0zf[l6','',0,'?'),('[uPEx{','wp-content/themes/twentyfourteen/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}k1?.9oAcQBE','\0S\\6¬q#XeKAMe\"$','',0,'?'),('Kߢ,SG','wp-content/themes/twentyfourteen/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WfsCu`}','HTs>&h]Ҽ89xTa)','',0,'?'),('s\ZZtc	','wp-content/themes/twentyfourteen/sidebar-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȃ$\0DOK','W>Q6SwZ-jn','',0,'?'),('/\'pi20	R','wp-content/themes/twentyfourteen/sidebar-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`kt֙|,6','OE_\0C43JEU\\-m','',0,'?'),('Ҧ$2bL$','wp-content/themes/twentyfourteen/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ORn]&dn','y3,-I4QWT#\0X^','',0,'?'),('R N+`gVOZ','wp-content/themes/twentyfourteen/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NOG(v!$uLa','F&`\'\0oL;fodھQtnɱP[y*','',0,'?'),('4\"^uYuDۗCA#','wp-content/themes/twentyfourteen/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dEJ66?','r,`tѵA;撶nfZ}N8','',0,'?'),('$/4','wp-content/themes/twentyfourteen/tag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a,\'VɱJE','*C?5ɫ^;\nV5%Zg_j','',0,'?'),('ĝYE	$','wp-content/themes/twentyfourteen/taxonomy-post_format.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\\+6΁!','!kW)vl3b/5','',0,'?'),('%)\r\'','wp-content/themes/twentyseventeen/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RbTiYS','H{Af,[$dn','',0,'?'),('ꪜhЕY^','wp-content/themes/twentyseventeen/README.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1c$&&\"!v','^Jp!<ʛYw\n)l','',0,'?'),('aq+^JUS','wp-content/themes/twentyseventeen/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y;#{)!_2','moK[Ey=2<t]_w,ٽ!Sf','',0,'?'),('A[,#V^j','wp-content/themes/twentyseventeen/assets/css/colors-dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L*!jQ=8@eS','4JKi\\C&H8oBD ','',0,'?'),('gt.H*W=C','wp-content/themes/twentyseventeen/assets/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p}cAZ8j','j}h&n:R8_l#,Y','',0,'?'),('Pp4!Iai','wp-content/themes/twentyseventeen/assets/css/ie8.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/eCQkuCwv','qAVIB₏.;\0s`jM','',0,'?'),('[0|2Ŷ','wp-content/themes/twentyseventeen/assets/css/ie9.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ց[Y\0','\Z.| ؤ(=16ƚMϸ-\nGk','',0,'?'),('+-\'^+','wp-content/themes/twentyseventeen/assets/css/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('{mѡMYm|;F','wp-content/themes/twentyseventeen/assets/images/coffee.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AޞEoe	P;b','\\lϸv{z2?H9l	Mt#er[','',0,'?'),('T_T-xE&8','wp-content/themes/twentyseventeen/assets/images/espresso.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p)=c#|','edGKs,vE A4\\\0o7)','',0,'?'),('{A7?\0\Z.','wp-content/themes/twentyseventeen/assets/images/header.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0CEK>5|Q','|%`}3?M±KXWMEX','',0,'?'),('o-`z#U','wp-content/themes/twentyseventeen/assets/images/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('4:5~ǒM','wp-content/themes/twentyseventeen/assets/images/sandwich.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\nv759','QzХj@|9^.l?2ܞ','',0,'?'),('tj-RO','wp-content/themes/twentyseventeen/assets/images/svg-icons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s[fx_cn_ȥx','<1P\r!|F	aZALV0>','',0,'?'),('hsY,`OXG','wp-content/themes/twentyseventeen/assets/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('ǥc\Z$L*u','wp-content/themes/twentyseventeen/assets/js/customize-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@c*ht','MHϛ\"\r٠4թ!	ӆ','',0,'?'),(';&_XI%;','wp-content/themes/twentyseventeen/assets/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',3IpK18','^+5iMY0ȚKFdkI4','',0,'?'),('TQaP\0?򢣡H','wp-content/themes/twentyseventeen/assets/js/global.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3ȭk@*ln','XϫZWg[SSmv[ߖȋ','',0,'?'),('<tDXϦF','wp-content/themes/twentyseventeen/assets/js/html5.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^鐐{1P\'`K','Ry1Nhu¿I}؞)i','',0,'?'),('8\Zp^lC\rETpv','wp-content/themes/twentyseventeen/assets/js/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('28c\"<;Uv?','wp-content/themes/twentyseventeen/assets/js/jquery.scrollTo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dc	@y','p0O	9@5E~U','',0,'?'),('Q#j5P!','wp-content/themes/twentyseventeen/assets/js/navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p3Ʋds.bN=',' 	TGCgҫ,R','',0,'?'),('\\iPGN$','wp-content/themes/twentyseventeen/assets/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u͈wwK',':($KѼyϏ7bf㓶','',0,'?'),('DX1[]+:A','wp-content/themes/twentyseventeen/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nP+aM','8{dZY\rinwNx/G','',0,'?'),('|7͹9YOL','wp-content/themes/twentyseventeen/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x 6nmKeQ','OӭLYa:bO_UQU5aM4','',0,'?'),('\rb/#Qfi','wp-content/themes/twentyseventeen/front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0@Dܓh','66g%!/X=tf{Rp_y','',0,'?'),('iYuN$U-l','wp-content/themes/twentyseventeen/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EViR\r`','CU)YObpͰbn45\"\Z','',0,'?'),('fkp~7','wp-content/themes/twentyseventeen/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ev%|o','dWP;B،X:d*M?\']RÊ','',0,'?'),('o-b%ǃ','wp-content/themes/twentyseventeen/inc/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ծ+I&','G03XqYBptrL','',0,'?'),('^;DY\r0R','wp-content/themes/twentyseventeen/inc/color-patterns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i%?&?','&e,\0tO:܀e	:chd','',0,'?'),('F1}Etjut','wp-content/themes/twentyseventeen/inc/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|0?~d>','p0@Ԫ/&,8\'X#e?','',0,'?'),('Psm\r-t\"%','wp-content/themes/twentyseventeen/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qց[VkS','jif|\n<_\rFvv`b','',0,'?'),('6؈2','wp-content/themes/twentyseventeen/inc/icon-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'V@c','S+W{wś,3:sLDzoG]','',0,'?'),('0g=[ r$','wp-content/themes/twentyseventeen/inc/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('/7[n','wp-content/themes/twentyseventeen/inc/template-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<(2A','$N\'Pm<RSM3831PEm^f','',0,'?'),('}UkXm','wp-content/themes/twentyseventeen/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƴ1Ծ&#33','なTy@}ɠ	OH`Siubh','',0,'?'),('QK\0H0	E','wp-content/themes/twentyseventeen/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']E9|?>r;ή','fC#za/ؽVh{۞<N','',0,'?'),(')]D@w','wp-content/themes/twentyseventeen/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6P#=j\r/','FqDZq	*y','',0,'?'),('X&5[vbI','wp-content/themes/twentyseventeen/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɩө}yuj)','[D#8|3eAHd','',0,'?'),('J|\nb㓅a','wp-content/themes/twentyseventeen/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DȊsOq2','Ajn\nrقi7˯@\"C-\'(po','',0,'?'),('D1wNu<mM','wp-content/themes/twentyseventeen/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ua+qѾB','\0[fquR;G9elWQm<X','',0,'?'),('Y\n?5tm!3','wp-content/themes/twentyseventeen/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b3)Eϛ','/qydE>^3i%n\0\"K','',0,'?'),('{9\\\'Ylv:','wp-content/themes/twentyseventeen/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Pn{)IC','st?\ZԴ;,:UA\0ݏ^','',0,'?'),(':,~PLEI\\','wp-content/themes/twentyseventeen/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G\"}Qq$','>}O_	+}?tsW][:','',0,'?'),('g?~*5@Ɖr1','wp-content/themes/twentyseventeen/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','098lh.','F,r;3UD9fDtuM\0','',0,'?'),('jeb=','wp-content/themes/twentyseventeen/template-parts/footer/footer-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{rAXTeU','ʓ70VSS%\n=~dfu9','',0,'?'),('ƶ[{=~ZH+','wp-content/themes/twentyseventeen/template-parts/footer/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('r2ÁXzeb/','wp-content/themes/twentyseventeen/template-parts/footer/site-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aj\'--LdhqX<\"','#Iwz{t5ma: Q','',0,'?'),('蓶Fշ	!c','wp-content/themes/twentyseventeen/template-parts/header/header-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!u:L1','KtZ.o/ZGpy@1C\";a:','',0,'?'),('N?@&F\0k','wp-content/themes/twentyseventeen/template-parts/header/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('KiEurKږM','wp-content/themes/twentyseventeen/template-parts/header/site-branding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%+8wwO','ҍ||ò+W$UV{r','',0,'?'),('HY:%i[/z','wp-content/themes/twentyseventeen/template-parts/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('iWnl>ڜt','wp-content/themes/twentyseventeen/template-parts/navigation/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('|mN~lEJߣ7','wp-content/themes/twentyseventeen/template-parts/navigation/navigation-top.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#SC^`\'淽ʑ','XGП}ߛ1GhD+s<','',0,'?'),('>*;','wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J\012I3:','_V,==y!kx/R1P','',0,'?'),('2ni\0D2Mh','wp-content/themes/twentyseventeen/template-parts/page/content-front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߩV;a','RM]Nڊƕe\n}*\0x#@_cs<','',0,'?'),('\0ifP+ܠI','wp-content/themes/twentyseventeen/template-parts/page/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.vh|O[F{)','ř;|U8p(~Ace','',0,'?'),('Sp]	lH+w','wp-content/themes/twentyseventeen/template-parts/page/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('ˮ\0(Չ','wp-content/themes/twentyseventeen/template-parts/post/content-audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LGAdu@mζ`',',I!g-AW}-`5A','',0,'?'),('Tw4|R','wp-content/themes/twentyseventeen/template-parts/post/content-excerpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L̲\Z Ц','# OqEHBw0fYbv','',0,'?'),('D\rT1','wp-content/themes/twentyseventeen/template-parts/post/content-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','բ2DUQL','fR۪8A)Q,5\Z}=JZ;}ӂA L','',0,'?'),('B\nODt%','wp-content/themes/twentyseventeen/template-parts/post/content-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D{5۸','\nIO>fpB\'R','',0,'?'),('1Fb3}!Q[dۗ','wp-content/themes/twentyseventeen/template-parts/post/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&h`6K¤\Z','P_}*56C	3M,','',0,'?'),('6_zTU','wp-content/themes/twentyseventeen/template-parts/post/content-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~쓈Zca\\','d4jkM }_`Pdό)`T','',0,'?'),('RJ٥DcvցK','wp-content/themes/twentyseventeen/template-parts/post/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r/\0ԕ5!','\r))u^?;h3+\"˭bol3mzo','',0,'?'),('}A}\n*7Z','wp-content/themes/twentyseventeen/template-parts/post/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('ٹӃ2HAYfM#m','wp-content/themes/twentysixteen/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ȗG@=/6(\r','/Ì>=Um`!98jC3]aff]f','',0,'?'),('Ӎ?K%Q6$3','wp-content/themes/twentysixteen/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ol9i~ee\n\0','jt:\0홰B6#\r\Z1@tξ','',0,'?'),('z7,D\Z2㭉M','wp-content/themes/twentysixteen/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nD>DW%_]~','~7^V%Fќd[','',0,'?'),('h0soPm)','wp-content/themes/twentysixteen/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bz\n3taI','\01Z\008n5ݙN؀:URʸ','',0,'?'),('V;6\\́=ƾ','wp-content/themes/twentysixteen/css/ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ľj','05iVroFʛAMY|C ','',0,'?'),('_Vنb','wp-content/themes/twentysixteen/css/ie7.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z^Ն&tIm','ntCE1*9s\Z5jsBa\Ze\'','',0,'?'),('SWM#a!%4','wp-content/themes/twentysixteen/css/ie8.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"v?P.T<W','N?kxI_G|OT','',0,'?'),('wqCJ^]JN.y','wp-content/themes/twentysixteen/css/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('z@%','wp-content/themes/twentysixteen/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&IXoOq','m)l\'Y_$|x;','',0,'?'),('<Q4,Zhʨ|','wp-content/themes/twentysixteen/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y l$p2ᐚ','ed;9K/\0/}J(yZh','',0,'?'),('^+w7b=;E{','wp-content/themes/twentysixteen/genericons/COPYING.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B;a`GԢމ','+P4g.{^W/![qu','',0,'?'),('fw@JF','wp-content/themes/twentysixteen/genericons/Genericons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sө\n/;]s>','4+_[qpv,{l','',0,'?'),('9}몟!\Z\r','wp-content/themes/twentysixteen/genericons/Genericons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ld*Zb','(5\\&HFI7l24=}`jVBj4)','',0,'?'),('Ex\"GC~2Jŕs','wp-content/themes/twentysixteen/genericons/Genericons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\' N깛V','?ǵ_-ϟb7b\Z	\'fp>UG\0','',0,'?'),('sy- AXQg','wp-content/themes/twentysixteen/genericons/Genericons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';(H-Jhtx',';m}e(~y0m=},','',0,'?'),('TfP%,5H4','wp-content/themes/twentysixteen/genericons/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4MiHjJBc','\0v1sN>cID٦I0-','',0,'?'),('#q[\nhK+8mx','wp-content/themes/twentysixteen/genericons/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6V\0','ҕRw&8Jie@<M}<,\"/d','',0,'?'),('򩐗⼑BW','wp-content/themes/twentysixteen/genericons/genericons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P\r6XwxM',')@ ѵvP4\\W*Y\'-c|','',0,'?'),('oU081h','wp-content/themes/twentysixteen/genericons/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('C~gI/i_D','wp-content/themes/twentysixteen/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QFBN!Ua','ҍPaQ[+}VK+H','',0,'?'),('ѼRKdP','wp-content/themes/twentysixteen/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i%8WO','FkZj]@Heaё۞','',0,'?'),(']]Sx^6','wp-content/themes/twentysixteen/inc/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˀ^ltߌ','1`Ej7+._$ٍ3','',0,'?'),('fyĐƼvhK','wp-content/themes/twentysixteen/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x	zCH\'[{0','ݠ~[١}rܪKm0\\','',0,'?'),('#chp|rF@ׁ%','wp-content/themes/twentysixteen/inc/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('xkM^O','wp-content/themes/twentysixteen/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~llc3U)V','/ɢ!RLZ>	&>D0vxq[-yrPm','',0,'?'),('swfPru;','wp-content/themes/twentysixteen/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n,ʪ%N*','OB!f_9.NN$z(۠','',0,'?'),('bʡF1t=	v','wp-content/themes/twentysixteen/js/color-scheme-control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zp2/>)~Oz','LF\"=	*F_Oy{J*v	','',0,'?'),('Ml/Aq۷-','wp-content/themes/twentysixteen/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Ap$գJT','hjt\n:W6T','',0,'?'),('D&ME*ީS','wp-content/themes/twentysixteen/js/functions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A*g\r&+gxC','\\XKD\nR+*%PЏ}q8\'FsˑY;','',0,'?'),('58Ryx*','wp-content/themes/twentysixteen/js/html5.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^鐐{1P\'`K','Ry1Nhu¿I}؞)i','',0,'?'),('7W{7Lb3','wp-content/themes/twentysixteen/js/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('>#wtE7','wp-content/themes/twentysixteen/js/keyboard-image-navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\'\'/W',')4vo$E(v9DF\rU','',0,'?'),('Mލ,Tv\Z\0\0(U','wp-content/themes/twentysixteen/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"B!H1涭/Ps','Q+oBVjᝄSFGZҾ','',0,'?'),('π3Ӱ!&','wp-content/themes/twentysixteen/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ojtmJp;Z','	\0pKNrG','',0,'?'),('6tiyxٿ','wp-content/themes/twentysixteen/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|xϝ\\NA3&{','i44O~㯯3ZOtkϯ','',0,'?'),('BȰ.\07','wp-content/themes/twentysixteen/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tl.YZ8~Xϧ','m?e#T@aE`ۗ>+eMnn#','',0,'?'),('x,¨N2D˱','wp-content/themes/twentysixteen/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\\#J/<W','/d\Zօ[U[`{,2|1W[̚','',0,'?'),('M2έ\"@8','wp-content/themes/twentysixteen/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','دveF@1a','=2gN\0 |G6RVM\0xB[w','',0,'?'),('FbىQlC','wp-content/themes/twentysixteen/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۏԛhu%>\0#^','zVr;l?q#RS6OA','',0,'?'),('lޭ','wp-content/themes/twentysixteen/sidebar-content-bottom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+$VD<:t*A2','\nI{cqZd6Xd2','',0,'?'),('_BaPG;','wp-content/themes/twentysixteen/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&I~r','CoCXRХO`ƻG9\n','',0,'?'),('&Uk','wp-content/themes/twentysixteen/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>W;o]Uol~P','?xv&W=DX*\'\Z','',0,'?'),(':;:-s5\'','wp-content/themes/twentysixteen/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pZOF(L\\S[{y',';\\%vBqx+7?mbgBNUn\\6#%','',0,'?'),('φK	ըLH:dg<6','wp-content/themes/twentysixteen/template-parts/biography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<]_רouNB','n	4\rI.)3hhv&~B','',0,'?'),('4Br8Xs)','wp-content/themes/twentysixteen/template-parts/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x YBjy','wP~.;g4%%&9:G&','',0,'?'),('CLLJ@','wp-content/themes/twentysixteen/template-parts/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sEE*ȷ','%\"4ӻzP\rUVJH8<L','',0,'?'),('sK C\\G/','wp-content/themes/twentysixteen/template-parts/content-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}A9lc\nOW','S%MO߁DD]80]\\k','',0,'?'),('.aZja','wp-content/themes/twentysixteen/template-parts/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cYoLxwF','KÛw9T1lJ$m#XWm','',0,'?'),('Vۜ}A','wp-content/themes/twentysixteen/template-parts/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$/s=N','BtT)aHsvx}>','',0,'?'),('kKyf:c4','wp-content/themes/twentysixteen/template-parts/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('j)tP@)s','wp-content/themes/twentythirteen/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SğR$yj;T','\"^-5Y0Y-m','',0,'?'),('W{&V8i\\V','wp-content/themes/twentythirteen/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GKWPkT','+7O9Ѓ9G_dGmm','',0,'?'),('%Nk<m[~','wp-content/themes/twentythirteen/author-bio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7҄!!','At(eo|K]` }kNmWN','',0,'?'),('*k\'l?,Wӟ','wp-content/themes/twentythirteen/author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m㛖Vp;','ɥPK6Fme7','',0,'?'),('fM%\"$	s','wp-content/themes/twentythirteen/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|N6$Ծ񨕕ad\r','$_*9ڋ7|rNt*','',0,'?'),('07e	ӟ\n','wp-content/themes/twentythirteen/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɺ庖4','+CpdR^ӻF#b׏UԻa4i\rѳ.$]','',0,'?'),('h2M	25p','wp-content/themes/twentythirteen/content-aside.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ر.yjG','ޚ 0 +MτΧżD','',0,'?'),('rI!','wp-content/themes/twentythirteen/content-audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E<cG\r',';\nUFFZ^/^7>h)N','',0,'?'),('sR||(W!','wp-content/themes/twentythirteen/content-chat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\" S>\Z3)b1	','t;\\TaL,\Z5xH`4','',0,'?'),('Sqf+7r','wp-content/themes/twentythirteen/content-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',|҈9@$','POѭ2mQ\n\ZeW[md[\Z2','',0,'?'),(')|;m8Z\rsp','wp-content/themes/twentythirteen/content-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\^@msx','1\Zi|tl?u,gL\r<7\'ZZ~','',0,'?'),('j&\\Uچ','wp-content/themes/twentythirteen/content-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Nw(9w','@X1LH\0rXg	|!Y','',0,'?'),('h-f:-','wp-content/themes/twentythirteen/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z~ŉ_-\r','WݖlS_\\Ufh5n$','',0,'?'),('%\\i\\j?x','wp-content/themes/twentythirteen/content-quote.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';RWklӗ','%s Bԣ<rlB4إ]','',0,'?'),('29`#0TR|','wp-content/themes/twentythirteen/content-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':{I0bLK','\nHHA(r\nѭLiD\"߶U\n.','',0,'?'),('6H68HYշ(h','wp-content/themes/twentythirteen/content-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xB\r\ZΑd\0L','ed+\"-~$6x@96\0N','',0,'?'),('(wփ','wp-content/themes/twentythirteen/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cmyb/\"s','lpc-]myotDv8HF','',0,'?'),('>8\\','wp-content/themes/twentythirteen/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N=2lXh,\r&L','|<H%uO\rZa|ɋ','',0,'?'),(';:ǝ\\4tYB','wp-content/themes/twentythirteen/css/ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/-tRi.m','j.\nT-\r)hQxnd\"','',0,'?'),('Qi\n','wp-content/themes/twentythirteen/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o-TTko','=\nʩ֡4Yqz;+sTv_','',0,'?'),('vn\\?<]h','wp-content/themes/twentythirteen/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ek\ZPIxA7','%FU}¹x	`hyYɛmβ','',0,'?'),('\Zj>O9o!\\)','wp-content/themes/twentythirteen/genericons/COPYING.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B;a`GԢމ','+P4g.{^W/![qu','',0,'?'),('eO+ ]jqt\"]','wp-content/themes/twentythirteen/genericons/Genericons-Regular.otf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1k\ZN+>','̀S(SoӄQ)L r$','',0,'?'),('}_0EsRu֯','wp-content/themes/twentythirteen/genericons/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4MiHjJBc','\0v1sN>cID٦I0-','',0,'?'),('2Xk!pd/','wp-content/themes/twentythirteen/genericons/README.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I#\'yF@d\"','\r,A@794c}vҥG','',0,'?'),('8\n1n!QD;','wp-content/themes/twentythirteen/genericons/font/genericons-regular-webfont.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r98ez`','z\"1\Zq6O4&t.smeL','',0,'?'),('R~y\Z','wp-content/themes/twentythirteen/genericons/font/genericons-regular-webfont.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','flG{','%vCF2T@Nmab :zfa','',0,'?'),('өaFG5','wp-content/themes/twentythirteen/genericons/font/genericons-regular-webfont.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\' K>','Iiw-ƹ7_K	A/qD]i؜','',0,'?'),('>E$\'nF','wp-content/themes/twentythirteen/genericons/font/genericons-regular-webfont.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zgÅm~v',']6p@DUS	YBN6Ҁq','',0,'?'),('ֳ)vk\'\ry5','wp-content/themes/twentythirteen/genericons/genericons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4b-+l','jliѵw>\rq6X17/#','',0,'?'),('?Y~ rƵ|P','wp-content/themes/twentythirteen/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|8yyYw','MGI4imNTw̿6uj\\ޚ','',0,'?'),('!3(^ܣ*LmA C','wp-content/themes/twentythirteen/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','룪w̫','芈QA\0drQ2Ҽ9_ׁ','',0,'?'),('}Đ$','wp-content/themes/twentythirteen/images/dotted-line-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vLsFw','UY9Y$\"1^?lGidM','',0,'?'),('ש)׵g8','wp-content/themes/twentythirteen/images/dotted-line-light-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<νq3xwxr\\ 2','1<u3k\"n0!^|gFr*Ӆ{','',0,'?'),('4@x(/YG}','wp-content/themes/twentythirteen/images/dotted-line-light.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3<({IW','G NO,y8;rT:^4Um>\n(<','',0,'?'),('YOT(d','wp-content/themes/twentythirteen/images/dotted-line.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l8.;Ւi','=.\n-3C~ sϨ','',0,'?'),('@)Vra\'\0c','wp-content/themes/twentythirteen/images/headers/circle-thumbnail.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0(pCg^e','s$\nllYy[w5q\'s','',0,'?'),('Vhޤ+F4','wp-content/themes/twentythirteen/images/headers/circle.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IN#O\\/}','{/}5%s|\nP }\'','',0,'?'),('-VWigM4|\rCB','wp-content/themes/twentythirteen/images/headers/diamond-thumbnail.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ga2*{','P¼sBc%<	Ӎ8A6H','',0,'?'),('Lm','wp-content/themes/twentythirteen/images/headers/diamond.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':ɴ 7','ȸ7j10NrAhQ;b','',0,'?'),('5?ׇRR|E^f*','wp-content/themes/twentythirteen/images/headers/star-thumbnail.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\nONx\ZZC','F{Us+6 pR]چa 	6','',0,'?'),('>$\\Τْa~A','wp-content/themes/twentythirteen/images/headers/star.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9co56Q`','aހ?\\OL0z7m{28','',0,'?'),('@hզ}9\r','wp-content/themes/twentythirteen/images/search-icon-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uQ+00\\5(',')<yt\r.kP9u9','',0,'?'),('u}euƽ0q','wp-content/themes/twentythirteen/images/search-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ώ=]\0,U؈4','FcSl\'8r%$e;(`P','',0,'?'),('1*P	X','wp-content/themes/twentythirteen/inc/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ؕZ&bC%m','v\"y4AG\\r1\0Co','',0,'?'),('>֔)=U','wp-content/themes/twentythirteen/inc/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ܱRc\'u#>','P͑\'UJmͲ,8pG\r̂]Һ','',0,'?'),('*K\rA\0?R>','wp-content/themes/twentythirteen/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^eܼ2͊\"Z',';1C̀(>\nOM1','',0,'?'),('RW>p	\\','wp-content/themes/twentythirteen/js/functions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0>@','_;V|KeuϏf&	r','',0,'?'),('5Kk B','wp-content/themes/twentythirteen/js/html5.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zk\\8F2YA','JGU$ܫ3ރE:O2%!-','',0,'?'),('ģ04\\','wp-content/themes/twentythirteen/js/theme-customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','75ESS$U9\Z','i$FH3&ձ2+,%7.G','',0,'?'),('`8\"NT','wp-content/themes/twentythirteen/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oGisn)m','gZ7EX55Lط\'ǺX','',0,'?'),('R럵֒Y#','wp-content/themes/twentythirteen/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';/xLF?2','=3P@ëǣЩaR]WiM','',0,'?'),('da\'gCM~uNd','wp-content/themes/twentythirteen/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','My\\H4\Z','WeNrFS=F(=S+\'W1','',0,'?'),('^˨_R6+6','wp-content/themes/twentythirteen/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yr%npj0yYl','+oѩB𴶥Ɇ;KE9\'>z`b','',0,'?'),('kTYU.','wp-content/themes/twentythirteen/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜAdpnļ	+','ǎwش=:\Z&)0m','',0,'?'),('2u\0]*qSp\\','wp-content/themes/twentythirteen/sidebar-main.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X\"_;s/*x','Ι::=T)kD\n38B0','',0,'?'),('e~Q8F','wp-content/themes/twentythirteen/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nK+MH%^g','Jmu%9OqH]\ZqlhgvY','',0,'?'),('O|<Cwy','wp-content/themes/twentythirteen/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q4:Dwxjh*ޖ','_\\5dŃ^fSC2tvٝ9Yw','',0,'?'),('\"/Ƭκtz;','wp-content/themes/twentythirteen/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}ᗦV_#','\Z[x]OWs\'CChz\Z','',0,'?'),('ΣBgĂ̎th%','wp-content/themes/twentythirteen/tag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dLR','N~Q+ĝQizO*lnf)1Y!f','',0,'?'),('Xk7AmuQD;w','wp-content/themes/twentythirteen/taxonomy-post_format.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.&֤rN','\Z_8?HMХ;','',0,'?'),('|W*-*','wp-content/uploads/2013/06/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('R2V\Z}e','wp-content/uploads/2013/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('bz;qiSr','wp-content/uploads/2014/03/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('2r\rB*:','wp-content/uploads/2014/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('wQzhX\0fW3	','wp-content/uploads/2015/07/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('[ eG|#FG','wp-content/uploads/2015/08/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('f;TIԖg8','wp-content/uploads/2015/09/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('+$*vn~','wp-content/uploads/2015/10/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('NaFcd','wp-content/uploads/2015/11/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('5{\0YfV3	','wp-content/uploads/2015/12/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('68Z僠','wp-content/uploads/2015/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('5̬aۇ;Wby','wp-content/uploads/2016/01/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('\\5&\rGOVW','wp-content/uploads/2016/02/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('(\\B>v@$','wp-content/uploads/2016/03/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('ܓ0\nR</#','wp-content/uploads/2016/04/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('/5^\"p','wp-content/uploads/2016/05/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('vb@V:uGy','wp-content/uploads/2016/06/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('jN5}Hf}Q','wp-content/uploads/2016/07/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('F=Ӱ@\'щ5Ly4','wp-content/uploads/2016/08/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('?td探Y','wp-content/uploads/2016/09/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('eaCHTȢgW','wp-content/uploads/2016/10/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('Nw1\ZŝP','wp-content/uploads/2016/11/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('ԺLPI$Q?K','wp-content/uploads/2016/12/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('\'Vtf9&b','wp-content/uploads/2016/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('szh=G','wp-content/uploads/2017/01/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('̞]c@<g,','wp-content/uploads/2017/02/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('R| 6ICCW%B','wp-content/uploads/2017/03/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('1ҿG\n`zř','wp-content/uploads/2017/04/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('aAt޵5t/>-','wp-content/uploads/2017/05/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('0\0!DxOF','wp-content/uploads/2017/06/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('}R,y÷4Q','wp-content/uploads/2017/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('a^¶Q\ZSP-','wp-content/uploads/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('ig[17!h','wp-content/uploads/js_composer/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('}s+eB','wp-content/uploads/redux/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('xsԶǗ^`','wp-content/uploads/wc-logs/index.html',0,'ُ\0	B~','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('|ak7$5W','wp-content/uploads/wc-logs/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('~Δ,zGh','wp-content/uploads/woocommerce_uploads/index.html',0,'ُ\0	B~','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('fk\r\"N@,v\Z','wp-content/uploads/woocommerce_uploads/index.php',0,'c}thW۝4/M','c}thW۝4/M','auߜUO)nU¨kD.VF','',0,'?'),('&	PshcusS','wp-content/wflogs/attack-data.php',0,'#ح\nyIb\r\r','#ح\nyIb\r\r','l4Eq{\'wg31cw:','',0,'?'),('Un/|r@ڪ','wp-content/wflogs/config.php',0,'6Dn8۪@e','6Dn8۪@e','M|9,SZ=b#EϚn9$G','',0,'?'),('Ao!Vų`v','wp-content/wflogs/ips.php',0,'lCdb.˴v','lCdb.˴v','Z][WP},7*q\nƑ','',0,'?'),('!ES7x','wp-content/wflogs/rules.php',0,'0h1x+','0h1x+','#$sI6@;C|B7ܻ','',0,'?'),('aOj\'ŻD*ցV4','wp-cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bvme%Iv26','!4\\zU\06Z1%K,QD','',0,'?'),('vόY9','wp-includes/ID3/getid3.lib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-dr\"K$u_','o-AT}Fmܜs_QyY','',0,'?'),('d:wOІ','wp-includes/ID3/getid3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vze=Iu\\','\Z:W&wBZT!B6.','',0,'?'),('9ՍҢ9d\rY','wp-includes/ID3/license.commercial.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n;gJgxA','t_2x<-˜wqIg','',0,'?'),('}Ȑ\\L`i)','wp-includes/ID3/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5يhQ3fQk','?\ng=2.U[ziK','',0,'?'),('D.:\0SR8','wp-includes/ID3/module.audio-video.asf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(kQ|$4','EZ^`t?%o>奓','',0,'?'),('x	G!N$.dTb','wp-includes/ID3/module.audio-video.flv.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kHi,WQF','DccJ(GŧG3*','',0,'?'),('oҨ*Ko7{ <','wp-includes/ID3/module.audio-video.matroska.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cK9j\0SiJ','5jMJdv7|֓(9|>W(\'q','',0,'?'),('Tvm?,aT4','wp-includes/ID3/module.audio-video.quicktime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'-nL9 a\Z!n','[GïȖ%): jR\"\rB','',0,'?'),('\ZvI:wm\'~K-','wp-includes/ID3/module.audio-video.riff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TfbpGO-','jf(1M#g>˔$dZ','',0,'?'),('L6	׳','wp-includes/ID3/module.audio.ac3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\0L;\"Od\'','wjrtKr<BvDp5G','',0,'?'),('ǳ\\_L-YŌ%$','wp-includes/ID3/module.audio.dts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V`L7.l] ','<y\nK?Pr6Ṳv#.H7/','',0,'?'),('@+T΄\'٤','wp-includes/ID3/module.audio.flac.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P|sq;','RU oH~r휢ɕ','',0,'?'),('N@(3','wp-includes/ID3/module.audio.mp3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%{/U\"m',']W|[Kd䄟g޷q-f;8`Ź','',0,'?'),(':|LH6(cg','wp-includes/ID3/module.audio.ogg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{܁:_Գ}<','4jŖE#~GA/9=','',0,'?'),('_)-]ˌkO	','wp-includes/ID3/module.tag.apetag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4lUR9I','K5\"PSZۭf:0\Z9QͪR','',0,'?'),('2zs4xEB','wp-includes/ID3/module.tag.id3v1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+6Qg4','REn\r^,=c}ğ&T`ntMO5B','',0,'?'),(',@hjqrޒ','wp-includes/ID3/module.tag.id3v2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cFyO*N','6\'H\0VnD?uEz\Z','',0,'?'),('?8ZN','wp-includes/ID3/module.tag.lyrics3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U3\"92','2lʺoK[i+x1	l14{','',0,'?'),('(~6vqV0{\"','wp-includes/ID3/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƜVLN[','>/fqS3#SUO','',0,'?'),('i;&o?','wp-includes/IXR/class-IXR-base64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*6DTe','?F]L2}\rS@b2OouU\'O','',0,'?'),('	ӭgȱ!nP','wp-includes/IXR/class-IXR-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QģKAϲ]ڎuYQ','UF\"GM|L&8K::Dot','',0,'?'),('dxeBݙϟ5','wp-includes/IXR/class-IXR-clientmulticall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3@S\n_','!YMxmՒO','',0,'?'),('Z=ӧrc\"y','wp-includes/IXR/class-IXR-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\'=c.اig','`H_+ڦbgDjd%/','',0,'?'),('^H\0B|4@z','wp-includes/IXR/class-IXR-error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g6\"u\\\'3b','*?ۧU=?,]0=CZ-6Dq.G','',0,'?'),('$ϫ/!C','wp-includes/IXR/class-IXR-introspectionserver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Uaw<IwpO7-','\nCPEQ%D\rk*Xo','',0,'?'),('~%B\0z?o','wp-includes/IXR/class-IXR-message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w*{̰h%Dmr,','MQ+B|5CeKn\ZS','',0,'?'),('w\ZdϢ\ruD\"','wp-includes/IXR/class-IXR-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%p.<Sǡz1Ϣ','Q*k_}2>Tq<_S:Qh','',0,'?'),('alV?f\Zё','wp-includes/IXR/class-IXR-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\\xT>:','TEUȚ5$Y`q','',0,'?'),('3ng\0\\\0	W','wp-includes/IXR/class-IXR-value.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f>5lj\0f','?h͇ XUPO|H$1','',0,'?'),('\\MMF/I','wp-includes/Requests/Auth/Basic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gx̄	4U	k!C','.йhdBiHɀns᝗\\O','',0,'?'),('J>\"/','wp-includes/Requests/Auth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1RWÔO[J','bOQwùLѠâ9Qlrl','',0,'?'),('i1E~NIA͔','wp-includes/Requests/Cookie/Jar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0_&p\"4\\','c!#Bi*+\"\rnIƈXÉw','',0,'?'),('S^7jK5I6K2!','wp-includes/Requests/Cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѝC(2+y`','T<!M,z[~>V2#}E)','',0,'?'),('O­\n	URb','wp-includes/Requests/Exception/HTTP/304.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';F4AIT','vC	a\'F;z(eJL','',0,'?'),(' <@s\rF/','wp-includes/Requests/Exception/HTTP/305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X\0K/`,&','HƎ+@Ib^=QvM6_iL','',0,'?'),('8P֧\ZHGE}8','wp-includes/Requests/Exception/HTTP/306.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WszuNPjXu','4UQ\r1#_fH*Idl','',0,'?'),('HYfUHupd','wp-includes/Requests/Exception/HTTP/400.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QnVJRx5','d>	iHb$&n6p\Z','',0,'?'),('/}㦿L;?w\\','wp-includes/Requests/Exception/HTTP/401.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';*?d@','YV$/@=V-dc','',0,'?'),('*\\Tҝ)%]yiD+','wp-includes/Requests/Exception/HTTP/402.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`YQP\nzG','gNQ	/	y5θc','',0,'?'),('l3.	XN','wp-includes/Requests/Exception/HTTP/403.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`\rok31','IlEKѦ?Z0JTU','',0,'?'),(';#	n%\"','wp-includes/Requests/Exception/HTTP/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cY\0ys<M','-!V>d*jPF	;QƵN1aG(','',0,'?'),('Ybڧ,J','wp-includes/Requests/Exception/HTTP/405.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8тm!Ҭ','jb횄^Usv8$bM3y','',0,'?'),('Fj]p Ac\rp','wp-includes/Requests/Exception/HTTP/406.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Klhr9\"\0',',aY}PR6`)Kfism ','',0,'?'),('NtKU','wp-includes/Requests/Exception/HTTP/407.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vj&Ƶ','>\Z]ƚB̏Xvذc.N2NҹЯ','',0,'?'),('\0n:Tq}K @','wp-includes/Requests/Exception/HTTP/408.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@>1dIXOȷv','q*lmKңk\"MQ?pa؂4','',0,'?'),('Xv\Zƒ\"$','wp-includes/Requests/Exception/HTTP/409.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zi~*=','_M8U.pFw:E`MB','',0,'?'),('T양:t[','wp-includes/Requests/Exception/HTTP/410.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qO47ߺݥ/8X!','9f/3MM;#GڪWO&tSO\ZƘ','',0,'?'),(')|{4+]X(','wp-includes/Requests/Exception/HTTP/411.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'RM.Z`G','U^9p&`nM{ nL','',0,'?'),(')Yh.;š','wp-includes/Requests/Exception/HTTP/412.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Iܷ=7V','SA4c\\D56-#d*ҽӾR','',0,'?'),('	.5uaWkJ','wp-includes/Requests/Exception/HTTP/413.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<]ɐYXL','\r}䟹-V\'eCCʅe-2,0','',0,'?'),('[Y44Orl0','wp-includes/Requests/Exception/HTTP/414.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']U@)#h','Hic!I).eh','',0,'?'),('}^72','wp-includes/Requests/Exception/HTTP/415.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XTb̮JU','v%_\0b$m&`(=m<b\Zo0p','',0,'?'),('gK;qFVI}Q','wp-includes/Requests/Exception/HTTP/416.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1N9ɪaDx','(mybVaIjWp(!A<(X','',0,'?'),('P&_#\'zTs','wp-includes/Requests/Exception/HTTP/417.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BpjhO^c\\G #','LTҘ$xDs^h_!kC\"1\'_','',0,'?'),('DCF}','wp-includes/Requests/Exception/HTTP/418.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J![4','4 6鎬M&$!2d<\\	|\\?g\n','',0,'?'),(']PJQƀ6o֢;','wp-includes/Requests/Exception/HTTP/428.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iB}^t*','COW%tߏY|&0V\\','',0,'?'),('O/ì`|g_\0','wp-includes/Requests/Exception/HTTP/429.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S%|F.àZd','!Tuwmt5o\n2A\"kߚz','',0,'?'),('ʚ{(\\i7.','wp-includes/Requests/Exception/HTTP/431.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s|b$ѓ<','ꅱ/Y6_wpkw0','',0,'?'),('\rfh8!','wp-includes/Requests/Exception/HTTP/500.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','km\n	HM','FOV3\"!kP','',0,'?'),('l;ao~G','wp-includes/Requests/Exception/HTTP/501.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eڸ04-?ב5','kG寲\n΃CD#6u\ZքEڣ@K1','',0,'?'),('bm%ڭ֫','wp-includes/Requests/Exception/HTTP/502.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|:lz!{Gi','/~UJO.ŀ#E5*\'Cq','',0,'?'),('nŢ)cq^\"','wp-includes/Requests/Exception/HTTP/503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9RaßC`\0UT','}=3xA9lp\0ư9e.O','',0,'?'),('Oy}Ma_I','wp-includes/Requests/Exception/HTTP/504.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m̪Db *','<!B|$k݈# ei%0','',0,'?'),(' \r$	Q^C(','wp-includes/Requests/Exception/HTTP/505.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']A	3[/Cd','⭛ i{PA͆kdM\n','',0,'?'),('uG#)|^6','wp-includes/Requests/Exception/HTTP/511.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','unN<KwЛ@','I}7+ƕAl欿Bt\'st','',0,'?'),('>2\\o)','wp-includes/Requests/Exception/HTTP/Unknown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dl᫁2A\nW','@3#\Zж/*t\r6<X\rIF','',0,'?'),('W>ҟ[','wp-includes/Requests/Exception/HTTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hRlr','oE²tQQbo\nrQq\"/','',0,'?'),('Iy-\nń','wp-includes/Requests/Exception/Transport/cURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Tg*\Z:	x7',']0֙8p#~\\oӁ=1','',0,'?'),('rIɀ5 F','wp-includes/Requests/Exception/Transport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lz J^','ĺ̌&ֳ4@78p','',0,'?'),('TĘ5VHP{','wp-includes/Requests/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\03\ZRI','-@g %uON\\}@lf\'','',0,'?'),('.Q}3T','wp-includes/Requests/Hooker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@%a[ў/4','t\r{k?ikC\nLḃWy','',0,'?'),('XMxڳJ','wp-includes/Requests/Hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',', gxi','՚ Q憐DP؂_?y`','',0,'?'),(' \\Tn]','wp-includes/Requests/IDNAEncoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}2Pر','M?~\"u%[,l+?F-}M)','',0,'?'),('TB3G{','wp-includes/Requests/IPv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KNknT','=ln&ăJӗ~l','',0,'?'),('}z#\Z','wp-includes/Requests/IRI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','52]{}	`X','I?~4]4KF\"vI(','',0,'?'),('w\'PeF+V\0','wp-includes/Requests/Proxy/HTTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/2)','J6dAl{Й\0Jh','',0,'?'),('#yt($NTt','wp-includes/Requests/Proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@k7\0t\\*G','w<PBZCkSIQ!\n}i','',0,'?'),('G Xexw0\\o8','wp-includes/Requests/Response/Headers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZÂҶA->c`','E\nF		M%{a`,','',0,'?'),('Yf/pw','wp-includes/Requests/Response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pR櫷\'G','WwYKL\n	-*^e\"e(_,g','',0,'?'),('U $A=He|zȖ(','wp-includes/Requests/SSL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Pg\'A6(07TO','\nQ4Hw@8<Sn-GaMRAӯ','',0,'?'),('c42jxcd','wp-includes/Requests/Session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7݆Ζ}l','e`݆.΃:jE\ZҰ5\Z)','',0,'?'),('`@YE!','wp-includes/Requests/Transport/cURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','87a`CZ','hI x<%ji$','',0,'?'),('fBDFr\r\r','wp-includes/Requests/Transport/fsockopen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!JO`\ZHH??','?l;])O=bֹ\n','',0,'?'),('.IOIP%)','wp-includes/Requests/Transport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';kK\\Vl','ɯO3eF㛆v+.r/>,','',0,'?'),('~AHgKT','wp-includes/Requests/Utility/CaseInsensitiveDictionary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':RKroH2z','9yԆ&/AXHi{b7frw=m','',0,'?'),('/?U','wp-includes/Requests/Utility/FilteredIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ax%Ay','LCUhU;4n}Rmx;Č','',0,'?'),('k5SHЫ','wp-includes/SimplePie/Author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4q_A%Nw1','n#O/jbwP&i#_`YО','',0,'?'),('U\\p{JOQ&','wp-includes/SimplePie/Cache/Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C2]]#|j','ookj\\0[-d8;\Z3','',0,'?'),(',hɃs?4B[^՝','wp-includes/SimplePie/Cache/DB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YOU.b','d*Y®s<!)܃J¬','',0,'?'),('V,E@Xy','wp-includes/SimplePie/Cache/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=@B[	S','9!+Y6L$-fq&趇kh','',0,'?'),('I:4PU','wp-includes/SimplePie/Cache/Memcache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JU1SQ?','}kJ?dA<aC3:[','',0,'?'),('<)8T*.SuSĺ','wp-includes/SimplePie/Cache/MySQL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BC\ZHxV','tAB٠B=)RhO\"g;','',0,'?'),('Y֝U}r/','wp-includes/SimplePie/Cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y:oMhvL4','w!ے?ERS^RLKA','',0,'?'),('\"ܒnzD','wp-includes/SimplePie/Caption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BjMg[','Ab\'L?QLrt\"2Ϋ','',0,'?'),('qKUj','wp-includes/SimplePie/Category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~?.\nܯd*',';е=S@dc]rRּn <6','',0,'?'),('l&*&','wp-includes/SimplePie/Content/Type/Sniffer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|riUblw3','6%\"\\\\4N*F`Γ\rL*=','',0,'?'),('anV=Ty X','wp-includes/SimplePie/Copyright.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hT	Ùj','b_$4_m2BJ\\5ߏ\"%	N','',0,'?'),('oǣ	ףf0Y','wp-includes/SimplePie/Core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\Z','K 5(Їϻ\n-\"}x$f]. b','',0,'?'),('ͽ3=OG|~','wp-includes/SimplePie/Credit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M猋*>\n|','N3$Z,!<!9\"','',0,'?'),('POf;/','wp-includes/SimplePie/Decode/HTML/Entities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E^/\rBZ#%/a','\0+0ߨP;PO\'^p|NsN6d','',0,'?'),('2^(ʭ-^x','wp-includes/SimplePie/Enclosure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Bn΍Ks]','MHڋTYQ6cf|h','',0,'?'),('\nfv81-I','wp-includes/SimplePie/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Kv&<\\ڏS5','w\'TOE[q:Sk! ˎ\\','',0,'?'),('4r%j','wp-includes/SimplePie/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kU6\n+)%','a.%e5+p3d^bLLT','',0,'?'),('Pط悇̺ƴ$@','wp-includes/SimplePie/HTTP/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W%466	','E@̣Bnb8ϜNW%','',0,'?'),('oZ0<c0','wp-includes/SimplePie/IRI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n 憒;a{_6','`VCS5Iٮ\Z;&>x$-&z+','',0,'?'),('feR)','wp-includes/SimplePie/Item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E!Cz\0c<ܧ','1K6]Lݲ]`rS{Ul','',0,'?'),('TBO>v2}Ea','wp-includes/SimplePie/Locator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s;uvf^','<Ό:9/(\\֎tl]ǳ^82','',0,'?'),('FFvV;v8/\r','wp-includes/SimplePie/Misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y-^\ZK','[JKǺn3`,\0d,m','',0,'?'),('MjAMO\"If','wp-includes/SimplePie/Net/IPv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fy!jـ','i*8.yPB\ZYe','',0,'?'),('Bهv<Sv稳','wp-includes/SimplePie/Parse/Date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rȯƹeҹ^','F%6+E{#I\\ޑa/jqŦX','',0,'?'),('tfF	r{܇_Ix','wp-includes/SimplePie/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R.b~+','J22<c8ezdK^đr<T{#w','',0,'?'),('dhħ{q42K\"','wp-includes/SimplePie/Rating.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=pm	Kدat','\r[jjՂrVh`FrES{b','',0,'?'),('}7 ޘDHDPl','wp-includes/SimplePie/Registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ȣ1v9d\0ٸ','٘Ǎ++NTbRs','',0,'?'),('\0`YϭrG','wp-includes/SimplePie/Restriction.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*qhds;y','u\\Qi窍gDH	;\0','',0,'?'),('[1YAdk,','wp-includes/SimplePie/Sanitize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BظFإHu','D>Ι+N\ZF|#4m=9cu','',0,'?'),('0lj0+%','wp-includes/SimplePie/Source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S{*','47Mj9|\0i&ĨLu!J','',0,'?'),('\'g!:H),','wp-includes/SimplePie/XML/Declaration/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p(ÅBs#b','v_6+q)ź(1),','',0,'?'),('ZҌ[\nv	F','wp-includes/SimplePie/gzdecode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8aal4','\Z93Euf\0/\\Tk&oH','',0,'?'),('OhuG&\0L','wp-includes/Text/Diff/Engine/native.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'**x','=!˾w	U34To0VhoF','',0,'?'),('ǂ-i).\\z^a','wp-includes/Text/Diff/Engine/shell.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uAܑ~J^t','p߄q\ZƑӡW_o7aL','',0,'?'),(' @;*|','wp-includes/Text/Diff/Engine/string.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':=M\0i)','d[%nZR`','',0,'?'),('e^#|ۍTЩz','wp-includes/Text/Diff/Engine/xdiff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ֹbtX8GX','[<0ąaD)tJh(C[uH}sҘi','',0,'?'),('&Rw?~jhJD','wp-includes/Text/Diff/Renderer/inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nn5PB\'','XU.k⻺@-(5NV','',0,'?'),('3fQ3h5[W<','wp-includes/Text/Diff/Renderer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' C0Y7O@GS','EWj+\\=}.1\r|','',0,'?'),(']B#2zbU/','wp-includes/Text/Diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lp՞n7q*','7	iHꗓM233} E҈','',0,'?'),('-kdϯXw\\7','wp-includes/admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c5g9	','(3p}{Sb^we?D|\0+:\"S','',0,'?'),('Gu^/1ՁS7','wp-includes/atomlib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bJ3֔eke\'[','{)NRK߬<ʚEYG','',0,'?'),('&S짿o$0n','wp-includes/author-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U-תԱȣ','^/jnH:Jը{ߣ\ZGGG8B','',0,'?'),('>slWD7M','wp-includes/bookmark-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g[lgP	55\"','dNd=3H! ','',0,'?'),('\0>#z(','wp-includes/bookmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ߵI;','%$0d74\0\ZuR7	7@&]:-&','',0,'?'),('ǅ99:\Z','wp-includes/cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=]𮂿q\r:!','P҉t7; YS @b2','',0,'?'),('2G?_\\-B','wp-includes/canonical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$$Z3\n\"kεZ','`-ӕ.p|IvjX\rc','',0,'?'),('YCooR亞','wp-includes/capabilities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*G*{TӃd','D!Ҙ0u, ~Ppsm_}','',0,'?'),('jI<꟟iU','wp-includes/category-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+SW`t','PU٧͖sB5Ag*A0P','',0,'?'),('D5\n\'\\~W','wp-includes/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','br+èx','Sbe++?&R\Z.#','',0,'?'),('mDTmsA}','wp-includes/certificates/ca-bundle.crt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{޽A6Xi,','L#VO \\HȨ\0)K8)I','',0,'?'),('Jy0m`/','wp-includes/class-IXR.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2v0p\"+/zb+','O0vWW.N%L`Xp0tj\\\r','',0,'?'),(':<$0,w\"&e({','wp-includes/class-feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')$k3\\ 2E','H̼_%%:Y3jM8\nWo!','',0,'?'),('!@|4n','wp-includes/class-http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*pkʷooo`','\"Zfp\rós|%d2J20/qX','',0,'?'),('&Zh$Éo','wp-includes/class-json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B{vCޯMAm','2<WWOkw~ÐorB +','',0,'?'),('EQ?	(','wp-includes/class-oembed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4!1hIǨ9','+	6]\0=2;؄\'I\n7[ݦ','',0,'?'),('	QW~-\0d','wp-includes/class-phpass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z!TB','ZGd/	\'*Uy(Y','',0,'?'),('8ڧs}նNi','wp-includes/class-phpmailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ԶߙO#Z','}^~o\ZbeU&Br_@~cŦG','',0,'?'),('\"u>17','wp-includes/class-pop3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KTQȩ:O!@Ty','h94s֤L~$`-!','',0,'?'),('*7\r?','wp-includes/class-requests.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9e/uaz\"<','(vȊF0Yo9	5cgAU+fV','',0,'?'),('\\ Iѻ,','wp-includes/class-simplepie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\'hX}H','g2QƶZ6*TTТ_S8','',0,'?'),('Κ,Qagl\Z','wp-includes/class-smtp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+\"Z<Ktȫ:ҕ','猡`#(Tde.s8xt6','',0,'?'),('e__%x','wp-includes/class-snoopy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\\Ņϼ.	`','4	*\0\n;0rɷw','',0,'?'),(')ũ2[	4_a','wp-includes/class-walker-category-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	߶yv%`,m','g30zUGjVK\nz7','',0,'?'),('cnxԺ|','wp-includes/class-walker-category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9\\3eD{:r=J','fj\\\nv䖈DXX\0jYNTq43','',0,'?'),('KK+2	aeZe','wp-includes/class-walker-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/(cAQ\\S','l%ǥ	$D9biOa\n','',0,'?'),('(觨:pR/','wp-includes/class-walker-nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vCQ<7h3','.J^G	C-q L$','',0,'?'),('J\rӷG>','wp-includes/class-walker-page-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G|Fy)W','$\Z|^fG{rmQ㩹\n\nHA','',0,'?'),('5S{TƁe/','wp-includes/class-walker-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*7kM҅ED','z5nNGI\nr./2~JvPI','',0,'?'),('ֶ9؞fpo3t','wp-includes/class-wp-admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ԆДhW','Vdҝc0Ys=C!e(<( ','',0,'?'),('ֻE\n<B[,','wp-includes/class-wp-ajax-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ZkOg}','4hӧGS;??wqLrvA','',0,'?'),('\nӛIQED	','wp-includes/class-wp-comment-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Ub՛','Xmį	-w2<_','',0,'?'),('Tr~W]','wp-includes/class-wp-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',gF;`Bg','0᧪]͂w\\cLsQ%_h\0','',0,'?'),('ȍP 3\n','wp-includes/class-wp-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\nU;~}C','ۚ3r>028ec+','',0,'?'),('h\ZOhl_Lm/','wp-includes/class-wp-customize-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?BP1,&c','q:9R#瘀.?UrNoc滶$','',0,'?'),('`U2mdW','wp-includes/class-wp-customize-nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R`Дw<,#','?7:C{3=Fr`*;>','',0,'?'),('\rҧxOzzh','wp-includes/class-wp-customize-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2NӤ9<','B\'	p`wnbL\n,Q\Z$\'iSs`','',0,'?'),('-x(EoI=','wp-includes/class-wp-customize-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oHO 9-9c','4N$ (0ABߏ,*z7mrܞ]*','',0,'?'),('fu3\nM\\}6*0','wp-includes/class-wp-customize-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HLuuԚJr+','n|zg \'+.W40ԂfX	o','',0,'?'),('Jёe\rXd$','wp-includes/class-wp-customize-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0?@/','gZKdQ\n˱TXE','',0,'?'),('jgs66$8*E','wp-includes/class-wp-dependency.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	\\MHF?Ft','u㈔\0sH갎3,+\\','',0,'?'),('ɱ%a{Zj	%','wp-includes/class-wp-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1=_f	b','ۦa#6Sԍ-O}FU$FAb67?','',0,'?'),('5`]\\ͭi\0\ZJT','wp-includes/class-wp-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\)cb\'n','0+S̏3ƲCUkdPV~QG','',0,'?'),('k{&x\n','wp-includes/class-wp-error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1T(0W8','d oΣi\\ܺpvj5(PGu}','',0,'?'),('O =(:<	1F','wp-includes/class-wp-feed-cache-transient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-3ǫ\"','gY&?Y\";he\\','',0,'?'),('֌qóX[','wp-includes/class-wp-feed-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bV\ZB=x=','ۙトqTV^V_(','',0,'?'),('#Dń5%','wp-includes/class-wp-hook.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I.18','(u{\r[_Eqq>','',0,'?'),('&B5VAUU,','wp-includes/class-wp-http-cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e.sʈF','-\\;uRb#\Z\\\"+\\\nb/}','',0,'?'),('#iJH?@','wp-includes/class-wp-http-curl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QG#JRÙA','w<N\"BpdKHW5(VU','',0,'?'),('MO,s\r','wp-includes/class-wp-http-encoding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kkb7h^#<','\0f|AϾ^C-Xԧs}>@Za\n','',0,'?'),('uXݼ#-','wp-includes/class-wp-http-ixr-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?oaZ;l','53S2gKK\'BVHco%','',0,'?'),('gf1۶y;_','wp-includes/class-wp-http-proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=M\Z{8)v','`.1\'G\"\'0T2gCEO\\@|!UFp','',0,'?'),('@M]\"iNJ','wp-includes/class-wp-http-requests-hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z,5','ﾗW]oUVrTƘ;Ô|','',0,'?'),('B yw+|t','wp-includes/class-wp-http-requests-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s{,i{9ʯz&','W6Yˮt<h	]H\n.M\0[I{','',0,'?'),('ڷtgZgE','wp-includes/class-wp-http-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Ow	\nB=<E','j\0[%A+ARW#;Q','',0,'?'),('߰Sh[۳','wp-includes/class-wp-http-streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ں_^le1aו','Q7:bGkAIܥʦa','',0,'?'),('>X\rbڟ$W','wp-includes/class-wp-image-editor-gd.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ϋި6@P','A(Gv\rQG;DwcVG.#','',0,'?'),('^bRSI!?','wp-includes/class-wp-image-editor-imagick.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+2F\rڸW','`ACtSb\'q','',0,'?'),('T\ne.(','wp-includes/class-wp-image-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&MYz,s=֣o','BLāIBH1>Y\r%','',0,'?'),('`Sk7TtvX','wp-includes/class-wp-list-util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z9Eౖ䙜[','}H\nH\n~x%L{]v`g','',0,'?'),('LzZ#<','wp-includes/class-wp-locale-switcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',=0HZ','adaK9\"\nz! C{`bJRz7|','',0,'?'),('1l< t~LUw','wp-includes/class-wp-locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U{:','>%EuKWWҊY\0_BoEL\'','',0,'?'),('\"qUy9%Q','wp-includes/class-wp-matchesmapregex.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YCդ<b9fԎiFe',']>UM\nqp^/٣=ϐW4V-','',0,'?'),('Guʭ','wp-includes/class-wp-meta-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6!ڭ}p','a震pjXWn]`p!rO','',0,'?'),('\Z\Z:\\RfP~3','wp-includes/class-wp-metadata-lazyloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F,1','\nTS,1ajꙋhPE(','',0,'?'),('wh]á&wM','wp-includes/class-wp-network-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|xH?#8sRz','a *9oG=G\Zn<=Z=m','',0,'?'),('8ܞt\ZwNxa','wp-includes/class-wp-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h5)fBI{','>qH,λhD_H(p/;Ir','',0,'?'),('P@;b<\nc','wp-includes/class-wp-oembed-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ITks','#WB;% e&\'\09\'c>f','',0,'?'),('~VXa]7p|R','wp-includes/class-wp-post-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	VP#.9R?','ŤH>#amaFSfKD','',0,'?'),('~ReOXf2`','wp-includes/class-wp-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'svw2d5?','ƞ9llڧU(45[M','',0,'?'),('-h\n\r`ýەC/s','wp-includes/class-wp-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2C}ƹc\"p','Dsv\'7D1ׂO,,6qB@1K+','',0,'?'),('M\ZH?ͲZ','wp-includes/class-wp-rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pVb3;GlB@:','^8\rjJ,[1Pi:)#5:cSVޯ','',0,'?'),('\nfӅ;{t','wp-includes/class-wp-role.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^mi*ONty','THD\Z#\0Y@7KfW,s','',0,'?'),('ǀ3<&YĆ','wp-includes/class-wp-roles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QJ;^Tu','Ѷ)o	]fd	j3څD@Xb{B','',0,'?'),('x(ťܺ.Շ','wp-includes/class-wp-session-tokens.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K˹ъmƎ<+U','Y_MGwp:i^e}(\ZJ\'J(sp','',0,'?'),('ސqic=','wp-includes/class-wp-simplepie-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h}vOƋ7k_','7D\Zs3G\nA!wՊ','',0,'?'),('<.4vc\"`t','wp-includes/class-wp-simplepie-sanitize-kses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cU^Z]aLęI','\0՝vyV։`;eek\0(mcz','',0,'?'),('W=ԘHdz','wp-includes/class-wp-site-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' yf[u\\G','m;jb?\\:7q{Knu-R5&UV','',0,'?'),('b~5aI@)*','wp-includes/class-wp-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J*¨QI\'w','DXT;=狟7@Ƥ䳾ӷSk','',0,'?'),('\\SՇ8;2','wp-includes/class-wp-tax-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','),M:8','13|4cpKE\Zκo\"Mlۙ','',0,'?'),('~QԁŴFp','wp-includes/class-wp-taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')+)*lp','ȅHJ1&)r,!\Zݒe0','',0,'?'),('I0B,hʛp','wp-includes/class-wp-term-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	尮	=3','\0!rfa*4^Z2','',0,'?'),('ݖ\'\"|3_t|','wp-includes/class-wp-term.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[|sX','SWN+C<1UD8\'U8=z','',0,'?'),('ǢBմ(\\0J','wp-includes/class-wp-text-diff-renderer-inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DUUv?','פme,V9}	yv','',0,'?'),('J%.~ql','wp-includes/class-wp-text-diff-renderer-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','53\'pdyY\n','[-ͅ;&u!`O۩Lh','',0,'?'),('#?Gc	¯l1e','wp-includes/class-wp-theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[W+(iԠ6','\rpk@so:P5k_|x9&','',0,'?'),('絛zy>_+t','wp-includes/class-wp-user-meta-session-tokens.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׆?I','uhJڻkzDo\\pchI.','',0,'?'),('9lן? rq','wp-includes/class-wp-user-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/q3.B`eG','<?ӽ|oRjH','',0,'?'),('R\\&T	|`','wp-includes/class-wp-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lh[Xt%H#','eN[MEB/rc=u/','',0,'?'),('\0]avCY','wp-includes/class-wp-walker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+YOPpe','J3\03^f$օ˩l]ڴUV','',0,'?'),('{1\"^.','wp-includes/class-wp-widget-factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u{MҤ3[ى',')ƁHm%hwnN^^M9','',0,'?'),('Djמ8]fД_','wp-includes/class-wp-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vZ9dOAp5','ZDLqbxlx\"7R7eF','',0,'?'),('j䱋%]','wp-includes/class-wp-xmlrpc-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')d.x`1','VD:̂3e,Z8','',0,'?'),('$C/9','wp-includes/class-wp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZO3\Zg!|S','_˲IĆ!*t+Ɓ%U-C','',0,'?'),('yEa:[\0','wp-includes/class.wp-dependencies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XWvڟϡړJz',' ʒpWABZi\",%^sa','',0,'?'),(';~ӷR>','wp-includes/class.wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4X(I|[','{0r媫qe%45{\'Mx','',0,'?'),('9ψ[1d{@','wp-includes/class.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U:0\nRǄha6',']tjC>V$u{hV9','',0,'?'),('=k[4 =','wp-includes/comment-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vۿ1l4','BtTqAF|ppEli\ruDS|.\\7','',0,'?'),('SKK2iɈ','wp-includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3%\n?kuǟ','obR*Bgμ(\rBeONz^0','',0,'?'),('_\\c9mLv1','wp-includes/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؈^$p_kE','txZxVFQP','',0,'?'),('-\"DʹD5a/','wp-includes/cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HL1rB$wbV','kX&hlnңmY<m$Gz\'Y\r<','',0,'?'),('=֬H@-i','wp-includes/css/admin-bar-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n~ίnIV隍','-͞b8AUoQ+6[lP?e\"','',0,'?'),('{ڭd3TXy7;','wp-includes/css/admin-bar-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ko\r_\0SM','\"[B7oLs+\0Fa	}dD','',0,'?'),('Ȇp]4Lq','wp-includes/css/admin-bar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܔ(\\e}',':t=-J{r7҅Ÿq?','',0,'?'),('I\"ptQ[Z6x','wp-includes/css/admin-bar.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WƩIOSXaTC','gef% 6buCtA=βro','',0,'?'),('t8p̋z{jDp','wp-includes/css/buttons-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5<f$9	?ab7','<OMQJ+uնB/i!Ds4MC','',0,'?'),('Ul1ȕDbmg','wp-includes/css/buttons-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$pi','9xt\r2>۹\"NC礤n','',0,'?'),(';^𩸴8c','wp-includes/css/buttons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޯ<	!zl7om','IؼG	5\Z\Z}J\"F/F2','',0,'?'),('з&L۽¨VN','wp-includes/css/buttons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xߘ\\_mDnT[','0	gXG`ʕ}}/bH#X&+<','',0,'?'),('F\\C?Z','wp-includes/css/customize-preview-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QIRmb@d','5Q0ZGYu\n>WcZ$G','',0,'?'),('Ư0~\rjA4u','wp-includes/css/customize-preview-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˑѡKiӰO','֯T#Ȥz\"_g?\0','',0,'?'),('gVHIw!','wp-includes/css/customize-preview.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RȆ0$i','gy\0rO`A]?x&v\"c','',0,'?'),('ylsU><','wp-includes/css/customize-preview.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iȎ?=FځX','d>͊ZcD8_7{J','',0,'?'),('pS`]T]D','wp-includes/css/dashicons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׃𫙼Gu','A١*xVL=a7wX^DaO','',0,'?'),('LyE{f','wp-includes/css/dashicons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<& %!8\rS','6H=Ȕ<q5%|Ԟ<*','',0,'?'),('poX0%','wp-includes/css/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&J8B#:%K',' J\r(Qڣ䲒Qk5ߪqhs','',0,'?'),('ꍥ2jEbg؈Wx','wp-includes/css/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XZin8\Z~t/','Lg\Z4aHɸTXP3Gz~','',0,'?'),('LsЇś\nc}>K','wp-includes/css/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{@;LnUr','7%2Na-% e>~xr<','',0,'?'),('_|TM^J','wp-includes/css/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wp9uU5L(','b!b@VW7À͜','',0,'?'),(' c̫)I\np,͑','wp-includes/css/jquery-ui-dialog-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b.|Ri','L/ݭn YuJZqz:<\\@R+)','',0,'?'),('~F㫎>dyj','wp-includes/css/jquery-ui-dialog-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.R8)I','oƐa-t]ڕꏋl','',0,'?'),('iPÙld\0','wp-includes/css/jquery-ui-dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4{GjƶFEiyp','dF\nst %:̑,UNW9JV]5L ','',0,'?'),('@V$K<1*','wp-includes/css/jquery-ui-dialog.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eޒ@*','HR5;X/=ѧ?80eӅ','',0,'?'),('\05g꫔c0\"D','wp-includes/css/media-views-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nˮN\\}`*','L/<Z_+t栲\r.(oR','',0,'?'),('_8}?','wp-includes/css/media-views-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' mIYK^',']t)ݓJp0{Rr|','',0,'?'),('SڰpGMǯl','wp-includes/css/media-views.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x^mvnmӇ','rG۝:V`-d+c','',0,'?'),('4%IHOʰL','wp-includes/css/media-views.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a\"Z#۶<','B[\"CZ\Z(0gGv{L\\','',0,'?'),('Ǥ>zԄ!J]>','wp-includes/css/wp-auth-check-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	D-Ղ\"','BF0g#@qA˜M?/3Ic','',0,'?'),('Y$\'o','wp-includes/css/wp-auth-check-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<d5l@k','!Tʍ2-wG[ȉ','',0,'?'),(',CUU9i-','wp-includes/css/wp-auth-check.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zm?k;쬒','he٠G\Z0UXh(xVՏ\\tbG#','',0,'?'),('Y68H;%,_c\n','wp-includes/css/wp-auth-check.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZNKzy?\0w','ϰ-KD2+T7u','',0,'?'),('w5)','wp-includes/css/wp-embed-template-ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')6	؞мq ','o+8]SuH.CgR9&+\\W','',0,'?'),('ynm;/UsK	','wp-includes/css/wp-embed-template-ie.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z<wV\nӜwr','fV0	՗6ҹC5Fc','',0,'?'),('/ɘ]^W\\q','wp-includes/css/wp-embed-template.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RLjh2','e\Z,OpQy׻.\'}','',0,'?'),('zQ<\'U~R\\','wp-includes/css/wp-embed-template.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C3JdmtGV','t4yQ.$ّ1*R.֖','',0,'?'),('\\[i%Ͱ<e>','wp-includes/css/wp-pointer-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2bǷmq7{','$σQ<aC@irÑfamx','',0,'?'),('jQe;e','wp-includes/css/wp-pointer-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KٚtAQ','c5WLZ,6=੒\0{q@cVUb','',0,'?'),('sC4M**B)','wp-includes/css/wp-pointer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<?\Z(U:.','8GN%|ٹm\r+V[5u	`','',0,'?'),('-藂Y{]ns','wp-includes/css/wp-pointer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','鋲X\rXRHr)','ţڒ\0s	Xk4WXz*i?xq>*','',0,'?'),('xW2euvL','wp-includes/customize/class-wp-customize-background-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pχt|3','Rv3~|.OLtN`Ѯ','',0,'?'),('V^3m6._P','wp-includes/customize/class-wp-customize-background-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')@tj23W','40^+u*:ޓ4q[#Om&','',0,'?'),('D6S/cQ?','wp-includes/customize/class-wp-customize-background-position-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n]3<L(ɰpH','̩l<)m\0^K09\ZΒB&','',0,'?'),('MYG\\tX/','wp-includes/customize/class-wp-customize-color-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{t;VoT0@E','a(fGQ\rк´Fad3KNU*(','',0,'?'),('\'T́YǙ','wp-includes/customize/class-wp-customize-cropped-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[W\'\"fIޙt','ń]&X/1{tKtq	','',0,'?'),('Ns','wp-includes/customize/class-wp-customize-custom-css-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Yp!|Cz?T	','׹u$A<Do\r>G5␂XvgNr@D','',0,'?'),('Y\0)\r/j)Ar','wp-includes/customize/class-wp-customize-filter-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Vv>A $','\'U(0T}wn>R]','',0,'?'),('Zx12KZ,','wp-includes/customize/class-wp-customize-header-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\"MJfZ}4','2&)C(뵳auwc~\Z','',0,'?'),('\'Kzf','wp-includes/customize/class-wp-customize-header-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3pGs0','yp\\,ˍ%u5a(VS%','',0,'?'),('>\n5Z','wp-includes/customize/class-wp-customize-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uih- K','%\\Iu=\nQ`v9}%','',0,'?'),('*Oi','wp-includes/customize/class-wp-customize-media-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sZ])g>TpJ','Fеj/`Necyð{.p\\E\'','',0,'?'),('hS:`','wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nZmd5990','îb,/Ie8č|\0!= RE','',0,'?'),('3ƹܕjbiΥ','wp-includes/customize/class-wp-customize-nav-menu-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fg;plu_<A','ZFKX+\rM٬znNn','',0,'?'),('CؚTR!vF{','wp-includes/customize/class-wp-customize-nav-menu-item-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';jҿC[cnCDC','#gge@T\\\0TR{V_','',0,'?'),('{	\n|p٤','wp-includes/customize/class-wp-customize-nav-menu-item-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KiGmPjwd\Z?','ZYDɾ~PeG{VG4\"\nx','',0,'?'),('b+ƴݟ3','wp-includes/customize/class-wp-customize-nav-menu-location-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!zNHo;%?','_g:+/W]M6\",_y','',0,'?'),('G ~`','wp-includes/customize/class-wp-customize-nav-menu-name-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{`ٖ_7Tȥ3','烑:b	_䪳Nw+XD}*]','',0,'?'),('-B|tS^','wp-includes/customize/class-wp-customize-nav-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ÓBp\rhq\'Tdo@','[ߊNsRݏ,P,.>L9j\"','',0,'?'),('k0Ba`','wp-includes/customize/class-wp-customize-nav-menu-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xh?ץ?Q&','Xq\Zm#9;bv\\t!\r(.LxF','',0,'?'),('xm\0~','wp-includes/customize/class-wp-customize-nav-menus-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u:Q&S','Y.x~u:\"X','',0,'?'),('@}&J~¾&\0','wp-includes/customize/class-wp-customize-new-menu-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[!A[\rZL','fΣ*޸oS{~`N6','',0,'?'),('2㺨a|Fl3]','wp-includes/customize/class-wp-customize-new-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dB;Ǯ\nJm','N;=Dӟk?	qdv','',0,'?'),('Yq','wp-includes/customize/class-wp-customize-partial.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e0=[m({]Xe','ef{_R=}^ױG','',0,'?'),('y\n,\nC|[i','wp-includes/customize/class-wp-customize-selective-refresh.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j;c>oa','-+]!qe(!l@ݜ8','',0,'?'),('T6K?s 7(','wp-includes/customize/class-wp-customize-sidebar-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!T+caβF',';\Z27beZ\r>u\rv\n.0|^ˠ','',0,'?'),(' ,eOzÑ','wp-includes/customize/class-wp-customize-site-icon-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\r4##Ui@5','S߶&1g^\\quQ,r/','',0,'?'),('?Ǆ:\nX','wp-includes/customize/class-wp-customize-theme-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%t_','hEec{0[hMzm&uFs~+','',0,'?'),('XQd9rڼ','wp-includes/customize/class-wp-customize-themes-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.1\"AV','3܀CqTpɡC>','',0,'?'),('e\\kcXf','wp-includes/customize/class-wp-customize-upload-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JFyžr@{','EN{tMjXIAǧ_}noY9','',0,'?'),('[5YNhKM','wp-includes/customize/class-wp-widget-area-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H|2̫e!M','j.+\\2}|+,IIޚz.','',0,'?'),('\nT/\\9$YU\n͌','wp-includes/customize/class-wp-widget-form-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4;$f=m|','KP[ġ<8RB⭫e','',0,'?'),('\0.}fwA','wp-includes/date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')hJ}}\r','S`Q4bܯ)A4[do\'	i','',0,'?'),('}{RҢ\"','wp-includes/default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dk	r0r','͸J ׀>K}#z8 cam','',0,'?'),('R,A\ZGJ\'-','wp-includes/default-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LF<&HeD}t','|AuHr@5LyS/\'oa9S^g','',0,'?'),('VL67G^l%D5z3','wp-includes/default-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r\nRi|,-y','.[[´wiZ4t9<ɸrtvK','',0,'?'),('p.а[ÍD','wp-includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A*`j84l','w<2JWCNwi|@i>c','',0,'?'),(')]Z$P%','wp-includes/embed-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>EVJ{;6!*','OX[	˩\rNm-\\UcG@@e','',0,'?'),('9ekkRoS','wp-includes/embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V7ЄEg^<=','cx.HR8-8DZBp7,','',0,'?'),('\"b9e|_','wp-includes/feed-atom-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o1C\'E\'','bn|/y\'Ec+ɹg;\Zǥlq','',0,'?'),('2@kw>K2','wp-includes/feed-atom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','г@1pYPU4','@ފ>9]^J6+\'P\ng@c','',0,'?'),('ȼ؟\'\r`','wp-includes/feed-rdf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|dda6\'ޚ',' 7R _0:8i81','',0,'?'),('])	{?R}','wp-includes/feed-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M3?g.B\r','ibgF+06\'pV/WU	','',0,'?'),('߲;0','wp-includes/feed-rss2-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XٍHϛؑKE%','_Ҁg<]Zq7bckP\nc','',0,'?'),('_*⽞L0>\r','wp-includes/feed-rss2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\",=\0d{7','LPl&&n-UȜϠȍNK=','',0,'?'),('{RC\Z.*\"Q','wp-includes/feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')jỲ','>n>@@\"?mX$UZl;IE','',0,'?'),('\Z5o#R\'/l','wp-includes/fonts/dashicons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0!_yH','_=LPi\Zb)*5/','',0,'?'),('΢S˪\nBV\"','wp-includes/fonts/dashicons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xih7w#؟','\nȾG@kJ	\';6<\"','',0,'?'),('<kUJv%1','wp-includes/fonts/dashicons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FFŃ',' ^b34\ntDkk*&l{','',0,'?'),('f0ͭ~)','wp-includes/fonts/dashicons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z_rY+ʂ;','yU]f8tlL.','',0,'?'),('ŉ	i/Э','wp-includes/formatting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ia5O\r>8jY','ޒ\'&}N{TJ@ChV','',0,'?'),('\Z)qtsCI9','wp-includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ai4*I,\"p.','\\3XoV>6q_71QW(؛t','',0,'?'),('b`K\'컜K','wp-includes/functions.wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؇X=|}%U','.(׬*BM]\rm_hw%C\\m\re','',0,'?'),('h d껅2_r','wp-includes/functions.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eJ8ZW2','lv]y1t?SdBTR1','',0,'?'),('0RJ{yˣ','wp-includes/general-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ETH^','Q]Gr џNG-q=oQ;|v','',0,'?'),('/&2ѡ\rgDs','wp-includes/http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X:\0S\rAHj\\','͎]q*$d6mu<R','',0,'?'),('.IhU3+B\Z','wp-includes/images/admin-bar-sprite-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q8o','*ETsal^pXZ\0','',0,'?'),('Ư	\'CԻګ\Z','wp-includes/images/admin-bar-sprite.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S:W^','rN!`VOcKviՀ{Fn\Zle','',0,'?'),('r_/HG=%<','wp-includes/images/arrow-pointer-blue-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%mrތ]49c','{&DOzAf/gáA]~(','',0,'?'),('@̘9#Ly(','wp-includes/images/arrow-pointer-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wb·*L[','fbZD1.Vaw4l?pG^{','',0,'?'),('G5@07','wp-includes/images/blank.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H+51	f]9','ӡ:,;}&ZNYKM\'KF![V','',0,'?'),('>M8 ٵ|','wp-includes/images/crystal/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SI0An','L%XO+Aa!S\\܉&','',0,'?'),('J\'#rN0a\r','wp-includes/images/crystal/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nV:ωG-#k','~B\Z-׼of|Wx\\|M)ˢ','',0,'?'),('wL0]r.','wp-includes/images/crystal/code.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`119',';67\r!x\Z_@H&C-','',0,'?'),('!ެ߳p','wp-includes/images/crystal/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A>)*/!-','n$_u	$Q3E׏r|Jm','',0,'?'),('Dm\nzHS','wp-includes/images/crystal/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'^csD3T\\','gt( Ŏk`5͒JM5:j','',0,'?'),('j5F+o','wp-includes/images/crystal/interactive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rm``9','$멘<x1ՓIRV-VZ\\jg.','',0,'?'),('ǊEvc,صyS^','wp-includes/images/crystal/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']LciGfQ\r','vpmc6Y~\",!VEXll\"z','',0,'?'),('^Ð+y|','wp-includes/images/crystal/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','59Т1Tn','e\rCi0[R8@GaJN','',0,'?'),('\"RŜ','wp-includes/images/crystal/text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Ѳ#d%[','n10<;\nIp~f⠸z','',0,'?'),('U$i\"u&9','wp-includes/images/crystal/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lڤ;=','S\rIU9_<f`&HYwu','',0,'?'),('*-3uE[O#','wp-includes/images/down_arrow-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s$6(@a','L\nA}]زC\\ijM^','',0,'?'),('\nO_;]/^','wp-includes/images/down_arrow.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e]:uWv\"','ǘReO:n{{x7hPod','',0,'?'),('Ҟǟ	Ks','wp-includes/images/icon-pointer-flag-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2b&Zr','4Bȥ\'x+chҠVn5I>j','',0,'?'),('Z	r!ޏf	','wp-includes/images/icon-pointer-flag.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',E^j`\'','oq9a{)h}=#Tק','',0,'?'),('Y,eAw`','wp-includes/images/media/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9h\0ìu','\0Bb3\'\')JG ](G9Pr2 s','',0,'?'),(':n̣RMti#=','wp-includes/images/media/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','taCA.Z','L>$\noixoj-\nL]G;q','',0,'?'),('3\"(za48','wp-includes/images/media/code.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-oUʓUU_','\'eM a[R#q2kz+*<7\0j','',0,'?'),('(?>SN揚&','wp-includes/images/media/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-IBh@b',':oLJDj$->i\'6n֠Ui','',0,'?'),('/<ا^ɼf}\"$','wp-includes/images/media/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v48Αy6d','ø`f	I$ _ZX\"0\r,','',0,'?'),('rYSxwDY˚J[','wp-includes/images/media/interactive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R׬˂ôŉhH','{ [K\0!긽/\\lw.','',0,'?'),('HVեdpVp','wp-includes/images/media/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\0Ṫ?','v)\n6Zl2В1!+	','',0,'?'),('9s3SZ,p8g','wp-includes/images/media/text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zs0ȝQK','g?[D*p8qVѓ>N','',0,'?'),('\n%f[!aErtgi','wp-includes/images/media/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uhq','DBUMiOb,e=W{','',0,'?'),('k/y&G','wp-includes/images/rss-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ya[Qrj','yS0c`\n7as#nY','',0,'?'),('r؁=Ԓ','wp-includes/images/rss.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[(.*NZ','j(-9_E-#we$]o01u','',0,'?'),('{\r-}^','wp-includes/images/smilies/frownie.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q','r~Dzoh߱ػ\">E+Ke','',0,'?'),('Т펹|@','wp-includes/images/smilies/icon_arrow.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ	(','J_K`bf2\0v<','',0,'?'),('㯩	\'ިV','wp-includes/images/smilies/icon_biggrin.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YpR+0}kN{k','XqWd%±6Uh','',0,'?'),('$͓bHn,\0-','wp-includes/images/smilies/icon_confused.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sYFPZ6,','0]\0r$Otu<*g!g','',0,'?'),('X,ECj$_8I0','wp-includes/images/smilies/icon_cool.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F~ߢ.>t8','Y}c\r\r|&L(I˔➱wZ㤖','',0,'?'),('ĔԼpPZ	H','wp-includes/images/smilies/icon_cry.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E>z?ApmWlA`','Mm/Um9=ع.?@','',0,'?'),('!_輵p3pnL','wp-includes/images/smilies/icon_eek.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_sjN_z','*M-rm7t\Z]','',0,'?'),('Obc\" |J(','wp-includes/images/smilies/icon_evil.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cVM<\"!.','6wB@4#՘','',0,'?'),('JBGT;,lT','wp-includes/images/smilies/icon_exclaim.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\qE\Z!HY__={_','|}rh(XGUԼ]\\F^WMR','',0,'?'),('\"u@TS5','wp-includes/images/smilies/icon_idea.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"m%hSr','AWY(U)J1Δre$u*','',0,'?'),(' n$q^qf','wp-includes/images/smilies/icon_lol.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MZ8|,','o2vz{6>~F6؟','',0,'?'),('(הWh@=a','wp-includes/images/smilies/icon_mad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׾ie\Zc{0',';{gҽ*w|&~N:z>W3\rC#','',0,'?'),('\ZUEs(#Ep','wp-includes/images/smilies/icon_mrgreen.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JRww','^m~\0kO[\Z:`','',0,'?'),('ki.\\','wp-includes/images/smilies/icon_neutral.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Z','v,(_˘sO','',0,'?'),('7M3$','wp-includes/images/smilies/icon_question.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'u&EqAmN','f31a	Yr@PGU}','',0,'?'),(':[&b[hY','wp-includes/images/smilies/icon_razz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˭=J@','X,~Gml)wYDs&J$Z7','',0,'?'),('$0S\rr','wp-includes/images/smilies/icon_redface.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mAR!4a','/ ],fDNΏ,	wab?L=','',0,'?'),('B]nȄ87g','wp-includes/images/smilies/icon_rolleyes.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ȼ_Ҹ*>,\Z\Z!j','q_ݷ^e}	HuD襞\niY\ZFf','',0,'?'),('HPw%8','wp-includes/images/smilies/icon_sad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\'=Oj?uA|','K݄Xdo&)\n4SX3.ߎ','',0,'?'),('e97aJS','wp-includes/images/smilies/icon_smile.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G)öu\\\nM','I+x#iT;W͗1Ex߱','',0,'?'),(';Wct*+Br','wp-includes/images/smilies/icon_surprised.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ri\r^@8','6Mj2O88.V}*򱋯','',0,'?'),('\\:ڈ)g,\\','wp-includes/images/smilies/icon_twisted.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b.8\Z|`QLF','t/\rHFTЉceNDKAQ','',0,'?'),('8P5aĨ	','wp-includes/images/smilies/icon_wink.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZOZg94','[mHMR\Z6JbKrmKM','',0,'?'),('g|y_o4\"XN','wp-includes/images/smilies/mrgreen.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-5^Jj','Mg$+;\05H&\\E6%w','',0,'?'),('{Y\\z錿}c','wp-includes/images/smilies/rolleyes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' O2Ofݣi','fK)\nd!]\r)\\}זl^','',0,'?'),('ջZml4ˮU','wp-includes/images/smilies/simple-smile.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K{fwh','?Yag\\<y0\0183Hg','',0,'?'),('}`g\"P2V','wp-includes/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\q9)hdxR]l','Z\\J)q1C睤9~&{','',0,'?'),(':XqݝJ\\5P4','wp-includes/images/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1c~\'dvvHq','I9%-7CP<r\\c\"x{','',0,'?'),('}ĉ=t','wp-includes/images/toggle-arrow-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\\CDr','-N7~@}_=V_@A','',0,'?'),('ܵ[Ҳm%6S8:D','wp-includes/images/toggle-arrow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·a;d*','[b\Z;]f0s|:%','',0,'?'),('/鹠ΰ1iw','wp-includes/images/uploader-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&-OÕ~','r\0\'_>6QW4ڠR','',0,'?'),('_43=','wp-includes/images/uploader-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Mm','p+/i!Zţ6m','',0,'?'),('x9@^6ߑo','wp-includes/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[NW_pw0','ޣ^Qt3HunU❻~\'T2','',0,'?'),('hFuQe ','wp-includes/images/wlw/wp-comments.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L6]P.s','zl\ZCD#aN3\'XZ','',0,'?'),('Pq-t@l','wp-includes/images/wlw/wp-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1	ʚ7w3K*','5 }x(r:a,zmKH1|/+','',0,'?'),('6bg>_','wp-includes/images/wlw/wp-watermark.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';uMmܭD|wD','SnR\'X^khɑi7','',0,'?'),('~U\"&','wp-includes/images/wpicons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nVo$Of~7',']کA=ђ%q%aMBUp','',0,'?'),('g$G\\;r1X','wp-includes/images/wpicons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dSuqV_a','cZ_?n_K61\\}r','',0,'?'),('\rEU̈́','wp-includes/images/wpspin-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}3Y(Im','9N*8)qX-ʴooyT','',0,'?'),('Rx4Mp@9u\n֊ p','wp-includes/images/wpspin.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nmh;\Z@','m5^í%n4<E\"kXzӧ=','',0,'?'),('N\\|`*,)@4','wp-includes/images/xit-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rT`?J/','-Pfy$q\\_xbcX.4','',0,'?'),('\n\\ɶ.5','wp-includes/images/xit.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')X`1H','~vf|e]\0T\ZUl(\0','',0,'?'),('|/ڒ\0[*4x','wp-includes/js/admin-bar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zA擒ZG=','5( oKE\n{E{C<J','',0,'?'),('MР\0A9Q+','wp-includes/js/admin-bar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3\nȗMi','ÓsFU*ISAkkX26{թ','',0,'?'),('R3Us3}T','wp-includes/js/autosave.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\"FL7GN','WxoE,\\$R	#7@Z','',0,'?'),('wul|pQ','wp-includes/js/autosave.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6k}}	f%',': jj{Ihy1>+7@qC2c','',0,'?'),('PE۫7r|oI6>','wp-includes/js/backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cݾR^{3&','͜QI{x!_+\0fd*\"֞','',0,'?'),('\npGnu:','wp-includes/js/colorpicker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V g-','Vw%%:3CQ#+g	e}','',0,'?'),('0E\00XH','wp-includes/js/colorpicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \ZYb|$@q-','#,(UoދQr\rLFM;Ҕʈ','',0,'?'),('pUya	bva;8','wp-includes/js/comment-reply.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NخT&\0','%[g㢓yWd8UW6jU','',0,'?'),('1X/t60^Ҁ!7','wp-includes/js/comment-reply.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\'&) {/z','Z9\ZdYֆ^?\'Kg','',0,'?'),('bY,ϥYr۝;','wp-includes/js/crop/cropper.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ky5ni*M(','ٸTޝOwLy=}gTl','',0,'?'),('\r%%yS`','wp-includes/js/crop/cropper.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H.so','py,BG-t=s','',0,'?'),('(|nsARF+','wp-includes/js/crop/marqueeHoriz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̮;Lo\n','|Se|./QYW}(','',0,'?'),('Z\0Y æfg','wp-includes/js/crop/marqueeVert.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\09R','Kcg$e2\\p$1z`CkJ','',0,'?'),('r\\jA$','wp-includes/js/customize-base.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\n6\Zp\Z<{','\\?uzB)3/w20gfZ#','',0,'?'),('V\nU`_58','wp-includes/js/customize-base.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JLPוXX;6l','4oK)X\rV!n00','',0,'?'),('V}Pm/|I*','wp-includes/js/customize-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','75\\a3\r\"','\0z:yְ	3:o\r\ZD!Z]^>w','',0,'?'),('bҌ &?{','wp-includes/js/customize-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','򺘾D@xG','>=\ne.QЌ[sC','',0,'?'),('xЙ)DC<','wp-includes/js/customize-models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':yt}ɟDc\n2@','>LfZ,{|\'acp6Nj/϶Y|','',0,'?'),('\nNNMۑ4;p4','wp-includes/js/customize-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hJh','EOLQz(\Z\"|ѹ3lM6','',0,'?'),('\Z{:\Z4f','wp-includes/js/customize-preview-nav-menus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' sLfŃL?','^)\n\ZS;b\Z(@(y؂^Pv0j\n','',0,'?'),('F~yc7v-','wp-includes/js/customize-preview-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RiRz3\'o]lQv','#RQL\\D\'l$vT%','',0,'?'),('9\r5\'X>?','wp-includes/js/customize-preview-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C`2l޳','^u,`!-<j0g,	ͧI','',0,'?'),('9rMԧ','wp-includes/js/customize-preview-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[@*NjNzXK','Ecti7!|<\Z.1m%|\0Nc9v','',0,'?'),('42)A.;4','wp-includes/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aX*I%','oxp}.Je޽ܯlI','',0,'?'),('>ql+m\05Ħ\"^','wp-includes/js/customize-preview.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qZ*FF\Z:','_}s|Cp4-C.ۋ]^E*6','',0,'?'),('UNEAgt','wp-includes/js/customize-selective-refresh.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ůtH[V~r','2;DTn6_T<DN\'','',0,'?'),('0jVƽf:5`\\','wp-includes/js/customize-selective-refresh.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d}?hv$t+','\ZҼ2vùUJLl.B','',0,'?'),('QY1TlVr<','wp-includes/js/customize-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+K3R\Z','i6#|qwvq7\\}5AyM&','',0,'?'),('Y^~5~pG-','wp-includes/js/customize-views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\rޖUn?r)','$|_UESFV˩?m\';vR;','',0,'?'),('!(t<Թ','wp-includes/js/heartbeat.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G@\rTj,8$S\0Z','A,!LE5I\ZFw[\0c<o','',0,'?'),('n97I.Oҝ޿','wp-includes/js/heartbeat.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l[t%n7','HdHǿ~aO\\A~L j\Z\Z6Bci%','',0,'?'),('ygzaU\"	XKG','wp-includes/js/hoverIntent.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʳYCcOnכ','3\Z8	#οY!оZ','',0,'?'),('S.FȫAj(:','wp-includes/js/hoverIntent.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P\nޅL1AWb\0','\\T8ifQ0\Zi`Mx','',0,'?'),('^^\\Q=(w','wp-includes/js/imagesloaded.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vRfW7dB','vxeխr)Lz/@U-@\")}\\','',0,'?'),('%bQbM<x','wp-includes/js/imgareaselect/border-anim-h.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z,ntZ^6{Lp4','qschm-%x\ZBx\'E:','',0,'?'),('F\"vh$Lb','wp-includes/js/imgareaselect/border-anim-v.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' z!<7*','>d:j1<!46g','',0,'?'),('<FPz22~','wp-includes/js/imgareaselect/imgareaselect.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}(()3󵕯','q!ݿJӇi\nE5s!\r%','',0,'?'),('8/B$8`m','wp-includes/js/imgareaselect/jquery.imgareaselect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zBRS:Y','|<i-}QY&D?4Xg;>E','',0,'?'),('ͤ6\0/k','wp-includes/js/imgareaselect/jquery.imgareaselect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%.eByUr@%','qZr]#!#[>,!Qd`','',0,'?'),('SX+71?-','wp-includes/js/jcrop/Jcrop.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z7eQ%K','!@X7JŃp3K;S*!L','',0,'?'),('g\"}_7J5','wp-includes/js/jcrop/jquery.Jcrop.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V̞/Kx','2S[6Dv5bs=NLw','',0,'?'),('T.o@Ψ2wvX','wp-includes/js/jcrop/jquery.Jcrop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/aLru4\Z','Ϸydix{p+neځf','',0,'?'),('vޣR','wp-includes/js/jquery/jquery-migrate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lWbX[5y^l6','Oͭz%(s!?,e\n\'\Zɀ+','',0,'?'),('a@o\'kb','wp-includes/js/jquery/jquery-migrate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q!NS XdcQ','|\02+Audm5ǉ','',0,'?'),('ʙ\0}甠K.','wp-includes/js/jquery/jquery.color.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-EG>vJ','e!qp2 jU*W	5}D\r&_','',0,'?'),('vҸ);D~J\"q','wp-includes/js/jquery/jquery.form.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.,+\nq','81kJ`VWE4\rˌ|M5X','',0,'?'),('&=\Z+t\"/k\'\n','wp-includes/js/jquery/jquery.form.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀsEVM-','92	zFu4C-aS_GJ%si%H','',0,'?'),('P\Z/l%','wp-includes/js/jquery/jquery.hotkeys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','┃&݋\rFư',']!G3[#:L\r:vC>','',0,'?'),('-plEk/','wp-includes/js/jquery/jquery.hotkeys.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S!}EU\\bgh=','\ZJ]x ծTc0n9  +Vk','',0,'?'),('g#,vM:','wp-includes/js/jquery/jquery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?v@̒N','/˅\Z\r*1N(S\Z	ϙ','',0,'?'),('c,[xޫ3\n@','wp-includes/js/jquery/jquery.masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@`&n|}A','\\ۙ	}Mg $0 [B','',0,'?'),('{)4e4p:fW','wp-includes/js/jquery/jquery.query.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';XzǰwC','ug^+imG\rFxiX','',0,'?'),('(g%\04l>','wp-includes/js/jquery/jquery.schedule.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Tkf؞','?vEʔwjCP՝_','',0,'?'),('qh665y|=?S	','wp-includes/js/jquery/jquery.serialize-object.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\)Jl<\"','D{zp\r]<@7>0(h','',0,'?'),('0<PsמH22','wp-includes/js/jquery/jquery.table-hotkeys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֔#tgPg',':Afxׂd7#','',0,'?'),('򱠭BRzY','wp-includes/js/jquery/jquery.table-hotkeys.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ogo~iI	','<=;:t_,wăI,,','',0,'?'),('mY}ɽ?','wp-includes/js/jquery/jquery.ui.touch-punch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LmQ4փ]','k>jT@z՜.OBj0\'t','',0,'?'),('Ƭ+\ZId^i <\0','wp-includes/js/jquery/suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':$tVEʿ','r,Kpŗrq^b\\=rZ]6+','',0,'?'),('3Ƈe(ú9','wp-includes/js/jquery/suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\\+A)n.;','I<{\04`<!jZ8돲DHW','',0,'?'),('6٨	:{^D','wp-includes/js/jquery/ui/accordion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3L/oo. ','r0JJy;\n8(Pu\'6Nq','',0,'?'),('gEd1D}','wp-includes/js/jquery/ui/autocomplete.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>bXeså̐','n}|p9jB?+*W!F%R','',0,'?'),(']/~qXŎE','wp-includes/js/jquery/ui/button.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ЍQ楎','iOϞ)+bx!5','',0,'?'),('%y>}Ho(6','wp-includes/js/jquery/ui/core.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WDSejq','=}*VF]O7w7$jT^K3','',0,'?'),('@k/I?T,','wp-includes/js/jquery/ui/datepicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','϶=S','RP7ȚMQӍԊ\\p!^e,R','',0,'?'),('Fe}(','wp-includes/js/jquery/ui/dialog.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>͕xQONi^\Zb','8m1Jtj}#zǏԒAdv\Zd-','',0,'?'),('p7uL_{2Û','wp-includes/js/jquery/ui/draggable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D<\'wI\0՜6','PRA`5;[Cb))* kMLez ','',0,'?'),('z|zxv','wp-includes/js/jquery/ui/droppable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','޿R$(ѦS','W(E]FnGr/}J','',0,'?'),('&cYD#P{+','wp-includes/js/jquery/ui/effect-blind.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<OmA_;OL','9S\n^nTIYZdB#U}~','',0,'?'),('a5[45MepC','wp-includes/js/jquery/ui/effect-bounce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ky${״oL',':J=/m{q͆2[\0N','',0,'?'),('U$\\*1^S','wp-includes/js/jquery/ui/effect-clip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǓW#GZas','C5rC[5\0_mӕ','',0,'?'),('D\rh}!\n','wp-includes/js/jquery/ui/effect-drop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WVǥYF2','jE:Ke>\rPE{=Ӳ','',0,'?'),('ϊ=XbBz\' ','wp-includes/js/jquery/ui/effect-explode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\\A:QJ=','#ldd<ԐPb%49u-','',0,'?'),('AG,<','wp-includes/js/jquery/ui/effect-fade.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oOO_;{r5$m','\nvOIFKC<\"ˬj?p6 z','',0,'?'),('P\0\'0lv#J<','wp-includes/js/jquery/ui/effect-fold.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6^<DEl','eC6HT8Ҝ_','',0,'?'),('{Mii2n6','wp-includes/js/jquery/ui/effect-highlight.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*øN!','yW7Lf/r&اlJ','',0,'?'),('8`9?BbБ','wp-includes/js/jquery/ui/effect-puff.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ImlcG@ȳ ','D	1b0$nnmM(z*Y','',0,'?'),('8(\ZjZ]}','wp-includes/js/jquery/ui/effect-pulsate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o S@Z*p!','m	!ȽSQF_Pq\"!','',0,'?'),('4;V\'/f','wp-includes/js/jquery/ui/effect-scale.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}0e,)+mT','Ăjhvr&a\0\rydz','',0,'?'),('NVԱzZ','wp-includes/js/jquery/ui/effect-shake.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&3Hqˀ1','H#X{$T8exBQ:9\n','',0,'?'),('~w`5;F㮮','wp-includes/js/jquery/ui/effect-size.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=n2Z%','	0[ȔsĪj\'o96x','',0,'?'),('Y]ŞI','wp-includes/js/jquery/ui/effect-slide.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#G_MVژy','҈gRpf=)A&­Q]jA=Vf','',0,'?'),('l.H|S{','wp-includes/js/jquery/ui/effect-transfer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ި\0w}n','UT$FtuuoO΄','',0,'?'),('ݙP(O\'Ee','wp-includes/js/jquery/ui/effect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?qaZ,^m4o','w_|+\"25N]^Kr=#','',0,'?'),('7c¢)Seb','wp-includes/js/jquery/ui/menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dtc]8','QɅrnYun.k_Nx|!˫','',0,'?'),(':x=}','wp-includes/js/jquery/ui/mouse.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z`0 8\\9','[:JUm5<fLKITZ','',0,'?'),('nefA@R?','wp-includes/js/jquery/ui/position.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JX~C:/b','[B<s*;չC]+Ss','',0,'?'),('=fuA><Th@','wp-includes/js/jquery/ui/progressbar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MqTٴA?L}y\"i','\'xŬJ,~%\Z6a=m','',0,'?'),('-i>bs1','wp-includes/js/jquery/ui/resizable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\02|I,|','3\0{i2%E-4樢jրM','',0,'?'),('v\r&X','wp-includes/js/jquery/ui/selectable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ё쮒槶r@','Yh\'<vo9~\0\'l*s:YMv6','',0,'?'),('S0־K/17u','wp-includes/js/jquery/ui/selectmenu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}˪29Zhxi\"6','1V^F7J<\0MfXRnϜ5','',0,'?'),('\\AV*籿','wp-includes/js/jquery/ui/slider.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZkCdL/K','\'fe)&Boŷi#]&J','',0,'?'),('m-\Zm1w','wp-includes/js/jquery/ui/sortable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(~kk','i/U՜jK\ns>zTasUu^v','',0,'?'),('mE\\)o','wp-includes/js/jquery/ui/spinner.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':2a+R!e','I)`߹*NVjd̲cZ朸S','',0,'?'),('(5aHyo,X','wp-includes/js/jquery/ui/tabs.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S04%gcABz','58Ehx%I=`u,ӌyD2','',0,'?'),('-_+YnS','wp-includes/js/jquery/ui/tooltip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D?hi\r,q40','^xt`0hKX+]b,','',0,'?'),('!&i)^WR','wp-includes/js/jquery/ui/widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kyd?zx7',':u#`OÓz,n_','',0,'?'),('*\Z07ѥ1Oَ8','wp-includes/js/json2.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s{N|EO0','q3..j G\\RnݼI/T-','',0,'?'),(')(<','wp-includes/js/json2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ؙ?DX<','eB@MΥ%@$}tж[\n~ݘUq','',0,'?'),('| ','wp-includes/js/masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T Ql$[PNr@1,','\'D\r<ĩh=t)','',0,'?'),('rr(Jg(yt','wp-includes/js/mce-view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1qTD/XA1Z','39+XNBո0>+m\'WVj\'','',0,'?'),('f%uP','wp-includes/js/mce-view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'D-XTVAk',']rmpQNzwljaύfTJ2\"nU)','',0,'?'),('{0l(Ʋu9,wSu','wp-includes/js/media-audiovideo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VP<k;D.?F;','1\Zع;1gyDi\"0Vۗ','',0,'?'),('GV\\z#!;','wp-includes/js/media-audiovideo.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rStD','ӟL[(ڻmCu|-\'it','',0,'?'),('uN.A__','wp-includes/js/media-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LiYֆ1CM','`·q+Uph!K{\rs%S#','',0,'?'),('	,/Օ!gyd','wp-includes/js/media-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yQY;z{sxCdm','t)8ܿ*iMPทDM','',0,'?'),('R\\SC|ju9A','wp-includes/js/media-grid.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lX{񁛹U]bT','ШlH9Onv=+F>\'\Z|','',0,'?'),('YRYi/l@HX','wp-includes/js/media-grid.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	xTL','PHLk.K3kF8wI\05l9','',0,'?'),(')_J','wp-includes/js/media-models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s[#','o\\#{5wZ?$=3q_wCm聳-	','',0,'?'),('F GJBs7','wp-includes/js/media-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ف;Y-B분','jM.u	WV`G3;J','',0,'?'),('ȉV?	])A','wp-includes/js/media-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x6','r:T?^S1Ys6ḧ́\nW+,7d+','',0,'?'),('E?Юᾠ','wp-includes/js/media-views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r\0_WBA$mY','\'[1⺘2,泏GA_','',0,'?'),('6dxD','wp-includes/js/mediaelement/background.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p<eKc\\c8r~\0l','ͨ8Q\\fMJ','',0,'?'),('\Ze\rj!^	','wp-includes/js/mediaelement/bigplay.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qd6=Ҟk7bRgj','rm\"]=an$7-j\"\"4)NMr','',0,'?'),('7O+ǋ\'n','wp-includes/js/mediaelement/bigplay.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tl:E9n^','(Θ\\n lpuꑝ&]yiJ)','',0,'?'),('5[,	j(ƪ','wp-includes/js/mediaelement/controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$\"Ӭ?Ȥ','%pA9Xc<_:l#(','',0,'?'),('Gq@gm屪','wp-includes/js/mediaelement/controls.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@oZsmۊR','sP34	5>۲#vGp','',0,'?'),('{at\n\">S','wp-includes/js/mediaelement/flashmediaelement.swf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.D2;','Wh?Cexl}$ӈOJc_','',0,'?'),('+Ϳ#FtEǍ7','wp-includes/js/mediaelement/froogaloop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*B#D','є3N0P5y}@٪b1po4A','',0,'?'),('N`rHn0','wp-includes/js/mediaelement/jumpforward.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ᬌ.&wHS','|(\\Q&j\"n	\nuѠ','',0,'?'),('\' #s߾U|','wp-includes/js/mediaelement/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v&B\"o!e','_MG%2q0/ғ:;eWG','',0,'?'),('y!\0pZ[A','wp-includes/js/mediaelement/mediaelement-and-player.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','prG}_','@uD[c~o`S%[җ0YW','',0,'?'),('	?quM','wp-includes/js/mediaelement/mediaelementplayer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>`::Q7',')L:erMkՕ5(/6\Z5ėTt-','',0,'?'),(';&nbiٷ','wp-includes/js/mediaelement/silverlightmediaelement.xap',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OFmsK0,','\nRW#ވ Qē4E[\'z','',0,'?'),('AZ哖̅L(','wp-includes/js/mediaelement/skipback.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m0EkoHF','2ɖ<tfp\'P6߱)u@','',0,'?'),('ShS%Tz','wp-includes/js/mediaelement/wp-mediaelement.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9l','[7>+Hl)\0/K3x̿','',0,'?'),('D]|߼$','wp-includes/js/mediaelement/wp-mediaelement.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bw_B?|0S','C-Xi70AptB|(J\n@','',0,'?'),('M~\nT|','wp-includes/js/mediaelement/wp-mediaelement.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vGKWfeq','4x\rfߒnxJNH}\0au','',0,'?'),('N9{;','wp-includes/js/mediaelement/wp-mediaelement.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZcF\ZHp);l','\\/F	%\\VL','',0,'?'),('6X/HL','wp-includes/js/mediaelement/wp-playlist.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tj8C','Mcn􂘶v,u=#>G~','',0,'?'),('ˤԐ{%k#f','wp-includes/js/mediaelement/wp-playlist.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&EcN-kŒ','\0?EJXE w{:<','',0,'?'),('JE[7U\Z~','wp-includes/js/plupload/handlers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z6տua','^<K׏+s	el{;2	\'a{)','',0,'?'),(';(Xp`ҙpݷ','wp-includes/js/plupload/handlers.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B);\rz','\" 1z3S79xrc','',0,'?'),('VڮMjӁ','wp-includes/js/plupload/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u&\nTIz+','\0v1sN>cID٦I0-','',0,'?'),('C3!0QoJe `','wp-includes/js/plupload/plupload.flash.swf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\rvEROGҘtl','iiYS\'댵`R^yg4','',0,'?'),('\"c9&','wp-includes/js/plupload/plupload.full.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JC$Vm\'.\'','EJVU2b7jMy8]nF}Z?4','',0,'?'),(' p(?QnaZ','wp-includes/js/plupload/plupload.silverlight.xap',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tq\03X0b','R0AtRWE )օuTRY','',0,'?'),('5C)\nWu꽝/FcK','wp-includes/js/plupload/wp-plupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+oN8/:7&',' BN:cH1onqķ^4','',0,'?'),('Le5x?e=&','wp-includes/js/plupload/wp-plupload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|tfܚEGFQ',',+~H,BJ^602&&@[dʜ','',0,'?'),('?h;','wp-includes/js/quicktags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6]P,','f}/oVC@\r?-݈ςun','',0,'?'),('ߌ(2','wp-includes/js/quicktags.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qخߩ|/','>G6v\'w܁lK-I!qlw\"','',0,'?'),('ˍG䯀oeo','wp-includes/js/shortcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͡Pt}\r','1eՠO\nN:X}~sN8','',0,'?'),('g]bR% ZE','wp-includes/js/shortcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bj߭mq|$','y=Į\n?nBn0.X','',0,'?'),('Or#TG!','wp-includes/js/swfobject.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',I}pe~2q','?Lw.4MՒFJ>fI鴆','',0,'?'),('M٦M/`','wp-includes/js/swfupload/handlers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"\n@#g9+D','㼓g?5Zv++/U<+AgJ`V','',0,'?'),('`#GbC֊','wp-includes/js/swfupload/handlers.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y,k?XN0G;','DbfYu\'**Js[','',0,'?'),('\Z-x7(A4','wp-includes/js/swfupload/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[`^-oQWz',':)6a\"3r\rP\rN4yJַUq','',0,'?'),('D=Jǅ/	6ރa','wp-includes/js/swfupload/plugins/swfupload.cookies.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~\rڈk\\ 7̴','<ԫ!q2{Q:΅2U?','',0,'?'),('lXNEMCgVsA:','wp-includes/js/swfupload/plugins/swfupload.queue.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SR/J5-v͏','*;:jl30dsc\0q|KF','',0,'?'),(',BcԛZ4Y','wp-includes/js/swfupload/plugins/swfupload.speed.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AZ7kE`,*s',',EdҔ\nN-\09pM0+~0','',0,'?'),('$<@Řac\"','wp-includes/js/swfupload/plugins/swfupload.swfobject.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̵qV7T\\s','VXQ3L!h\"i#:@','',0,'?'),('$xM1>_8P\0','wp-includes/js/swfupload/swfupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lplD_q','XE\nɑ@~gG6','',0,'?'),('*t$ߋvns','wp-includes/js/swfupload/swfupload.swf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z%5e,rHO','in\"}Vu3)!ƫZϼ~\\C^&$','',0,'?'),('	1А々S:(','wp-includes/js/thickbox/loadingAnimation.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"h\rc&','BF`F-lڛRT6Յ','',0,'?'),('tZO\' \n','wp-includes/js/thickbox/macFFBgHack.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȰgW,/u','Rw/h&q]Z_Ngy','',0,'?'),('v{LJlōYz`(','wp-includes/js/thickbox/thickbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZPN2E^;','$đ\"?R4cFWƷv[\"殜¤[7','',0,'?'),('AE[`','wp-includes/js/thickbox/thickbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HsTX{B$٭6',';@0({oifKϤEQ','',0,'?'),('9:do\np`Ry','wp-includes/js/tinymce/langs/wp-langs-en.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ftSuc.k7a7','{h@D0Kcx,TMHd?A-','',0,'?'),('	vO.|ߤҵ','wp-includes/js/tinymce/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ox:`','Y#wOg^\'b:^	=跨|','',0,'?'),('\n$zX`1Bw','wp-includes/js/tinymce/plugins/charmap/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<|yBܔ\Z','~J\ne10o<-H<Qa','',0,'?'),('k$6O-Nx','wp-includes/js/tinymce/plugins/charmap/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XsZ@rf7r%|&','/XE[3sL`[0B','',0,'?'),('Aa@JŁ','wp-includes/js/tinymce/plugins/colorpicker/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T?W#@','O])/VRnhҶ$n','',0,'?'),(',< ?C]0A','wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\PPīZ()A','ѥ\n-$u\'\"xjnƎ+','',0,'?'),('HC!\"(','wp-includes/js/tinymce/plugins/compat3x/css/dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','11h+ezKk\Z\"','*3U#\n]]uho\rβ\r;5j','',0,'?'),('gosV;\n$','wp-includes/js/tinymce/plugins/compat3x/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\')}=k$h=','MqAmgZެHJ%\"u','',0,'?'),('0]qK\'fx','wp-includes/js/tinymce/plugins/compat3x/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E@\Z/a-}И',',|{J3x\\%M\'+!Cxm','',0,'?'),('!#I|F','wp-includes/js/tinymce/plugins/directionality/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7-,+','APpn5\'z~mcA{','',0,'?'),('&]0W\n)=','wp-includes/js/tinymce/plugins/directionality/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nH]H\rcV','w()D~ұ2bG4G:V$_$','',0,'?'),('Pw0h9','wp-includes/js/tinymce/plugins/fullscreen/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p4|v)g','aSb\\~24Yv&SC#]<','',0,'?'),('sŏU\'e@d','wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ipxCdɜ','rSHf\Z^_\\pq+Bu','',0,'?'),('\\9ã>Iz4c','wp-includes/js/tinymce/plugins/hr/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\rtO4','zp;Є+=6,Ƅf/\\Aj.','',0,'?'),('v\\Q-','wp-includes/js/tinymce/plugins/hr/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fa*ΐiT%Y','ȨVb-\ZUDq3Φ','',0,'?'),('πtGȩD','wp-includes/js/tinymce/plugins/image/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3:5O','DS\r`zޢWb,I-C','',0,'?'),('	Em[l<','wp-includes/js/tinymce/plugins/image/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ϙ\"񝬘','B#TCp[;Gf&59|\"\'i','',0,'?'),('!RpnLwm7','wp-includes/js/tinymce/plugins/lists/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ńc<*`@TX','\0BմCc@}%\Z>XwV%gy','',0,'?'),('J0jYgh','wp-includes/js/tinymce/plugins/lists/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 󶤧+wgB','@DxOw\Z<P؂Q%A.8P','',0,'?'),('`;\"-+~;','wp-includes/js/tinymce/plugins/media/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_8X/A5','[\n,m	.rj2','',0,'?'),('ƅ|_i/y	','wp-includes/js/tinymce/plugins/media/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hDX(R!uAU','r0h!,\"/c\'{	','',0,'?'),('ƪq悳','wp-includes/js/tinymce/plugins/paste/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2W/_Jnw]i','Wͨ(<EZtUȰNGR9G_ͺ','',0,'?'),(',(i7:^^#','wp-includes/js/tinymce/plugins/paste/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IYr','L°ڊ:FT7fǔ}q\Z','',0,'?'),('x덂@}Yi+','wp-includes/js/tinymce/plugins/tabfocus/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\'jEִ|\n5U','Z%\0GL{y1&oX>XyJ','',0,'?'),('v|-','wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1=uc\\$\0B6','cy\Zqm1i.ZX/\ZĕI[JN','',0,'?'),('?]P.12b','wp-includes/js/tinymce/plugins/textcolor/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HI8ۡp,|!','0KD\'+t\n3h','',0,'?'),('͓Y36lY','wp-includes/js/tinymce/plugins/textcolor/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ktHJ tLLA','!󓶋2zlrr?K)\rt{','',0,'?'),('G!#h9	&','wp-includes/js/tinymce/plugins/wordpress/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0\'~nV{cF','l*GyJL+	\"+ V','',0,'?'),('usy6\'v,=','wp-includes/js/tinymce/plugins/wordpress/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T֡#\\L	','=fe*ru8[`dtȃ(|bY','',0,'?'),('. \0_oE]A_0PJ','wp-includes/js/tinymce/plugins/wpautoresize/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\0XcO@p%','oLN꼨O(S̓w-Qi','',0,'?'),('}PÛP\\\Z','wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}˳QgѥDW','\rIzbo\'ivhhdTr\Z0U<','',0,'?'),('	P=N>b\"j:~[Q{','wp-includes/js/tinymce/plugins/wpdialogs/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ߢ9Z','$\'v D77Hl_cdN','',0,'?'),('3\'RKBf','wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G7(tt@','ێ/ԊkOb<8OgmW','',0,'?'),('<u꿖\ZܜY^','wp-includes/js/tinymce/plugins/wpeditimage/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g^ 3\\W','uzY_dPRG\"g/IϴW','',0,'?'),('6<C﮿V:(r','wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\0MTYk\n!','c2\0+%\\73#~]ݠ]','',0,'?'),('%\0zfNpS','wp-includes/js/tinymce/plugins/wpemoji/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','za1Pe=ߡzVb','y$]w#ܔ*#U}c','',0,'?'),('@,n\\+k','wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',,DUA','-&H}L\"D-7&s+.KsK','',0,'?'),('u3!pAf)RM','wp-includes/js/tinymce/plugins/wpgallery/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H4PDDM\\I','#lLx)$3xRѺ*\\9-','',0,'?'),('Oӿ;=\\Jzy','wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7`OtyO','?X2c^G,6Z><,2','',0,'?'),('kbgS','wp-includes/js/tinymce/plugins/wplink/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-Jn+$ZNf]','4Ə;X\roޡUż&߉\\fg\Ze','',0,'?'),('L)a$D-ӮJ','wp-includes/js/tinymce/plugins/wplink/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0ϲrJݻH?','pНSQع\Z=`tJ&','',0,'?'),('\"Etys\Z|g','wp-includes/js/tinymce/plugins/wptextpattern/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	J)Us','2sF|:U4{j(#4oH.j','',0,'?'),('3+z.6Q~]y[','wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Ei$Pwom','`7_jׄ\nlv+fU}+X','',0,'?'),('q82v&#M','wp-includes/js/tinymce/plugins/wpview/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x=vc:P-`N','SӖ|	K?MAQ`=\\M','',0,'?'),('Wly:\0Vn`d\0','wp-includes/js/tinymce/plugins/wpview/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z ~C7:UPL*','2t\nf<ݹ(\0C\'s9<','',0,'?'),('Z(>(1bޫZ','wp-includes/js/tinymce/skins/lightgray/content.inline.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N)8/|Ch','~}Cd\n˚\0eWRLjV%','',0,'?'),('7&Ȁ','wp-includes/js/tinymce/skins/lightgray/content.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/e8)Ѱ','r-w{v!15y\"*[','',0,'?'),('>/ᡇ_','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l([qאD#','\\sٶhb2.;m`Fr^&H-w	yV~','',0,'?'),(':X2M~','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','24vLhN!2|','3iA(pGDڔ','',0,'?'),('`S`NI^G','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(i@Gg0p','G</14ŅL5!','',0,'?'),('t0ga/','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~-x\'	','{ڋNo#X+Xe\'_>\Z','',0,'?'),('vڴVKP','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a%*ȻNm\'','munDe:s[E\ZUS%ޗ0!L','',0,'?'),('Qԁ27uL','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rbT4|:ksP',':\rk:yZ{Ȼ$*z]','',0,'?'),('P0aRz= ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/=;=>G=','Lj磗ue*S+ tl&I,TÚ]','',0,'?'),('\Zl3Ȋ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5e>#4','\"0C#f@o<aA;9b','',0,'?'),('>+ܞL[m','wp-includes/js/tinymce/skins/lightgray/img/anchor.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a5qȑ_4@','(afoxDpaQ6mtk,V^','',0,'?'),('L<#\Z}','wp-includes/js/tinymce/skins/lightgray/img/loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9KM:Tf9',';TO`(6,skZcR+','',0,'?'),('oPco.r','wp-includes/js/tinymce/skins/lightgray/img/object.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rdPE}u\n/MA ','#;!I.>uʍSVm{|e-','',0,'?'),('Xg5(=c','wp-includes/js/tinymce/skins/lightgray/img/trans.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7I 1FGuj^',' ûͥJOmO:ϙlW5','',0,'?'),('>~!gq','wp-includes/js/tinymce/skins/lightgray/skin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')T{ު-m{','BN=%ъ~3\r0vA,:+','',0,'?'),('Ĉ^A+lod','wp-includes/js/tinymce/skins/wordpress/images/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7~!\0\"w','gz.gV:[ЙH)Ȟ','',0,'?'),('FH30m:s','wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xR	YXݤ','m\Zcĭ][^Pw','',0,'?'),('c.Dr |','wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RZ?f.8	','.c%c*G~բ>Yd:7j','',0,'?'),('Ȅxy','wp-includes/js/tinymce/skins/wordpress/images/embedded.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pNy~n\"','{ux\'Jº@i\"H;]6h','',0,'?'),('FÃ\\Ofg','wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1vR','N3G\'`+R>P]Eγg/b?UX','',0,'?'),('_f;waځ','wp-includes/js/tinymce/skins/wordpress/images/gallery.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_PwPU4','<W~ض+hN91_3ws','',0,'?'),('FHȝle#','wp-includes/js/tinymce/skins/wordpress/images/more-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l,r%^x%','Y=_b|ʧ&f,<','',0,'?'),('N3j@pu5^','wp-includes/js/tinymce/skins/wordpress/images/more.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n\nm\0;˫z','$vo^U A\0:\\Cu','',0,'?'),('~a%!P','wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{6#UQ:|>#','([\n̻oRAo3^','',0,'?'),('#	>7','wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ImLWyݓH','\rflդ/;l\\\\.6r#P[','',0,'?'),('@{J5䷴X','wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U,:)؋\"QqY','\"Ooۈ<oES-MO÷YN!','',0,'?'),('7%Wy~׹P?x','wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lzV6`wmZBs','\r 8&J34бǽ','',0,'?'),('3^PMYHD','wp-includes/js/tinymce/skins/wordpress/images/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶B=\rz3j','iI/=MMX:MApv\r','',0,'?'),('۪	.ո\\','wp-includes/js/tinymce/skins/wordpress/wp-content.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kTNt\r5',']Ш7_9I;-۪\r=','',0,'?'),('ah#8c','wp-includes/js/tinymce/themes/inlite/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v3ɴ?C','\Z5ORmY/J?&ęV','',0,'?'),('	#A\n#b#=','wp-includes/js/tinymce/themes/inlite/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YEt>?','nSRvAv?l[@\r\0','',0,'?'),('r+zk; 4WI','wp-includes/js/tinymce/themes/modern/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʬٲm8u>','iam\"S!\ns:\"[?(rVЂ','',0,'?'),('n#t=\'b]{','wp-includes/js/tinymce/themes/modern/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uy#N`e3','swŤGj\'s??6X+rgF','',0,'?'),('(tTlDά7&MP.','wp-includes/js/tinymce/tiny_mce_popup.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AlTYl$hҵ֝','})*X5a[qY','',0,'?'),('	9fވUf','wp-includes/js/tinymce/tinymce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Xkmom*\nB','J\0\"3~#?\Zqh~GƓ','',0,'?'),('Gm:MľVLЉ','wp-includes/js/tinymce/utils/editable_selects.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jq2I\'J9E','vGjsf	ed&g+','',0,'?'),('*Lm&&2\nb','wp-includes/js/tinymce/utils/form_utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lUTLi','vLus<*rWҪ.\0|Rg','',0,'?'),('츃v6;~','wp-includes/js/tinymce/utils/mctabs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8O0H-Y','-Z۞Mn纰7!l','',0,'?'),('4AIn097c`','wp-includes/js/tinymce/utils/validate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#yfݳ(\0','weFQ@8	!rQ20','',0,'?'),('\'}0','wp-includes/js/tinymce/wp-tinymce.js.gz',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';|Zb=','\"I8c_;k6RrE?{d','',0,'?'),('HԹfk','wp-includes/js/tinymce/wp-tinymce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\n0prHv','ٿXT/FQį\'!miyʯ\0K','',0,'?'),('p۞2N<:Z7r','wp-includes/js/tw-sack.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9>','{n]\0ֈn\r<w˷X):','',0,'?'),('h+B','wp-includes/js/tw-sack.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DNkP\n~h','\'!,r!qܺp]^k,.A\rM_','',0,'?'),('鋭{^MU*_','wp-includes/js/twemoji.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\'D_','Q*s3\"Gŝ%4w19aF̏','',0,'?'),('M;C8Yyﲏ','wp-includes/js/twemoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_SE1EqYL','TI?]VYxFQ0L,D0\\a','',0,'?'),('u<ex@ֈ>','wp-includes/js/underscore.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j:CJ`tCA}{','wq +kQ)iF}svK','',0,'?'),('<hj	44a2','wp-includes/js/utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rǼC`<','FeIl(x,!1X_&{01D','',0,'?'),('&UX\rL4{','wp-includes/js/utils.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rA2C3UE+','ü3[Mm{ e7:DBf','',0,'?'),('05mk','wp-includes/js/wp-a11y.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~T)\Z=9','[%yKRb6=F\\ad','',0,'?'),('/0\n*7f(','wp-includes/js/wp-a11y.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u{Oǚű','gӕWѦ\n[T\nuA[zGza','',0,'?'),('](R&!1;3','wp-includes/js/wp-ajax-response.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')nZN\n#','њug[~bSU	  E\"','',0,'?'),('u)8FG9C(','wp-includes/js/wp-ajax-response.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tجv0','AcOt{8U!9yldqEu','',0,'?'),('!|(yW*1Oo2Cu','wp-includes/js/wp-api.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uO\n06','WcLjq.WlRwT','',0,'?'),('ӟmy+\nf:','wp-includes/js/wp-api.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ӬZ!RPCz<','v[.R߮<|@)DO','',0,'?'),('.v8-rJŕqQ','wp-includes/js/wp-auth-check.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P\rJvv\Zy%e','{Z踣bzNT\\g,YƱN','',0,'?'),('tU/DsIڤst','wp-includes/js/wp-auth-check.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z}jo)','	4_]˱j6M.1q7','',0,'?'),('j8ď\Z','wp-includes/js/wp-backbone.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O[J-v','þC8lmk.eQa\'ɻ\'','',0,'?'),('0<lڿJ','wp-includes/js/wp-backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x\n%6h)9','Cv=6Vzk.jUaZJ`(','',0,'?'),('ԒAr^','wp-includes/js/wp-custom-header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nbUS]ð!','Isb)g#_i[\"]K3N|-%)sȣLM9','',0,'?'),('Z_\"~J','wp-includes/js/wp-custom-header.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+_`$Y)','H*`KzPYgV}SW[qE','',0,'?'),('=-Xԍn{]pf','wp-includes/js/wp-embed-template.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ey(͜~i%','ˮA@󉛷@vV/E)','',0,'?'),('Z Og\nWW2','wp-includes/js/wp-embed-template.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']g,JDT\0\'','E_VM6y&RR=$㖷6','',0,'?'),('sSki<4\'c-6','wp-includes/js/wp-embed.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JfHǧ%{i','=7MgїIx`t4MK>;K','',0,'?'),('J~_ofk','wp-includes/js/wp-embed.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z|y1','sr~a.OX@D$f?mkofp','',0,'?'),('trεF_ ','wp-includes/js/wp-emoji-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t̖S+ğo','l+uelH]RAr<4f +','',0,'?'),(';*1\Zn4','wp-includes/js/wp-emoji-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4̮-i+QS\"`','Y?UBd́8Q=&wH2A+	','',0,'?'),('	b8[y','wp-includes/js/wp-emoji-release.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\n9','!֫\ns5|-t:@-\Z ̠','',0,'?'),('\0;fQ=*Ǖ','wp-includes/js/wp-emoji.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĚF̏=o',':+/nLo˳ĥI&b>Y6mER','',0,'?'),('[>x;wn/tH','wp-includes/js/wp-emoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZR6Ax','!DO_mމ	0+g\ZWė@','',0,'?'),('=V;N.K','wp-includes/js/wp-list-revisions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GQ\ru`*Ln$','n2HqA6pz=_\n7	+1?B','',0,'?'),('E4fu\r#R:k!jgh','wp-includes/js/wp-list-revisions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R1\0\\ɡ>','G}nٖ\\O=k	>Ã35kSn<','',0,'?'),('bvEH΄','wp-includes/js/wp-lists.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O93','wbk\nn=͚(IQ^~nƝC','',0,'?'),('9eEbݾl3','wp-includes/js/wp-lists.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}B˪PgoWk',']qEP~gW%b̘r\\-','',0,'?'),('#AuI.F/','wp-includes/js/wp-pointer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ˋ8.r:ě','lt\'2H0/MbRi=M;8Z','',0,'?'),('Ǉ4˓T`k','wp-includes/js/wp-pointer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6|dMpX\0fɐ','\"!!1u#܁%ӽYZ:X=','',0,'?'),('??n_2gj','wp-includes/js/wp-util.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"uOe','x7e~LҎ/X,]U	?c','',0,'?'),('H+E~}1Q','wp-includes/js/wp-util.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9-ر,','sfV?bL.OoB[`4','',0,'?'),('A4e{^Z','wp-includes/js/wpdialog.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r9_M@9\0S','Ӱ0nѩo,*ӕSҹza$d','',0,'?'),('ߗQu!ٶx[','wp-includes/js/wpdialog.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\0g\rFġ','ܖ71J 7BA7|mLux3}\n^','',0,'?'),('wtH-s\0n','wp-includes/js/wplink.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ri<j)','u<&R3D)j\r73\n-ȯWl','',0,'?'),('\"c)j\"','wp-includes/js/wplink.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W#DDVn','TxFzwtR<HɟKŬw; ','',0,'?'),('\'B7S','wp-includes/js/zxcvbn-async.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0V]u#3','e՘g=,1&L!','',0,'?'),('L(n9[2C6','wp-includes/js/zxcvbn-async.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1p9	9~','DMV!zlۖ\\̉ jU','',0,'?'),('J򾁬OhsDؾ','wp-includes/js/zxcvbn.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/,YB[P','KuP K\Z\0YA,Qשԣ[u','',0,'?'),('іqSGKy(','wp-includes/kses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UO2\"mI#','Ɯu<%Ky=(LS4','',0,'?'),(':m[ݢ:#','wp-includes/l10n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JFiuBG',']K~E`:d\'k[~DSl*O','',0,'?'),('vE,-O{','wp-includes/link-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ё6kի ս','Ӿ6B	dZM\n6LyFEL5U%b','',0,'?'),('_j_/yӱ','wp-includes/load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zDֈP[H','k>|LY\Zv+;{&;f; t','',0,'?'),('D6mer{pKO','wp-includes/locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_?>nYxF','@ge;6\0Pu.xF\rSּ','',0,'?'),('a(mEBl','wp-includes/media-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tt5qxvX','pH5-S#`X$wX\n;','',0,'?'),('){jW-_Q=?GlҢ','wp-includes/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Iˀ푸VHt','\"\rL=RLDtv	D\\\rW!','',0,'?'),('KQ}U&;&Q','wp-includes/meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x\0P҄','i}a\"dQgb;+yy+CzF','',0,'?'),('gI!٭_','wp-includes/ms-blogs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?͆{=K+j','Hi1hX`vr=\n','',0,'?'),('mAYRb|S','wp-includes/ms-default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AY$oMiw','J.<;b=^M,V$9?','',0,'?'),('.݁BxKY','wp-includes/ms-default-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JX5zP?3>','{Nz)\0EFkx\0n!p','',0,'?'),('[nG{\'q:','wp-includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YNcP~eۓ\rȇ','`09s+T+_y֞<y3','',0,'?'),('뭷\r!z}MLKE','wp-includes/ms-files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nQ㿾-','0V	2;[G0X1|?X,q','',0,'?'),('v%S[̪Ѿ','wp-includes/ms-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','䇞v\\TF<S','cV)}\npߔH^&/J','',0,'?'),('_jSX2QQ=','wp-includes/ms-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n4dt9xb|O=','\nK-aVeO9B1d','',0,'?'),('j&^b','wp-includes/ms-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?}Ox&nAba','T/U=V{?%6\"󧼮N?','',0,'?'),('{Amm*K','wp-includes/nav-menu-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?Po<e+*','n\Zh1jk=oPG!XO','',0,'?'),('[Hn[P.~FU|','wp-includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fH[Y.\\͐','tF,8U/nNk FpߺM','',0,'?'),('MRlBFu','wp-includes/option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\0ݱŅ:j','b}PuA4;Q','',0,'?'),('N|Jвznsw','wp-includes/pluggable-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cd\0~5j','yJ\n#xtT/zWk՞ab','',0,'?'),('h0X-i^G`8','wp-includes/pluggable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Ʒ@','yO_8jzSXo΅{9)','',0,'?'),('\00qĊNy)','wp-includes/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zFx?NĢ','\\&@n,\'<V~\"T','',0,'?'),(' CY','wp-includes/pomo/entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','흁`1La','{vUg`5]^S0o','',0,'?'),('48Vt+^X','wp-includes/pomo/mo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZyLʄU.^z3/e','ů7NGQ/nAM*C','',0,'?'),('[Kb28','wp-includes/pomo/po.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}L%-CpU1\nT','9w{G$ˣ4fJlOkuXP\Z','',0,'?'),('1W;cN\"u','wp-includes/pomo/streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s|-<ip','~O%Μll$_]џ{<B[Qrydd','',0,'?'),('?ڟE$PF','wp-includes/pomo/translations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T86\ZBR','QswMiťwm26qdWI','',0,'?'),('atUq^!0ƣl','wp-includes/post-formats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JR֓L*Q)>','[?Z`^U8(ʃijƟ05FY1;\rB','',0,'?'),('MIMrD-','wp-includes/post-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9xx6/','Q\0qOQ%n.1~A8\"su߿','',0,'?'),('iY\0\nR)','wp-includes/post-thumbnail-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r/\"ئu;','E1$z,\nC4!rU|&\"\r~d','',0,'?'),('0jlSK','wp-includes/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?1T`;\\S3','6{PQϦEѧB_#.Y97','',0,'?'),(' A$ۤfCN37','wp-includes/query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','id@y','R<]AET4;&v-eQ','',0,'?'),('KF\nOi},w','wp-includes/random_compat/byte_safe_strings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','utoyi','\\UӷHYQ\'\0h$z%ι|q','',0,'?'),('owЎ696I','wp-includes/random_compat/cast_to_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_vtZ;f0\\','Tx{\\7RAg[:	c','',0,'?'),('v9b$L','wp-includes/random_compat/error_polyfill.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YT~\Z\'\"l\nUe','\n#\\,--*N	Vӻ+:F Ӹ','',0,'?'),('jZ;\nlГ','wp-includes/random_compat/random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G|1[_s1','eNױ?$ 5e% i3','',0,'?'),('t.Õ81','wp-includes/random_compat/random_bytes_com_dotnet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','erLVstr','jUY\rρF%\\V[z7','',0,'?'),('?2yT!s|tu}','wp-includes/random_compat/random_bytes_dev_urandom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P<!=-faDh','\Z~.H0.L@ەC)','',0,'?'),('[D?_[','wp-includes/random_compat/random_bytes_libsodium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f}>','$LްA,\Zƻ5b^<=S','',0,'?'),('N iiڭ','wp-includes/random_compat/random_bytes_libsodium_legacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~F-&6,Q','Y=&~.QLF˛՟','',0,'?'),('%I}PzW','wp-includes/random_compat/random_bytes_mcrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%l1/sŀl)wi','_>mjT(\\h3-QHcE','',0,'?'),('^ֺS^c','wp-includes/random_compat/random_bytes_openssl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iVKmD\'c','|m!5zdlگ4uOln{+P;\r','',0,'?'),('3I98\\֛[t','wp-includes/random_compat/random_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']m\riVi+Ԑ38','%\"Hk,2 }ڗE','',0,'?'),('E-j1j\rE','wp-includes/registration-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KiLٸSH=Y','\r0\Z=Tc0滦͎JÜ0ۜ','',0,'?'),('5\\h>w	N','wp-includes/registration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3f\\?dK','j$-h$ĸph:#G','',0,'?'),('Ѝ3>#.','wp-includes/rest-api/class-wp-rest-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_7}YE{','?A3JP?ǹP	.','',0,'?'),('V+@0pɏhi','wp-includes/rest-api/class-wp-rest-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ymclj$s,',',Ux猼XUģ,>','',0,'?'),(':뭲cRPe(','wp-includes/rest-api/class-wp-rest-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nq%-,Hzu','À\\rG΢(ʒI+','',0,'?'),('aaiG}\Z ','wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OK%o','7\\ PN\"c@1S%1b','',0,'?'),('k\0\Z{ ݛ6','wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}rPxiF','\0Y\n}hp|%E\'5Њ0}v·','',0,'?'),('.xQ}t\np','wp-includes/rest-api/endpoints/class-wp-rest-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7PUjJ:s	','+oT	k8|x]}r![eﳱ','',0,'?'),('}Ua&gli)!','wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}HJ8)wG{%','Ч?^|&IH/%qV(+','',0,'?'),('qsƞù','wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r`(HH-','ѓ\r:=LcXok$cKdTSI5BJ','',0,'?'),('3z\'OvJ& ','wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&tĪ1M','5t*p@td|	I\Z\nf','',0,'?'),('L#aW ','wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~#XGउA+','\r(V/,Cxɧs`Ũw{','',0,'?'),('CciFh.n7','wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ttQ䑄yŉ','YV1\Zc3f_\\Re%J','',0,'?'),('q_\"1F','wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	^ڱkM0','8,3џJ\"Qa~֩po','',0,'?'),('\Z,zҐU','wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZT49UkW%G\Z[','ͶTmK]4|DMz)$8','',0,'?'),('Ȧ0 $7O>','wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3:kRrU~?','sj^GxC<k~9dH9','',0,'?'),(',f','wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AJ=ju?Myxޓ~J','I]2Pn\nE	vjXPtjum`','',0,'?'),('ͪuowsFCG[c','wp-includes/rest-api/fields/class-wp-rest-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^\'\"\0[͗','GcU@i%eփ','',0,'?'),('\njݍea!\ZWdq','wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rcv]D_X','!!5ڀܾW<,','',0,'?'),('WMF`3$','wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xr-6Oh','u	`>P/|h	8','',0,'?'),('I6.:\n(i\0B','wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\ncUKXJ','I/H09)wzR=ugHN','',0,'?'),('Ú2d=','wp-includes/rest-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/frQ2|','i<<+\ZAm)ː&Sfn]Ps\"','',0,'?'),('_\0d MP~D','wp-includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JWXV/uO','{P.h~_ŋbw','',0,'?'),(')Oz=u˷','wp-includes/rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IՒ+XI7','WZݔPZ{Gnxah!\ZRؐ,','',0,'?'),('w\'6)','wp-includes/rss-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1-8`KX',')[߲F\'78$<(a','',0,'?'),('A1\Z;','wp-includes/rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m[\0lJ;','^]\"ˌ|a>|Ī.pNX','',0,'?'),('9} B^?	\"','wp-includes/script-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݴBwUb\"?','8\"xQi5u]Z>','',0,'?'),('Eh@aq','wp-includes/session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EaΠ:`Zv5','Gon^p~!wk+9KAҀ','',0,'?'),('Vne!z0u1?','wp-includes/shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N<QZ ͅ#','O4LUJ:m\\p_ȅ','',0,'?'),('X=UpfpZ','wp-includes/taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\n|Q','PE}LAHbY)[n','',0,'?'),(':+[gCZ','wp-includes/template-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EOEtyU','yV*T*g/ύ`iH\\\r','',0,'?'),(':=%M۵','wp-includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rwސ','.H :npuȑ;^&SN','',0,'?'),('>hЩXX*v1','wp-includes/theme-compat/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"b=Q\n~C}K','xR2Sz\n> p;NZ^Ƴ','',0,'?'),('\"8A\n=ᇼfp5','wp-includes/theme-compat/embed-404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%\0ihq','^=G_zb\rRd2.JI!Fd','',0,'?'),('fֈVԹ)9','wp-includes/theme-compat/embed-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V8߉܁;.','\ruHGUe+\"%{zy\nC<TuZ','',0,'?'),('+q^eguF6\n','wp-includes/theme-compat/embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rLEva36I','W5Tp;-n0aO\n','',0,'?'),('mL0N\"T~b','wp-includes/theme-compat/footer-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z.+j','iDAJψ;v,gc%	^#','',0,'?'),('Qֿ6yq88','wp-includes/theme-compat/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_s0l˿7~','y3YvW嬏	#(ښ	?','',0,'?'),('&vAQcqw8,','wp-includes/theme-compat/header-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g+x&wfX','e鿎i×#=4wNrbQ','',0,'?'),('LbP-I׭1f','wp-includes/theme-compat/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0L@%\nP$','K^\r-o? Zf7&fS','',0,'?'),('0;-,AEy','wp-includes/theme-compat/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sHDl,\n','NF?gAٝkap>p+;1	%','',0,'?'),('XVטO|8}','wp-includes/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RT0\n	_*K','i& AwYx}O<;','',0,'?'),('+qpW','wp-includes/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yj*(_wD\n','>l7e e?pt{俚~','',0,'?'),('kB˞b=y','wp-includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=;=(4p;p','З:3ɉ>	|k_Ii5Q\\\Z','',0,'?'),('g+yrqD/','wp-includes/vars.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>.ozgڙ0','	FdbAsU0v-XdBb','',0,'?'),('5ZSμv`69','wp-includes/version.php',0,'T\n[Zk,v6:;\'','T\n[Zk,v6:;\'','>s/aȰ9m>-Zz܍F','',0,'?'),('Y,Qpgmu#e~','wp-includes/widgets/class-wp-nav-menu-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M9 JDA','ɓ4j2BN?Xap+~\nM','',0,'?'),('TYPpEw','wp-includes/widgets/class-wp-widget-archives.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W%1EA','X/ogP\Z	SO߰]IKnT','',0,'?'),('I0S$2TB*','wp-includes/widgets/class-wp-widget-calendar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1̈́EW&o:','0葸\r79x1ED>軂뿾\na','',0,'?'),('RH\r0!d?c&','wp-includes/widgets/class-wp-widget-categories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_s&-&','t/Z~l!_Q\0*@','',0,'?'),('&饱W؀|','wp-includes/widgets/class-wp-widget-links.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_\\o@s2S','YzM\"\'ʹ*!pI%Zȥ<D','',0,'?'),('Ὀ5f?hk','wp-includes/widgets/class-wp-widget-media-audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','țtFC','f)OceIU]2x3[ʤ','',0,'?'),('PJ~]; `y','wp-includes/widgets/class-wp-widget-media-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ysbl˙\\!','*bP[?X~Bo^[RD7|7ch;o','',0,'?'),('_wƌ','wp-includes/widgets/class-wp-widget-media-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ks&?&eK','/ʔ?c\\10\rUSm\0jR=','',0,'?'),(']NJjӎe','wp-includes/widgets/class-wp-widget-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'vMV~K','02Ճ#X:\\lŜVe3X ','',0,'?'),('n֢\rV5,','wp-includes/widgets/class-wp-widget-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\ZބEtU','\09\"x΀t ōň_$','',0,'?'),('Kc#2s/(\"','wp-includes/widgets/class-wp-widget-pages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`WIK\'2','| p+`EmΙwM\"T&\"\"_,L[','',0,'?'),('6~e{\".w','wp-includes/widgets/class-wp-widget-recent-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b`U#XWz','US4Gi\ZUÖַߍz','',0,'?'),('l/\nԀWͱ-c','wp-includes/widgets/class-wp-widget-recent-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b/O76>m<','5~Tj/yh8S\nm-lW','',0,'?'),('y7MA@','wp-includes/widgets/class-wp-widget-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Yޭ+P`I\'','u0&$N_3QWwOL\\\'fV֭','',0,'?'),('F\rxw~\rܱ\n','wp-includes/widgets/class-wp-widget-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V~f2','XX$<R+Qֲnn<b6','',0,'?'),('-[ip\\^]','wp-includes/widgets/class-wp-widget-tag-cloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k|`	','5^K`=S6㜠X(V4w(6^','',0,'?'),('\0 k~U5T','wp-includes/widgets/class-wp-widget-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','){+(w<L+','dwo?0%R\Za','',0,'?'),('S&az8Jض9','wp-includes/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I=r9j\'lq1','ґ%\0<z!@vOwڎ7','',0,'?'),('@sB0<{l3','wp-includes/wlwmanifest.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ԑi^','ƤJľ**X|icy-u6pC-$*\n','',0,'?'),('Let\"pc(	e','wp-includes/wp-db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.F5lc','՜Nl3;Cx^5. ѤժE','',0,'?'),('(^3N3','wp-includes/wp-diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҢIC%\r4,.','XtG^0za\0S[cfŉ','',0,'?'),('^\'q0','wp-links-opml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UOd\'\"IFb','N~8}:!ʺZΟ*03','',0,'?'),('$jX])D:','wp-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D8NEG#1O','Ȟ5eAMs8&BzYy','',0,'?'),('\r\0FJBe','wp-login.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','61!Dd\r	','I\"#F6G5\"dcr*Kb','',0,'?'),('3T.^ƙ<','wp-mail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lMvD*xph','pK<4l(A0Zts|n	xi','',0,'?'),(';1ы#Y_Nt','wp-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+̴,aM','pYg\rd,LcE+ޮ~c|','',0,'?'),(',4#(#','wp-signup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aU㿑j','zwV^hK@#UR\0','',0,'?'),('o㮚-;?X:pҡ','wp-trackback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%<66[sF\"C','\Z}L#:6šdx9*AN','',0,'?'),('4ڂL$,K[u','xmlrpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lSb2ǅ','E\'oSY?/OxHm7G&c>\0J','',0,'?');
/*!40000 ALTER TABLE `wp_wfFileMods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfHits`
--

DROP TABLE IF EXISTS `wp_wfHits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfHits` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `attackLogTime` double(17,6) unsigned NOT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `jsRun` tinyint(4) DEFAULT '0',
  `statusCode` int(11) NOT NULL DEFAULT '200',
  `isGoogle` tinyint(4) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `newVisit` tinyint(3) unsigned NOT NULL,
  `URL` text,
  `referer` text,
  `UA` text,
  `action` varchar(64) NOT NULL DEFAULT '',
  `actionDescription` text,
  `actionData` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`IP`,`ctime`),
  KEY `attackLogTime` (`attackLogTime`)
) ENGINE=MyISAM AUTO_INCREMENT=149 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfHits`
--

LOCK TABLES `wp_wfHits` WRITE;
/*!40000 ALTER TABLE `wp_wfHits` DISABLE KEYS */;
INSERT INTO `wp_wfHits` VALUES (1,0.000000,1500737006.818060,'\0\0\0\0\0\0\0\0\0\01kr',0,200,0,0,0,'http://punjabyouthclub.com/wp-login.php?action=logout&_wpnonce=2a61dec9d6','http://punjabyouthclub.com/wp-admin/options-general.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','',NULL,NULL),(2,0.000000,1500737122.989112,'\0\0\0\0\0\0\0\0\0\0wG',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(3,0.000000,1500739219.416964,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.punjabyouthclub.com/','http://www.punjabyouthclub.org/','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 BingPreview/1.0b','',NULL,NULL),(4,0.000000,1500739221.543080,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://punjabyouthclub.com/','http://www.punjabyouthclub.org/','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 BingPreview/1.0b','',NULL,NULL),(5,0.000000,1500739810.218749,'\0\0\0\0\0\0\0\0\0\0)E',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(6,0.000000,1500740566.433424,'\0\0\0\0\0\0\0\0\0\0Zǭ',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(7,0.000000,1500742115.411554,'\0\0\0\0\0\0\0\0\0\0^',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8,0.000000,1500743292.980146,'\0\0\0\0\0\0\0\0\0\04[',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9,0.000000,1500743833.333472,'\0\0\0\0\0\0\0\0\0\0\n',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10,0.000000,1500744134.935255,'\0\0\0\0\0\0\0\0\0\0R\r	-',0,200,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(11,0.000000,1500744137.904190,'\0\0\0\0\0\0\0\0\0\0R\r	-',0,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12,0.000000,1500744139.192583,'\0\0\0\0\0\0\0\0\0\0R\r	-',0,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(13,0.000000,1500744783.890536,'\0\0\0\0\0\0\0\0\0\02u',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(14,0.000000,1500744966.289755,'\0\0\0\0\0\0\0\0\0\06\nW',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(15,0.000000,1500745498.136627,'\0\0\0\0\0\0\0\0\0\0Qk',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(16,0.000000,1500745940.568494,'\0\0\0\0\0\0\0\0\0\0RK',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(17,0.000000,1500746690.745962,'\0\0\0\0\0\0\0\0\0\0.wp',0,200,0,0,0,'http://punjabyouthclub.com/','http://remontvsamare.su/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT) ::ELNSB50::000061100320025802a00111000000000507000900000000','',NULL,NULL),(18,0.000000,1500746693.702047,'\0\0\0\0\0\0\0\0\0\0.wp',0,200,0,0,0,'http://punjabyouthclub.com/','http://remontvsamare.su/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT) ::ELNSB50::000061100320025802a00111000000000507000900000000','',NULL,NULL),(19,0.000000,1500747652.924327,'\0\0\0\0\0\0\0\0\0\07\'[',0,200,0,0,0,'http://punjabyouthclub.com/index.php/portfolio/kavi-darbar-2006/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(20,0.000000,1500748531.469800,'\0\0\0\0\0\0\0\0\0\0]g0z',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(21,0.000000,1500749364.039119,'\0\0\0\0\0\0\0\0\0\0.v',0,200,0,0,0,'http://punjabyouthclub.com/','https://via-energy-acquistare.com/','Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0 ; .NET CLR 2.0.50215; SL Commerce Client v1.0; Tablet PC 2.0','',NULL,NULL),(22,0.000000,1500749365.428147,'\0\0\0\0\0\0\0\0\0\0.v',0,200,0,0,0,'http://punjabyouthclub.com/','https://via-energy-acquistare.com/','Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0 ; .NET CLR 2.0.50215; SL Commerce Client v1.0; Tablet PC 2.0','',NULL,NULL),(23,0.000000,1500749366.557452,'\0\0\0\0\0\0\0\0\0\0.v',0,200,0,0,0,'http://punjabyouthclub.com/','https://via-energy-acquistare.com/','Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0 ; .NET CLR 2.0.50215; SL Commerce Client v1.0; Tablet PC 2.0','',NULL,NULL),(24,0.000000,1500749661.871794,'\0\0\0\0\0\0\0\0\0\0[',0,200,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','http://punjabyouthclub.com/xmlrpc.php','\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0\"','',NULL,NULL),(25,0.000000,1500749663.358425,'\0\0\0\0\0\0\0\0\0\0[',0,404,0,0,0,'http://punjabyouthclub.com/?portfolio=merchant/xmlrpc.php','http://punjabyouthclub.com/?portfolio=merchant/xmlrpc.php','\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0\"','',NULL,NULL),(26,0.000000,1500749744.800939,'\0\0\0\0\0\0\0\0\0\0i',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(27,0.000000,1500750059.779120,'\0\0\0\0\0\0\0\0\0\07\'g',0,200,0,0,0,'http://www.punjabyouthclub.com/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(28,0.000000,1500750072.544770,'\0\0\0\0\0\0\0\0\0\07\'g',0,200,0,0,0,'http://punjabyouthclub.com/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(29,0.000000,1500750863.372557,'\0\0\0\0\0\0\0\0\0\0^E^',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(30,0.000000,1500754427.618102,'\0\0\0\0\0\0\0\0\0\0)R}',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(31,0.000000,1500755399.652126,'\0\0\0\0\0\0\0\0\0\06ʼ)',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(32,0.000000,1500756826.772278,'\0\0\0\0\0\0\0\0\0\0ف',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(33,0.000000,1500757304.303116,'\0\0\0\0\0\0\0\0\0\0hO',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(34,0.000000,1500757409.059386,'\0\0\0\0\0\0\0\0\0\0>',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(35,0.000000,1500757458.499308,'\0\0\0\0\0\0\0\0\0\04[',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(36,0.000000,1500757896.058134,'\0\0\0\0\0\0\0\0\0\0V{\na',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(37,0.000000,1500757900.807730,'\0\0\0\0\0\0\0\0\0\0V{\na',0,503,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network','{\"type\":1}'),(38,0.000000,1500757921.995364,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E)','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(39,0.000000,1500762254.458141,'\0\0\0\0\0\0\0\0\0\0B',0,200,0,0,0,'http://punjabyouthclub.com/','','Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)','',NULL,NULL),(40,0.000000,1500763102.633646,'\0\0\0\0\0\0\0\0\0\0c~',0,200,0,0,0,'http://punjabyouthclub.com/','','=Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16','',NULL,NULL),(41,0.000000,1500763441.749001,'\0\0\0\0\0\0\0\0\0\01V',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(42,0.000000,1500763853.316581,'\0\0\0\0\0\0\0\0\0\0MKN',0,200,0,0,0,'http://punjabyouthclub.com/?page_id=3471','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(43,0.000000,1500764033.076124,'\0\0\0\0\0\0\0\0\0\0Bf',0,200,0,0,0,'http://punjabyouthclub.com/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon','',NULL,NULL),(44,0.000000,1500764661.255108,'\0\0\0\0\0\0\0\0\0\0V\Z',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(45,0.000000,1500765209.260939,'\0\0\0\0\0\0\0\0\0\0)rRI',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(46,0.000000,1500765612.935644,'\0\0\0\0\0\0\0\0\0\0%',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(47,0.000000,1500765671.753214,'\0\0\0\0\0\0\0\0\0\0@',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(48,0.000000,1500765796.486942,'\0\0\0\0\0\0\0\0\0\0>',0,200,0,0,0,'http://punjabyouthclub.com/','http://punjabyouthclub.com','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','',NULL,NULL),(49,0.000000,1500765808.348149,'\0\0\0\0\0\0\0\0\0\0MKN',0,200,0,0,0,'http://punjabyouthclub.com/?portfolio=blackbox','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(50,0.000000,1500765813.690785,'\0\0\0\0\0\0\0\0\0\0MKN',0,200,0,0,0,'http://punjabyouthclub.com/?page_id=3094','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(51,0.000000,1500767048.867949,'\0\0\0\0\0\0\0\0\0\0.vp',0,200,0,0,0,'http://punjabyouthclub.com/','http://kozhniebolezni.com/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; TheFreeDictionary.com; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)','',NULL,NULL),(52,0.000000,1500767050.489862,'\0\0\0\0\0\0\0\0\0\0.vp',0,200,0,0,0,'http://punjabyouthclub.com/','http://kozhniebolezni.com/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; TheFreeDictionary.com; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)','',NULL,NULL),(53,0.000000,1500767051.671058,'\0\0\0\0\0\0\0\0\0\0.vp',0,200,0,0,0,'http://punjabyouthclub.com/','http://kozhniebolezni.com/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; TheFreeDictionary.com; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)','',NULL,NULL),(54,0.000000,1500769198.500209,'\0\0\0\0\0\0\0\0\0\04z',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(55,0.000000,1500769413.113293,'\0\0\0\0\0\0\0\0\0\0)aFW',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(56,0.000000,1500773223.179973,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.punjabyouthclub.com/','https://www.inboundlinks.win/InboundLinks/www.punjabyouthclub.com','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)','',NULL,NULL),(57,0.000000,1500773761.687572,'\0\0\0\0\0\0\0\0\0\0`/',0,200,0,0,0,'http://punjabyouthclub.com/','http://uptime-beta.net/punjabyouthclub.com','Mozilla/5.0 (compatible; Uptimebot/1.0; +http://www.uptime.com/uptimebot)','',NULL,NULL),(58,0.000000,1500776342.541144,'\0\0\0\0\0\0\0\0\0\0w_',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(59,0.000000,1500776449.893149,'\0\0\0\0\0\0\0\0\0\0K9X',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(60,0.000000,1500777836.860265,'\0\0\0\0\0\0\0\0\0\0O',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(61,0.000000,1500777840.306790,'\0\0\0\0\0\0\0\0\0\0O',0,503,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network','{\"type\":1}'),(62,0.000000,1500778380.570074,'\0\0\0\0\0\0\0\0\0\0MBa',0,200,0,0,0,'http://www.punjabyouthclub.com/','','Mozilla/5.0 (compatible; Findxbot/1.0; +http://www.findxbot.com)','',NULL,NULL),(63,0.000000,1500778383.494727,'\0\0\0\0\0\0\0\0\0\0MBa',0,200,0,0,0,'http://punjabyouthclub.com/','','Mozilla/5.0 (compatible; Findxbot/1.0; +http://www.findxbot.com)','',NULL,NULL),(64,0.000000,1500780398.902341,'\0\0\0\0\0\0\0\0\0\02',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(65,0.000000,1500783431.481753,'\0\0\0\0\0\0\0\0\0\0Mn',0,200,0,0,0,'http://www.punjabyouthclub.com/','','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0;','',NULL,NULL),(66,0.000000,1500783434.864066,'\0\0\0\0\0\0\0\0\0\0Mn',0,200,0,0,0,'http://punjabyouthclub.com/','','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0;','',NULL,NULL),(67,0.000000,1500784221.655266,'\0\0\0\0\0\0\0\0\0\0MKO6',0,200,0,0,0,'http://punjabyouthclub.com/?page_id=65','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(68,0.000000,1500784764.286753,'\0\0\0\0\0\0\0\0\0\06',0,200,0,0,0,'http://punjabyouthclub.com/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','',NULL,NULL),(69,0.000000,1500785082.977010,'\0\0\0\0\0\0\0\0\0\06\nW',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(70,0.000000,1500786708.380105,'\0\0\0\0\0\0\0\0\0\0#g',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(71,0.000000,1500788339.947564,'\0\0\0\0\0\0\0\0\0\0H',0,200,0,0,0,'http://punjabyouthclub.com/','http://xxxtubesafari.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.0) Gecko/20100101 Firefox/52.0','',NULL,NULL),(72,0.000000,1500789339.359782,'\0\0\0\0\0\0\0\0\0\0$O|',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(73,0.000000,1500789843.559338,'\0\0\0\0\0\0\0\0\0\03',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(74,0.000000,1500791525.247087,'\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(75,0.000000,1500791527.745753,'\0\0\0\0\0\0\0\0\0\0V',0,503,0,0,0,'http://punjabyouthclub.com/wp-login.php','http://punjabyouthclub.com/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(76,0.000000,1500792099.398568,'\0\0\0\0\0\0\0\0\0\0gOk',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(77,0.000000,1500792197.788200,'\0\0\0\0\0\0\0\0\0\0.vp',0,200,0,0,0,'http://punjabyouthclub.com/','http://kirov.zrus.org/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)','',NULL,NULL),(78,0.000000,1500792198.837101,'\0\0\0\0\0\0\0\0\0\0.vp',0,200,0,0,0,'http://punjabyouthclub.com/','http://kirov.zrus.org/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)','',NULL,NULL),(79,0.000000,1500792200.352294,'\0\0\0\0\0\0\0\0\0\0.vp',0,200,0,0,0,'http://punjabyouthclub.com/','http://kirov.zrus.org/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)','',NULL,NULL),(80,0.000000,1500793534.347267,'\0\0\0\0\0\0\0\0\0\0\"f',0,200,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(81,0.000000,1500793536.413130,'\0\0\0\0\0\0\0\0\0\0\"f',0,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(82,0.000000,1500793538.075327,'\0\0\0\0\0\0\0\0\0\0\"f',0,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(83,0.000000,1500795577.165185,'\0\0\0\0\0\0\0\0\0\0n?r',1,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','http://musrenbang.kolakatimurkab.go.id/js/tiny_mce/synshell.php?dir=/home/musrenba/public_html/idx_config&do=auto_edit_user','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','',NULL,NULL),(84,0.000000,1500795598.576706,'\0\0\0\0\0\0\0\0\0\0n?r',1,200,0,2,0,'http://punjabyouthclub.com/wp-login.php','http://punjabyouthclub.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','loginOK',NULL,NULL),(85,0.000000,1500796447.238997,'\0\0\0\0\0\0\0\0\0\0L',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(86,0.000000,1500796570.318873,'\0\0\0\0\0\0\0\0\0\0b',0,200,0,0,0,'http://www.punjabyouthclub.com/','','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','',NULL,NULL),(87,0.000000,1500796588.351568,'\0\0\0\0\0\0\0\0\0\0b',0,200,0,0,0,'http://punjabyouthclub.com/','','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','',NULL,NULL),(88,0.000000,1500799300.029319,'\0\0\0\0\0\0\0\0\0\04z',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(89,0.000000,1500799846.139238,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.punjabyouthclub.com/','https://www.inboundlinks.win/InboundLinks/www.punjabyouthclub.com','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)','',NULL,NULL),(90,0.000000,1500800144.621330,'\0\0\0\0\0\0\0\0\0\0Ij',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(91,0.000000,1500801008.401693,'\0\0\0\0\0\0\0\0\0\0MKN',0,200,0,0,0,'http://punjabyouthclub.com/?page_id=3156','','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)','',NULL,NULL),(92,0.000000,1500801064.750818,'\0\0\0\0\0\0\0\0\0\0?',0,200,0,0,0,'http://punjabyouthclub.com/','','Mozilla/5.0 (Windows NT 6.2; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(93,0.000000,1500801412.144433,'\0\0\0\0\0\0\0\0\0\043',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(94,0.000000,1500801561.712296,'\0\0\0\0\0\0\0\0\0\07\'g',0,200,0,0,0,'https://punjabyouthclub.com/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(95,0.000000,1500802102.098282,'\0\0\0\0\0\0\0\0\0\0Y',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(96,0.000000,1500802970.185206,'\0\0\0\0\0\0\0\0\0\0.wp',0,200,0,0,0,'http://punjabyouthclub.com/','http://video-chat.love/','Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 4.0)','',NULL,NULL),(97,0.000000,1500802969.748333,'\0\0\0\0\0\0\0\0\0\0.wp',0,200,0,0,0,'http://punjabyouthclub.com/','http://video-chat.love/','Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 4.0)','',NULL,NULL),(98,0.000000,1500803385.492187,'\0\0\0\0\0\0\0\0\0\0.v',0,200,0,0,0,'http://punjabyouthclub.com/','http://aktobe.xkaz.org/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Maxthon; .NET CLR 1.1.4322)','',NULL,NULL),(99,0.000000,1500803387.315038,'\0\0\0\0\0\0\0\0\0\0.v',0,200,0,0,0,'http://punjabyouthclub.com/','http://aktobe.xkaz.org/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Maxthon; .NET CLR 1.1.4322)','',NULL,NULL),(100,0.000000,1500803388.862347,'\0\0\0\0\0\0\0\0\0\0.v',0,200,0,0,0,'http://punjabyouthclub.com/','http://aktobe.xkaz.org/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Maxthon; .NET CLR 1.1.4322)','',NULL,NULL),(101,0.000000,1500803846.843628,'\0\0\0\0\0\0\0\0\0\0E',0,200,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(102,0.000000,1500803853.669963,'\0\0\0\0\0\0\0\0\0\0E',0,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(103,0.000000,1500803859.264056,'\0\0\0\0\0\0\0\0\0\0E',0,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(104,0.000000,1500803892.230993,'\0\0\0\0\0\0\0\0\0\0MN',0,200,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(105,0.000000,1500803896.576451,'\0\0\0\0\0\0\0\0\0\0MN',0,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(106,0.000000,1500803898.037197,'\0\0\0\0\0\0\0\0\0\0MN',0,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(107,0.000000,1500805860.269559,'\0\0\0\0\0\0\0\0\0\0Zg',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(108,0.000000,1500805849.367768,'\0\0\0\0\0\0\0\0\0\0Zg',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(109,0.000000,1500805915.335552,'\0\0\0\0\0\0\0\0\0\0U',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(110,0.000000,1500808767.174412,'\0\0\0\0\0\0\0\0\0\0»',0,200,0,0,0,'http://www.punjabyouthclub.com/','','Mozilla/5.0 (compatible; Qwantify/2.4w; +https://www.qwant.com/)/2.4w','',NULL,NULL),(111,0.000000,1500808771.880467,'\0\0\0\0\0\0\0\0\0\0»',0,200,0,0,0,'http://punjabyouthclub.com/','','Mozilla/5.0 (compatible; Qwantify/2.4w; +https://www.qwant.com/)/2.4w','',NULL,NULL),(112,0.000000,1500809286.811003,'\0\0\0\0\0\0\0\0\0\0^x',0,200,0,0,0,'http://punjabyouthclub.com/','http://punjabyouthclub.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','',NULL,NULL),(113,0.000000,1500810103.068590,'\0\0\0\0\0\0\0\0\0\0»',0,200,0,0,0,'http://punjabyouthclub.com/','','Mozilla/5.0 (compatible; Qwantify/2.4w; +https://www.qwant.com/)/2.4w','',NULL,NULL),(114,0.000000,1500812108.661975,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(115,0.000000,1500812111.403736,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(116,0.000000,1500812116.745886,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://punjabyouthclub.com/?author=1','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(117,0.000000,1500812152.877343,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://punjabyouthclub.com/?author=2','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(118,0.000000,1500812165.200812,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://punjabyouthclub.com/?author=3','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(119,0.000000,1500812183.613408,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://punjabyouthclub.com/?author=4','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(120,0.000000,1500812204.591935,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://punjabyouthclub.com/?author=1','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(121,0.000000,1500812210.026232,'\0\0\0\0\0\0\0\0\0\0Ug',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(122,0.000000,1500812220.235465,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://punjabyouthclub.com/?author=2','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(123,0.000000,1500812277.946795,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://punjabyouthclub.com/?author=3','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(124,0.000000,1500812299.594469,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://punjabyouthclub.com/?author=4','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(125,0.000000,1500812324.961131,'\0\0\0\0\0\0\0\0\0\0[r',0,503,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko/20100101 Firefox/18.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(126,0.000000,1500812642.964461,'\0\0\0\0\0\0\0\0\0\0ܥ',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(127,0.000000,1500812647.107292,'\0\0\0\0\0\0\0\0\0\0ܥ',0,503,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network','{\"type\":1}'),(128,0.000000,1500813189.912073,'\0\0\0\0\0\0\0\0\0\0:',0,200,0,0,0,'http://punjabyouthclub.com/','http://uptime-beta.net/punjabyouthclub.com','Mozilla/5.0 (compatible; Uptimebot/1.0; +http://www.uptime.com/uptimebot)','',NULL,NULL),(129,0.000000,1500813826.159903,'\0\0\0\0\0\0\0\0\0\06\nW',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(130,0.000000,1500814844.829957,'\0\0\0\0\0\0\0\0\0\0)#',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(131,0.000000,1500815559.289283,'\0\0\0\0\0\0\0\0\0\0m]:',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(132,0.000000,1500816114.309821,'\0\0\0\0\0\0\0\0\0\0S',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(133,0.000000,1500816117.693582,'\0\0\0\0\0\0\0\0\0\0S',0,503,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network','{\"type\":1}'),(134,0.000000,1500816377.038270,'\0\0\0\0\0\0\0\0\0\06',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(135,0.000000,1500817978.923191,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'https://punjabyouthclub.com/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(136,0.000000,1500818016.798578,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'https://punjabyouthclub.com/?wc-ajax=get_refreshed_fragments','https://punjabyouthclub.com/','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(137,0.000000,1500818270.142504,'\0\0\0\0\0\0\0\0\0\0`:',0,200,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(138,0.000000,1500818272.122650,'\0\0\0\0\0\0\0\0\0\0`:',0,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(139,0.000000,1500818273.556101,'\0\0\0\0\0\0\0\0\0\0`:',0,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(140,0.000000,1500819878.114447,'\0\0\0\0\0\0\0\0\0\0.wp',0,200,0,0,0,'http://punjabyouthclub.com/','http://y8games-free.com/','Opera/8.01 (Windows NT 5.1)','',NULL,NULL),(141,0.000000,1500819880.124987,'\0\0\0\0\0\0\0\0\0\0.wp',0,200,0,0,0,'http://punjabyouthclub.com/','http://y8games-free.com/','Opera/8.01 (Windows NT 5.1)','',NULL,NULL),(142,0.000000,1500819881.601644,'\0\0\0\0\0\0\0\0\0\0.wp',0,200,0,0,0,'http://punjabyouthclub.com/','http://y8games-free.com/','Opera/8.01 (Windows NT 5.1)','',NULL,NULL),(143,0.000000,1500821174.300314,'\0\0\0\0\0\0\0\0\0\0_n',0,200,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(144,0.000000,1500821177.884297,'\0\0\0\0\0\0\0\0\0\0_n',0,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(145,0.000000,1500821180.352991,'\0\0\0\0\0\0\0\0\0\0_n',0,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(146,0.000000,1500821665.623224,'\0\0\0\0\0\0\0\0\0\0ps',0,503,0,0,0,'http://punjabyouthclub.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(147,0.000000,1500822147.553234,'\0\0\0\0\0\0\0\0\0\0}',1,200,0,0,0,'http://punjabyouthclub.com/wp-login.php','http://www.escuadronmillonario.com/wp-content/bg_info.php?dir=/home/escuadronmillona/public_html/wp-content/idx_config&do=auto_edit_user','Mozilla/5.0 (Windows NT 6.3; rv:53.0) Gecko/20100101 Firefox/53.0','',NULL,NULL),(148,0.000000,1500822168.439038,'\0\0\0\0\0\0\0\0\0\0}',1,200,0,2,0,'http://punjabyouthclub.com/wp-login.php','http://punjabyouthclub.com/wp-login.php','Mozilla/5.0 (Windows NT 6.3; rv:53.0) Gecko/20100101 Firefox/53.0','loginOK',NULL,NULL);
/*!40000 ALTER TABLE `wp_wfHits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfHoover`
--

DROP TABLE IF EXISTS `wp_wfHoover`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfHoover` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `owner` text,
  `host` text,
  `path` text,
  `hostKey` varbinary(124) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k2` (`hostKey`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfHoover`
--

LOCK TABLES `wp_wfHoover` WRITE;
/*!40000 ALTER TABLE `wp_wfHoover` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfHoover` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfIssues`
--

DROP TABLE IF EXISTS `wp_wfIssues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfIssues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfIssues`
--

LOCK TABLES `wp_wfIssues` WRITE;
/*!40000 ALTER TABLE `wp_wfIssues` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfIssues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfKnownFileList`
--

DROP TABLE IF EXISTS `wp_wfKnownFileList`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfKnownFileList` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4229 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfKnownFileList`
--

LOCK TABLES `wp_wfKnownFileList` WRITE;
/*!40000 ALTER TABLE `wp_wfKnownFileList` DISABLE KEYS */;
INSERT INTO `wp_wfKnownFileList` VALUES (1,'index.php'),(2,'license.txt'),(3,'readme.html'),(4,'wordfence-waf.php'),(5,'wp-activate.php'),(6,'wp-admin/about.php'),(7,'wp-admin/admin-ajax.php'),(8,'wp-admin/admin-footer.php'),(9,'wp-admin/admin-functions.php'),(10,'wp-admin/admin-header.php'),(11,'wp-admin/admin-post.php'),(12,'wp-admin/admin.php'),(13,'wp-admin/async-upload.php'),(14,'wp-admin/comment.php'),(15,'wp-admin/credits.php'),(16,'wp-admin/css/about-rtl.css'),(17,'wp-admin/css/about-rtl.min.css'),(18,'wp-admin/css/about.css'),(19,'wp-admin/css/about.min.css'),(20,'wp-admin/css/admin-menu-rtl.css'),(21,'wp-admin/css/admin-menu-rtl.min.css'),(22,'wp-admin/css/admin-menu.css'),(23,'wp-admin/css/admin-menu.min.css'),(24,'wp-admin/css/color-picker-rtl.css'),(25,'wp-admin/css/color-picker-rtl.min.css'),(26,'wp-admin/css/color-picker.css'),(27,'wp-admin/css/color-picker.min.css'),(28,'wp-admin/css/colors/_admin.scss'),(29,'wp-admin/css/colors/_mixins.scss'),(30,'wp-admin/css/colors/_variables.scss'),(31,'wp-admin/css/colors/blue/colors-rtl.css'),(32,'wp-admin/css/colors/blue/colors-rtl.min.css'),(33,'wp-admin/css/colors/blue/colors.css'),(34,'wp-admin/css/colors/blue/colors.min.css'),(35,'wp-admin/css/colors/blue/colors.scss'),(36,'wp-admin/css/colors/coffee/colors-rtl.css'),(37,'wp-admin/css/colors/coffee/colors-rtl.min.css'),(38,'wp-admin/css/colors/coffee/colors.css'),(39,'wp-admin/css/colors/coffee/colors.min.css'),(40,'wp-admin/css/colors/coffee/colors.scss'),(41,'wp-admin/css/colors/ectoplasm/colors-rtl.css'),(42,'wp-admin/css/colors/ectoplasm/colors-rtl.min.css'),(43,'wp-admin/css/colors/ectoplasm/colors.css'),(44,'wp-admin/css/colors/ectoplasm/colors.min.css'),(45,'wp-admin/css/colors/ectoplasm/colors.scss'),(46,'wp-admin/css/colors/light/colors-rtl.css'),(47,'wp-admin/css/colors/light/colors-rtl.min.css'),(48,'wp-admin/css/colors/light/colors.css'),(49,'wp-admin/css/colors/light/colors.min.css'),(50,'wp-admin/css/colors/light/colors.scss'),(51,'wp-admin/css/colors/midnight/colors-rtl.css'),(52,'wp-admin/css/colors/midnight/colors-rtl.min.css'),(53,'wp-admin/css/colors/midnight/colors.css'),(54,'wp-admin/css/colors/midnight/colors.min.css'),(55,'wp-admin/css/colors/midnight/colors.scss'),(56,'wp-admin/css/colors/ocean/colors-rtl.css'),(57,'wp-admin/css/colors/ocean/colors-rtl.min.css'),(58,'wp-admin/css/colors/ocean/colors.css'),(59,'wp-admin/css/colors/ocean/colors.min.css'),(60,'wp-admin/css/colors/ocean/colors.scss'),(61,'wp-admin/css/colors/sunrise/colors-rtl.css'),(62,'wp-admin/css/colors/sunrise/colors-rtl.min.css'),(63,'wp-admin/css/colors/sunrise/colors.css'),(64,'wp-admin/css/colors/sunrise/colors.min.css'),(65,'wp-admin/css/colors/sunrise/colors.scss'),(66,'wp-admin/css/common-rtl.css'),(67,'wp-admin/css/common-rtl.min.css'),(68,'wp-admin/css/common.css'),(69,'wp-admin/css/common.min.css'),(70,'wp-admin/css/customize-controls-rtl.css'),(71,'wp-admin/css/customize-controls-rtl.min.css'),(72,'wp-admin/css/customize-controls.css'),(73,'wp-admin/css/customize-controls.min.css'),(74,'wp-admin/css/customize-nav-menus-rtl.css'),(75,'wp-admin/css/customize-nav-menus-rtl.min.css'),(76,'wp-admin/css/customize-nav-menus.css'),(77,'wp-admin/css/customize-nav-menus.min.css'),(78,'wp-admin/css/customize-widgets-rtl.css'),(79,'wp-admin/css/customize-widgets-rtl.min.css'),(80,'wp-admin/css/customize-widgets.css'),(81,'wp-admin/css/customize-widgets.min.css'),(82,'wp-admin/css/dashboard-rtl.css'),(83,'wp-admin/css/dashboard-rtl.min.css'),(84,'wp-admin/css/dashboard.css'),(85,'wp-admin/css/dashboard.min.css'),(86,'wp-admin/css/deprecated-media-rtl.css'),(87,'wp-admin/css/deprecated-media-rtl.min.css'),(88,'wp-admin/css/deprecated-media.css'),(89,'wp-admin/css/deprecated-media.min.css'),(90,'wp-admin/css/edit-rtl.css'),(91,'wp-admin/css/edit-rtl.min.css'),(92,'wp-admin/css/edit.css'),(93,'wp-admin/css/edit.min.css'),(94,'wp-admin/css/farbtastic-rtl.css'),(95,'wp-admin/css/farbtastic-rtl.min.css'),(96,'wp-admin/css/farbtastic.css'),(97,'wp-admin/css/farbtastic.min.css'),(98,'wp-admin/css/forms-rtl.css'),(99,'wp-admin/css/forms-rtl.min.css'),(100,'wp-admin/css/forms.css'),(101,'wp-admin/css/forms.min.css'),(102,'wp-admin/css/ie-rtl.css'),(103,'wp-admin/css/ie-rtl.min.css'),(104,'wp-admin/css/ie.css'),(105,'wp-admin/css/ie.min.css'),(106,'wp-admin/css/install-rtl.css'),(107,'wp-admin/css/install-rtl.min.css'),(108,'wp-admin/css/install.css'),(109,'wp-admin/css/install.min.css'),(110,'wp-admin/css/l10n-rtl.css'),(111,'wp-admin/css/l10n-rtl.min.css'),(112,'wp-admin/css/l10n.css'),(113,'wp-admin/css/l10n.min.css'),(114,'wp-admin/css/list-tables-rtl.css'),(115,'wp-admin/css/list-tables-rtl.min.css'),(116,'wp-admin/css/list-tables.css'),(117,'wp-admin/css/list-tables.min.css'),(118,'wp-admin/css/login-rtl.css'),(119,'wp-admin/css/login-rtl.min.css'),(120,'wp-admin/css/login.css'),(121,'wp-admin/css/login.min.css'),(122,'wp-admin/css/media-rtl.css'),(123,'wp-admin/css/media-rtl.min.css'),(124,'wp-admin/css/media.css'),(125,'wp-admin/css/media.min.css'),(126,'wp-admin/css/nav-menus-rtl.css'),(127,'wp-admin/css/nav-menus-rtl.min.css'),(128,'wp-admin/css/nav-menus.css'),(129,'wp-admin/css/nav-menus.min.css'),(130,'wp-admin/css/press-this-editor-rtl.css'),(131,'wp-admin/css/press-this-editor-rtl.min.css'),(132,'wp-admin/css/press-this-editor.css'),(133,'wp-admin/css/press-this-editor.min.css'),(134,'wp-admin/css/press-this-rtl.css'),(135,'wp-admin/css/press-this-rtl.min.css'),(136,'wp-admin/css/press-this.css'),(137,'wp-admin/css/press-this.min.css'),(138,'wp-admin/css/revisions-rtl.css'),(139,'wp-admin/css/revisions-rtl.min.css'),(140,'wp-admin/css/revisions.css'),(141,'wp-admin/css/revisions.min.css'),(142,'wp-admin/css/site-icon-rtl.css'),(143,'wp-admin/css/site-icon-rtl.min.css'),(144,'wp-admin/css/site-icon.css'),(145,'wp-admin/css/site-icon.min.css'),(146,'wp-admin/css/themes-rtl.css'),(147,'wp-admin/css/themes-rtl.min.css'),(148,'wp-admin/css/themes.css'),(149,'wp-admin/css/themes.min.css'),(150,'wp-admin/css/widgets-rtl.css'),(151,'wp-admin/css/widgets-rtl.min.css'),(152,'wp-admin/css/widgets.css'),(153,'wp-admin/css/widgets.min.css'),(154,'wp-admin/css/wp-admin-rtl.css'),(155,'wp-admin/css/wp-admin-rtl.min.css'),(156,'wp-admin/css/wp-admin.css'),(157,'wp-admin/css/wp-admin.min.css'),(158,'wp-admin/custom-background.php'),(159,'wp-admin/custom-header.php'),(160,'wp-admin/customize.php'),(161,'wp-admin/edit-comments.php'),(162,'wp-admin/edit-form-advanced.php'),(163,'wp-admin/edit-form-comment.php'),(164,'wp-admin/edit-link-form.php'),(165,'wp-admin/edit-tag-form.php'),(166,'wp-admin/edit-tags.php'),(167,'wp-admin/edit.php'),(168,'wp-admin/error_log'),(169,'wp-admin/export.php'),(170,'wp-admin/freedoms.php'),(171,'wp-admin/images/align-center-2x.png'),(172,'wp-admin/images/align-center.png'),(173,'wp-admin/images/align-left-2x.png'),(174,'wp-admin/images/align-left.png'),(175,'wp-admin/images/align-none-2x.png'),(176,'wp-admin/images/align-none.png'),(177,'wp-admin/images/align-right-2x.png'),(178,'wp-admin/images/align-right.png'),(179,'wp-admin/images/arrows-2x.png'),(180,'wp-admin/images/arrows.png'),(181,'wp-admin/images/browser-rtl.png'),(182,'wp-admin/images/browser.png'),(183,'wp-admin/images/bubble_bg-2x.gif'),(184,'wp-admin/images/bubble_bg.gif'),(185,'wp-admin/images/comment-grey-bubble-2x.png'),(186,'wp-admin/images/comment-grey-bubble.png'),(187,'wp-admin/images/date-button-2x.gif'),(188,'wp-admin/images/date-button.gif'),(189,'wp-admin/images/generic.png'),(190,'wp-admin/images/icons32-2x.png'),(191,'wp-admin/images/icons32-vs-2x.png'),(192,'wp-admin/images/icons32-vs.png'),(193,'wp-admin/images/icons32.png'),(194,'wp-admin/images/imgedit-icons-2x.png'),(195,'wp-admin/images/imgedit-icons.png'),(196,'wp-admin/images/list-2x.png'),(197,'wp-admin/images/list.png'),(198,'wp-admin/images/loading.gif'),(199,'wp-admin/images/marker.png'),(200,'wp-admin/images/mask.png'),(201,'wp-admin/images/media-button-2x.png'),(202,'wp-admin/images/media-button-image.gif'),(203,'wp-admin/images/media-button-music.gif'),(204,'wp-admin/images/media-button-other.gif'),(205,'wp-admin/images/media-button-video.gif'),(206,'wp-admin/images/media-button.png'),(207,'wp-admin/images/menu-2x.png'),(208,'wp-admin/images/menu-vs-2x.png'),(209,'wp-admin/images/menu-vs.png'),(210,'wp-admin/images/menu.png'),(211,'wp-admin/images/no.png'),(212,'wp-admin/images/post-formats-vs.png'),(213,'wp-admin/images/post-formats.png'),(214,'wp-admin/images/post-formats32-vs.png'),(215,'wp-admin/images/post-formats32.png'),(216,'wp-admin/images/resize-2x.gif'),(217,'wp-admin/images/resize-rtl-2x.gif'),(218,'wp-admin/images/resize-rtl.gif'),(219,'wp-admin/images/resize.gif'),(220,'wp-admin/images/se.png'),(221,'wp-admin/images/sort-2x.gif'),(222,'wp-admin/images/sort.gif'),(223,'wp-admin/images/spinner-2x.gif'),(224,'wp-admin/images/spinner.gif'),(225,'wp-admin/images/stars-2x.png'),(226,'wp-admin/images/stars.png'),(227,'wp-admin/images/w-logo-blue.png'),(228,'wp-admin/images/w-logo-white.png'),(229,'wp-admin/images/wheel.png'),(230,'wp-admin/images/wordpress-logo-white.svg'),(231,'wp-admin/images/wordpress-logo.png'),(232,'wp-admin/images/wordpress-logo.svg'),(233,'wp-admin/images/wpspin_light-2x.gif'),(234,'wp-admin/images/wpspin_light.gif'),(235,'wp-admin/images/xit-2x.gif'),(236,'wp-admin/images/xit.gif'),(237,'wp-admin/images/yes.png'),(238,'wp-admin/import.php'),(239,'wp-admin/includes/admin-filters.php'),(240,'wp-admin/includes/admin.php'),(241,'wp-admin/includes/ajax-actions.php'),(242,'wp-admin/includes/bookmark.php'),(243,'wp-admin/includes/class-automatic-upgrader-skin.php'),(244,'wp-admin/includes/class-bulk-plugin-upgrader-skin.php'),(245,'wp-admin/includes/class-bulk-theme-upgrader-skin.php'),(246,'wp-admin/includes/class-bulk-upgrader-skin.php'),(247,'wp-admin/includes/class-core-upgrader.php'),(248,'wp-admin/includes/class-file-upload-upgrader.php'),(249,'wp-admin/includes/class-ftp-pure.php'),(250,'wp-admin/includes/class-ftp-sockets.php'),(251,'wp-admin/includes/class-ftp.php'),(252,'wp-admin/includes/class-language-pack-upgrader-skin.php'),(253,'wp-admin/includes/class-language-pack-upgrader.php'),(254,'wp-admin/includes/class-pclzip.php'),(255,'wp-admin/includes/class-plugin-installer-skin.php'),(256,'wp-admin/includes/class-plugin-upgrader-skin.php'),(257,'wp-admin/includes/class-plugin-upgrader.php'),(258,'wp-admin/includes/class-theme-installer-skin.php'),(259,'wp-admin/includes/class-theme-upgrader-skin.php'),(260,'wp-admin/includes/class-theme-upgrader.php'),(261,'wp-admin/includes/class-walker-category-checklist.php'),(262,'wp-admin/includes/class-walker-nav-menu-checklist.php'),(263,'wp-admin/includes/class-walker-nav-menu-edit.php'),(264,'wp-admin/includes/class-wp-ajax-upgrader-skin.php'),(265,'wp-admin/includes/class-wp-automatic-updater.php'),(266,'wp-admin/includes/class-wp-comments-list-table.php'),(267,'wp-admin/includes/class-wp-community-events.php'),(268,'wp-admin/includes/class-wp-filesystem-base.php'),(269,'wp-admin/includes/class-wp-filesystem-direct.php'),(270,'wp-admin/includes/class-wp-filesystem-ftpext.php'),(271,'wp-admin/includes/class-wp-filesystem-ftpsockets.php'),(272,'wp-admin/includes/class-wp-filesystem-ssh2.php'),(273,'wp-admin/includes/class-wp-importer.php'),(274,'wp-admin/includes/class-wp-internal-pointers.php'),(275,'wp-admin/includes/class-wp-links-list-table.php'),(276,'wp-admin/includes/class-wp-list-table-compat.php'),(277,'wp-admin/includes/class-wp-list-table.php'),(278,'wp-admin/includes/class-wp-media-list-table.php'),(279,'wp-admin/includes/class-wp-ms-sites-list-table.php'),(280,'wp-admin/includes/class-wp-ms-themes-list-table.php'),(281,'wp-admin/includes/class-wp-ms-users-list-table.php'),(282,'wp-admin/includes/class-wp-plugin-install-list-table.php'),(283,'wp-admin/includes/class-wp-plugins-list-table.php'),(284,'wp-admin/includes/class-wp-post-comments-list-table.php'),(285,'wp-admin/includes/class-wp-posts-list-table.php'),(286,'wp-admin/includes/class-wp-press-this.php'),(287,'wp-admin/includes/class-wp-screen.php'),(288,'wp-admin/includes/class-wp-site-icon.php'),(289,'wp-admin/includes/class-wp-terms-list-table.php'),(290,'wp-admin/includes/class-wp-theme-install-list-table.php'),(291,'wp-admin/includes/class-wp-themes-list-table.php'),(292,'wp-admin/includes/class-wp-upgrader-skin.php'),(293,'wp-admin/includes/class-wp-upgrader-skins.php'),(294,'wp-admin/includes/class-wp-upgrader.php'),(295,'wp-admin/includes/class-wp-users-list-table.php'),(296,'wp-admin/includes/comment.php'),(297,'wp-admin/includes/continents-cities.php'),(298,'wp-admin/includes/credits.php'),(299,'wp-admin/includes/dashboard.php'),(300,'wp-admin/includes/deprecated.php'),(301,'wp-admin/includes/edit-tag-messages.php'),(302,'wp-admin/includes/export.php'),(303,'wp-admin/includes/file.php'),(304,'wp-admin/includes/image-edit.php'),(305,'wp-admin/includes/image.php'),(306,'wp-admin/includes/import.php'),(307,'wp-admin/includes/list-table.php'),(308,'wp-admin/includes/media.php'),(309,'wp-admin/includes/menu.php'),(310,'wp-admin/includes/meta-boxes.php'),(311,'wp-admin/includes/misc.php'),(312,'wp-admin/includes/ms-admin-filters.php'),(313,'wp-admin/includes/ms-deprecated.php'),(314,'wp-admin/includes/ms.php'),(315,'wp-admin/includes/nav-menu.php'),(316,'wp-admin/includes/network.php'),(317,'wp-admin/includes/noop.php'),(318,'wp-admin/includes/options.php'),(319,'wp-admin/includes/plugin-install.php'),(320,'wp-admin/includes/plugin.php'),(321,'wp-admin/includes/post.php'),(322,'wp-admin/includes/revision.php'),(323,'wp-admin/includes/schema.php'),(324,'wp-admin/includes/screen.php'),(325,'wp-admin/includes/taxonomy.php'),(326,'wp-admin/includes/template.php'),(327,'wp-admin/includes/theme-install.php'),(328,'wp-admin/includes/theme.php'),(329,'wp-admin/includes/translation-install.php'),(330,'wp-admin/includes/update-core.php'),(331,'wp-admin/includes/update.php'),(332,'wp-admin/includes/upgrade.php'),(333,'wp-admin/includes/user.php'),(334,'wp-admin/includes/widgets.php'),(335,'wp-admin/index.php'),(336,'wp-admin/install-helper.php'),(337,'wp-admin/install.php'),(338,'wp-admin/js/accordion.js'),(339,'wp-admin/js/accordion.min.js'),(340,'wp-admin/js/bookmarklet.js'),(341,'wp-admin/js/bookmarklet.min.js'),(342,'wp-admin/js/color-picker.js'),(343,'wp-admin/js/color-picker.min.js'),(344,'wp-admin/js/comment.js'),(345,'wp-admin/js/comment.min.js'),(346,'wp-admin/js/common.js'),(347,'wp-admin/js/common.min.js'),(348,'wp-admin/js/custom-background.js'),(349,'wp-admin/js/custom-background.min.js'),(350,'wp-admin/js/custom-header.js'),(351,'wp-admin/js/customize-controls.js'),(352,'wp-admin/js/customize-controls.min.js'),(353,'wp-admin/js/customize-nav-menus.js'),(354,'wp-admin/js/customize-nav-menus.min.js'),(355,'wp-admin/js/customize-widgets.js'),(356,'wp-admin/js/customize-widgets.min.js'),(357,'wp-admin/js/dashboard.js'),(358,'wp-admin/js/dashboard.min.js'),(359,'wp-admin/js/edit-comments.js'),(360,'wp-admin/js/edit-comments.min.js'),(361,'wp-admin/js/editor-expand.js'),(362,'wp-admin/js/editor-expand.min.js'),(363,'wp-admin/js/editor.js'),(364,'wp-admin/js/editor.min.js'),(365,'wp-admin/js/farbtastic.js'),(366,'wp-admin/js/gallery.js'),(367,'wp-admin/js/gallery.min.js'),(368,'wp-admin/js/image-edit.js'),(369,'wp-admin/js/image-edit.min.js'),(370,'wp-admin/js/inline-edit-post.js'),(371,'wp-admin/js/inline-edit-post.min.js'),(372,'wp-admin/js/inline-edit-tax.js'),(373,'wp-admin/js/inline-edit-tax.min.js'),(374,'wp-admin/js/iris.min.js'),(375,'wp-admin/js/language-chooser.js'),(376,'wp-admin/js/language-chooser.min.js'),(377,'wp-admin/js/link.js'),(378,'wp-admin/js/link.min.js'),(379,'wp-admin/js/media-gallery.js'),(380,'wp-admin/js/media-gallery.min.js'),(381,'wp-admin/js/media-upload.js'),(382,'wp-admin/js/media-upload.min.js'),(383,'wp-admin/js/media.js'),(384,'wp-admin/js/media.min.js'),(385,'wp-admin/js/nav-menu.js'),(386,'wp-admin/js/nav-menu.min.js'),(387,'wp-admin/js/password-strength-meter.js'),(388,'wp-admin/js/password-strength-meter.min.js'),(389,'wp-admin/js/plugin-install.js'),(390,'wp-admin/js/plugin-install.min.js'),(391,'wp-admin/js/post.js'),(392,'wp-admin/js/post.min.js'),(393,'wp-admin/js/postbox.js'),(394,'wp-admin/js/postbox.min.js'),(395,'wp-admin/js/press-this.js'),(396,'wp-admin/js/press-this.min.js'),(397,'wp-admin/js/revisions.js'),(398,'wp-admin/js/revisions.min.js'),(399,'wp-admin/js/set-post-thumbnail.js'),(400,'wp-admin/js/set-post-thumbnail.min.js'),(401,'wp-admin/js/svg-painter.js'),(402,'wp-admin/js/svg-painter.min.js'),(403,'wp-admin/js/tags-box.js'),(404,'wp-admin/js/tags-box.min.js'),(405,'wp-admin/js/tags-suggest.js'),(406,'wp-admin/js/tags-suggest.min.js'),(407,'wp-admin/js/tags.js'),(408,'wp-admin/js/tags.min.js'),(409,'wp-admin/js/theme.js'),(410,'wp-admin/js/theme.min.js'),(411,'wp-admin/js/updates.js'),(412,'wp-admin/js/updates.min.js'),(413,'wp-admin/js/user-profile.js'),(414,'wp-admin/js/user-profile.min.js'),(415,'wp-admin/js/user-suggest.js'),(416,'wp-admin/js/user-suggest.min.js'),(417,'wp-admin/js/widgets/media-audio-widget.js'),(418,'wp-admin/js/widgets/media-audio-widget.min.js'),(419,'wp-admin/js/widgets/media-image-widget.js'),(420,'wp-admin/js/widgets/media-image-widget.min.js'),(421,'wp-admin/js/widgets/media-video-widget.js'),(422,'wp-admin/js/widgets/media-video-widget.min.js'),(423,'wp-admin/js/widgets/media-widgets.js'),(424,'wp-admin/js/widgets/media-widgets.min.js'),(425,'wp-admin/js/widgets/text-widgets.js'),(426,'wp-admin/js/widgets/text-widgets.min.js'),(427,'wp-admin/js/widgets.js'),(428,'wp-admin/js/widgets.min.js'),(429,'wp-admin/js/word-count.js'),(430,'wp-admin/js/word-count.min.js'),(431,'wp-admin/js/wp-fullscreen-stub.js'),(432,'wp-admin/js/wp-fullscreen-stub.min.js'),(433,'wp-admin/js/xfn.js'),(434,'wp-admin/js/xfn.min.js'),(435,'wp-admin/link-add.php'),(436,'wp-admin/link-manager.php'),(437,'wp-admin/link-parse-opml.php'),(438,'wp-admin/link.php'),(439,'wp-admin/load-scripts.php'),(440,'wp-admin/load-styles.php'),(441,'wp-admin/maint/repair.php'),(442,'wp-admin/media-new.php'),(443,'wp-admin/media-upload.php'),(444,'wp-admin/media.php'),(445,'wp-admin/menu-header.php'),(446,'wp-admin/menu.php'),(447,'wp-admin/moderation.php'),(448,'wp-admin/ms-admin.php'),(449,'wp-admin/ms-delete-site.php'),(450,'wp-admin/ms-edit.php'),(451,'wp-admin/ms-options.php'),(452,'wp-admin/ms-sites.php'),(453,'wp-admin/ms-themes.php'),(454,'wp-admin/ms-upgrade-network.php'),(455,'wp-admin/ms-users.php'),(456,'wp-admin/my-sites.php'),(457,'wp-admin/nav-menus.php'),(458,'wp-admin/network/about.php'),(459,'wp-admin/network/admin.php'),(460,'wp-admin/network/credits.php'),(461,'wp-admin/network/edit.php'),(462,'wp-admin/network/freedoms.php'),(463,'wp-admin/network/index.php'),(464,'wp-admin/network/menu.php'),(465,'wp-admin/network/plugin-editor.php'),(466,'wp-admin/network/plugin-install.php'),(467,'wp-admin/network/plugins.php'),(468,'wp-admin/network/profile.php'),(469,'wp-admin/network/settings.php'),(470,'wp-admin/network/setup.php'),(471,'wp-admin/network/site-info.php'),(472,'wp-admin/network/site-new.php'),(473,'wp-admin/network/site-settings.php'),(474,'wp-admin/network/site-themes.php'),(475,'wp-admin/network/site-users.php'),(476,'wp-admin/network/sites.php'),(477,'wp-admin/network/theme-editor.php'),(478,'wp-admin/network/theme-install.php'),(479,'wp-admin/network/themes.php'),(480,'wp-admin/network/update-core.php'),(481,'wp-admin/network/update.php'),(482,'wp-admin/network/upgrade.php'),(483,'wp-admin/network/user-edit.php'),(484,'wp-admin/network/user-new.php'),(485,'wp-admin/network/users.php'),(486,'wp-admin/network.php'),(487,'wp-admin/options-discussion.php'),(488,'wp-admin/options-general.php'),(489,'wp-admin/options-head.php'),(490,'wp-admin/options-media.php'),(491,'wp-admin/options-permalink.php'),(492,'wp-admin/options-reading.php'),(493,'wp-admin/options-writing.php'),(494,'wp-admin/options.php'),(495,'wp-admin/plugin-editor.php'),(496,'wp-admin/plugin-install.php'),(497,'wp-admin/plugins.php'),(498,'wp-admin/post-new.php'),(499,'wp-admin/post.php'),(500,'wp-admin/press-this.php'),(501,'wp-admin/profile.php'),(502,'wp-admin/revision.php'),(503,'wp-admin/setup-config.php'),(504,'wp-admin/term.php'),(505,'wp-admin/theme-editor.php'),(506,'wp-admin/theme-install.php'),(507,'wp-admin/themes.php'),(508,'wp-admin/tools.php'),(509,'wp-admin/update-core.php'),(510,'wp-admin/update.php'),(511,'wp-admin/upgrade-functions.php'),(512,'wp-admin/upgrade.php'),(513,'wp-admin/upload.php'),(514,'wp-admin/user/about.php'),(515,'wp-admin/user/admin.php'),(516,'wp-admin/user/credits.php'),(517,'wp-admin/user/freedoms.php'),(518,'wp-admin/user/index.php'),(519,'wp-admin/user/menu.php'),(520,'wp-admin/user/profile.php'),(521,'wp-admin/user/user-edit.php'),(522,'wp-admin/user-edit.php'),(523,'wp-admin/user-new.php'),(524,'wp-admin/users.php'),(525,'wp-admin/widgets.php'),(526,'wp-blog-header.php'),(527,'wp-comments-post.php'),(528,'wp-config-sample.php'),(529,'wp-config.php'),(530,'wp-content/index.php'),(531,'wp-content/plugins/akismet/.htaccess'),(532,'wp-content/plugins/akismet/LICENSE.txt'),(533,'wp-content/plugins/akismet/_inc/akismet.css'),(534,'wp-content/plugins/akismet/_inc/akismet.js'),(535,'wp-content/plugins/akismet/_inc/form.js'),(536,'wp-content/plugins/akismet/_inc/img/logo-full-2x.png'),(537,'wp-content/plugins/akismet/akismet.php'),(538,'wp-content/plugins/akismet/class.akismet-admin.php'),(539,'wp-content/plugins/akismet/class.akismet-cli.php'),(540,'wp-content/plugins/akismet/class.akismet-widget.php'),(541,'wp-content/plugins/akismet/class.akismet.php'),(542,'wp-content/plugins/akismet/index.php'),(543,'wp-content/plugins/akismet/readme.txt'),(544,'wp-content/plugins/akismet/views/config.php'),(545,'wp-content/plugins/akismet/views/get.php'),(546,'wp-content/plugins/akismet/views/notice.php'),(547,'wp-content/plugins/akismet/views/start.php'),(548,'wp-content/plugins/akismet/views/stats.php'),(549,'wp-content/plugins/akismet/wrapper.php'),(550,'wp-content/plugins/contact-form-7/admin/admin.php'),(551,'wp-content/plugins/contact-form-7/admin/css/styles-rtl.css'),(552,'wp-content/plugins/contact-form-7/admin/css/styles.css'),(553,'wp-content/plugins/contact-form-7/admin/edit-contact-form.php'),(554,'wp-content/plugins/contact-form-7/admin/includes/admin-functions.php'),(555,'wp-content/plugins/contact-form-7/admin/includes/class-contact-forms-list-table.php'),(556,'wp-content/plugins/contact-form-7/admin/includes/editor.php'),(557,'wp-content/plugins/contact-form-7/admin/includes/help-tabs.php'),(558,'wp-content/plugins/contact-form-7/admin/includes/tag-generator.php'),(559,'wp-content/plugins/contact-form-7/admin/includes/welcome-panel.php'),(560,'wp-content/plugins/contact-form-7/admin/js/scripts.js'),(561,'wp-content/plugins/contact-form-7/admin/js/tag-generator.js'),(562,'wp-content/plugins/contact-form-7/images/ajax-loader.gif'),(563,'wp-content/plugins/contact-form-7/includes/capabilities.php'),(564,'wp-content/plugins/contact-form-7/includes/config-validator.php'),(565,'wp-content/plugins/contact-form-7/includes/contact-form-functions.php'),(566,'wp-content/plugins/contact-form-7/includes/contact-form-template.php'),(567,'wp-content/plugins/contact-form-7/includes/contact-form.php'),(568,'wp-content/plugins/contact-form-7/includes/controller.php'),(569,'wp-content/plugins/contact-form-7/includes/css/styles-rtl.css'),(570,'wp-content/plugins/contact-form-7/includes/css/styles.css'),(571,'wp-content/plugins/contact-form-7/includes/form-tag.php'),(572,'wp-content/plugins/contact-form-7/includes/form-tags-manager.php'),(573,'wp-content/plugins/contact-form-7/includes/formatting.php'),(574,'wp-content/plugins/contact-form-7/includes/functions.php'),(575,'wp-content/plugins/contact-form-7/includes/integration.php'),(576,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png'),(577,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png'),(578,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png'),(579,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png'),(580,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png'),(581,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png'),(582,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png'),(583,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png'),(584,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png'),(585,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png'),(586,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png'),(587,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png'),(588,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png'),(589,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.css'),(590,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.min.css'),(591,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/theme.css'),(592,'wp-content/plugins/contact-form-7/includes/js/scripts.js'),(593,'wp-content/plugins/contact-form-7/includes/l10n.php'),(594,'wp-content/plugins/contact-form-7/includes/mail.php'),(595,'wp-content/plugins/contact-form-7/includes/pipe.php'),(596,'wp-content/plugins/contact-form-7/includes/rest-api.php'),(597,'wp-content/plugins/contact-form-7/includes/shortcodes.php'),(598,'wp-content/plugins/contact-form-7/includes/submission.php'),(599,'wp-content/plugins/contact-form-7/includes/upgrade.php'),(600,'wp-content/plugins/contact-form-7/includes/validation.php'),(601,'wp-content/plugins/contact-form-7/languages/readme.txt'),(602,'wp-content/plugins/contact-form-7/license.txt'),(603,'wp-content/plugins/contact-form-7/modules/acceptance.php'),(604,'wp-content/plugins/contact-form-7/modules/akismet.php'),(605,'wp-content/plugins/contact-form-7/modules/checkbox.php'),(606,'wp-content/plugins/contact-form-7/modules/count.php'),(607,'wp-content/plugins/contact-form-7/modules/date.php'),(608,'wp-content/plugins/contact-form-7/modules/file.php'),(609,'wp-content/plugins/contact-form-7/modules/flamingo.php'),(610,'wp-content/plugins/contact-form-7/modules/hidden.php'),(611,'wp-content/plugins/contact-form-7/modules/listo.php'),(612,'wp-content/plugins/contact-form-7/modules/number.php'),(613,'wp-content/plugins/contact-form-7/modules/quiz.php'),(614,'wp-content/plugins/contact-form-7/modules/really-simple-captcha.php'),(615,'wp-content/plugins/contact-form-7/modules/recaptcha.php'),(616,'wp-content/plugins/contact-form-7/modules/response.php'),(617,'wp-content/plugins/contact-form-7/modules/select.php'),(618,'wp-content/plugins/contact-form-7/modules/submit.php'),(619,'wp-content/plugins/contact-form-7/modules/text.php'),(620,'wp-content/plugins/contact-form-7/modules/textarea.php'),(621,'wp-content/plugins/contact-form-7/readme.txt'),(622,'wp-content/plugins/contact-form-7/settings.php'),(623,'wp-content/plugins/contact-form-7/uninstall.php'),(624,'wp-content/plugins/contact-form-7/wp-contact-form-7.php'),(625,'wp-content/plugins/easy-theme-and-plugin-upgrades/admin.php'),(626,'wp-content/plugins/easy-theme-and-plugin-upgrades/custom-plugin-upgrader.php'),(627,'wp-content/plugins/easy-theme-and-plugin-upgrades/custom-theme-upgrader.php'),(628,'wp-content/plugins/easy-theme-and-plugin-upgrades/history.txt'),(629,'wp-content/plugins/easy-theme-and-plugin-upgrades/index.php'),(630,'wp-content/plugins/easy-theme-and-plugin-upgrades/init.php'),(631,'wp-content/plugins/easy-theme-and-plugin-upgrades/readme.txt'),(632,'wp-content/plugins/hello.php'),(633,'wp-content/plugins/index.php'),(634,'wp-content/plugins/js_composer_salient/assets/js/dist/backend-actions.min.js'),(635,'wp-content/plugins/js_composer_salient/assets/js/dist/backend.min.js'),(636,'wp-content/plugins/js_composer_salient/assets/js/dist/backend.real.min.js'),(637,'wp-content/plugins/js_composer_salient/assets/js/dist/edit-form.min.js'),(638,'wp-content/plugins/js_composer_salient/assets/js/dist/frontend-editor.min.js'),(639,'wp-content/plugins/js_composer_salient/assets/js/dist/grid-builder.min.js'),(640,'wp-content/plugins/js_composer_salient/assets/js/dist/js_composer_front.min.js'),(641,'wp-content/plugins/js_composer_salient/assets/js/dist/page_editable.min.js'),(642,'wp-content/plugins/js_composer_salient/assets/js/dist/settings.min.js'),(643,'wp-content/plugins/js_composer_salient/assets/js/dist/vc_grid.min.js'),(644,'wp-content/plugins/js_composer_salient/assets/js/editors/templates-preview.js'),(645,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/charts/vc_line_chart.js'),(646,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/charts/vc_pie.js'),(647,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/charts/vc_round_chart.js'),(648,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/containers/container.js'),(649,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/containers/container_with_parent.js'),(650,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/containers/vc_column.js'),(651,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/containers/vc_column_inner.js'),(652,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/containers/vc_row.js'),(653,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/containers/vc_row_inner.js'),(654,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/containers/vc_section.js'),(655,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/content/vc_column_text.js'),(656,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/content/vc_flickr.js'),(657,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/content/vc_posts_slider.js'),(658,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/content/vc_raw_js.js'),(659,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/content/vc_toggle.js'),(660,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/deprecated/tabs/vc_accordion.js'),(661,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/deprecated/tabs/vc_accordion_tab.js'),(662,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/deprecated/tabs/vc_tab.js'),(663,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/deprecated/tabs/vc_tabs.js'),(664,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/deprecated/tabs/vc_tour.js'),(665,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/deprecated/vc_carousel.js'),(666,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/grids/vc_basic_grid.js'),(667,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/grids/vc_masonry_grid.js'),(668,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/grids/vc_masonry_media_grid.js'),(669,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/grids/vc_media_grid.js'),(670,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/images/vc_gallery.js'),(671,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/images/vc_images_carousel.js'),(672,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/images/vc_single_image.js'),(673,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/tta/tta_events.js'),(674,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/tta/vc_tta_accordion.js'),(675,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/tta/vc_tta_pageable.js'),(676,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/tta/vc_tta_section.js'),(677,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/tta/vc_tta_tabs.js'),(678,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/shortcodes/tta/vc_tta_tour.js'),(679,'wp-content/plugins/js_composer_salient/assets/js/frontend_editor/vendors/plugins/jwplayer.js'),(680,'wp-content/plugins/js_composer_salient/assets/js/vendors/advanced_custom_fields.js'),(681,'wp-content/plugins/js_composer_salient/assets/js/vendors/qtranslate_backend.js'),(682,'wp-content/plugins/js_composer_salient/assets/js/vendors/qtranslate_frontend.js'),(683,'wp-content/plugins/js_composer_salient/assets/js/vendors/qtranslatex_backend.js'),(684,'wp-content/plugins/js_composer_salient/assets/js/vendors/qtranslatex_frontend.js'),(685,'wp-content/plugins/js_composer_salient/assets/js/vendors/woocommerce-add-to-cart.js'),(686,'wp-content/plugins/js_composer_salient/assets/js/vendors/woocommerce.js'),(687,'wp-content/plugins/js_composer_salient/assets/js/vendors/yoast.js'),(688,'wp-content/plugins/js_composer_salient/assets/lib/bower/ace-builds/src-min-noconflict/ace.js'),(689,'wp-content/plugins/js_composer_salient/assets/lib/bower/ace-builds/src-min-noconflict/mode-css.js'),(690,'wp-content/plugins/js_composer_salient/assets/lib/bower/ace-builds/src-min-noconflict/theme-chrome.js'),(691,'wp-content/plugins/js_composer_salient/assets/lib/bower/ace-builds/src-min-noconflict/worker-css.js'),(692,'wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/dist/js/bootstrap.min.js'),(693,'wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/affix.min.js'),(694,'wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/alert.min.js'),(695,'wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/button.min.js'),(696,'wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/carousel.min.js'),(697,'wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/collapse.min.js'),(698,'wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/dropdown.min.js'),(699,'wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/modal.min.js'),(700,'wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/popover.min.js'),(701,'wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/scrollspy.min.js'),(702,'wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/tab.min.js'),(703,'wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/tooltip.min.js'),(704,'wp-content/plugins/js_composer_salient/assets/lib/bower/bootstrap3/js/transition.min.js'),(705,'wp-content/plugins/js_composer_salient/assets/lib/bower/chartjs/Chart.min.js'),(706,'wp-content/plugins/js_composer_salient/assets/lib/bower/flexslider/jquery.flexslider-min.js'),(707,'wp-content/plugins/js_composer_salient/assets/lib/bower/imagesloaded/imagesloaded.pkgd.min.js'),(708,'wp-content/plugins/js_composer_salient/assets/lib/bower/isotope/dist/isotope.pkgd.min.js'),(709,'wp-content/plugins/js_composer_salient/assets/lib/bower/jquery-ui-tabs-rotate/jquery-ui-tabs-rotate.min.js'),(710,'wp-content/plugins/js_composer_salient/assets/lib/bower/json-js/json2.min.js'),(711,'wp-content/plugins/js_composer_salient/assets/lib/bower/lessjs/dist/less.min.js'),(712,'wp-content/plugins/js_composer_salient/assets/lib/bower/masonry/dist/masonry.pkgd.min.js'),(713,'wp-content/plugins/js_composer_salient/assets/lib/bower/nivoslider/jquery.nivo.slider.pack.js'),(714,'wp-content/plugins/js_composer_salient/assets/lib/bower/progress-circle/ProgressCircle.min.js'),(715,'wp-content/plugins/js_composer_salient/assets/lib/bower/scrollTo/jquery.scrollTo.min.js'),(716,'wp-content/plugins/js_composer_salient/assets/lib/bower/skrollr/dist/skrollr.min.js'),(717,'wp-content/plugins/js_composer_salient/assets/lib/bower/twbs-pagination/jquery.twbsPagination.min.js'),(718,'wp-content/plugins/js_composer_salient/assets/lib/bower/vcIconPicker/jquery.fonticonpicker.min.js'),(719,'wp-content/plugins/js_composer_salient/assets/lib/bower/zoom/jquery.zoom.min.js'),(720,'wp-content/plugins/js_composer_salient/assets/lib/owl-carousel2-dist/owl.carousel.min.js'),(721,'wp-content/plugins/js_composer_salient/assets/lib/php.default/php.default.min.js'),(722,'wp-content/plugins/js_composer_salient/assets/lib/prettyphoto/js/jquery.prettyPhoto.min.js'),(723,'wp-content/plugins/js_composer_salient/assets/lib/vc-tta-autoplay/vc-tta-autoplay.min.js'),(724,'wp-content/plugins/js_composer_salient/assets/lib/vc_accordion/vc-accordion.min.js'),(725,'wp-content/plugins/js_composer_salient/assets/lib/vc_carousel/js/transition.min.js'),(726,'wp-content/plugins/js_composer_salient/assets/lib/vc_carousel/js/vc_carousel.min.js'),(727,'wp-content/plugins/js_composer_salient/assets/lib/vc_chart/jquery.vc_chart.min.js'),(728,'wp-content/plugins/js_composer_salient/assets/lib/vc_image_zoom/vc_image_zoom.min.js'),(729,'wp-content/plugins/js_composer_salient/assets/lib/vc_line_chart/vc_line_chart.min.js'),(730,'wp-content/plugins/js_composer_salient/assets/lib/vc_round_chart/vc_round_chart.min.js'),(731,'wp-content/plugins/js_composer_salient/assets/lib/vc_tabs/vc-tabs.min.js'),(732,'wp-content/plugins/js_composer_salient/assets/lib/waypoints/waypoints.min.js'),(733,'wp-content/plugins/js_composer_salient/config/buttons/shortcode-vc-btn.php'),(734,'wp-content/plugins/js_composer_salient/config/buttons/shortcode-vc-cta.php'),(735,'wp-content/plugins/js_composer_salient/config/containers/shortcode-vc-column-inner.php'),(736,'wp-content/plugins/js_composer_salient/config/containers/shortcode-vc-column.php'),(737,'wp-content/plugins/js_composer_salient/config/containers/shortcode-vc-row-inner.php'),(738,'wp-content/plugins/js_composer_salient/config/containers/shortcode-vc-row.php'),(739,'wp-content/plugins/js_composer_salient/config/containers/shortcode-vc-section.php'),(740,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-column-text.php'),(741,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-custom-heading.php'),(742,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-empty-space.php'),(743,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-flickr.php'),(744,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-gallery.php'),(745,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-gmaps.php'),(746,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-icon.php'),(747,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-images-carousel.php'),(748,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-line-chart.php'),(749,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-message.php'),(750,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-pie.php'),(751,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-posts-slider.php'),(752,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-progress-bar.php'),(753,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-round-chart.php'),(754,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-separator.php'),(755,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-single-image.php'),(756,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-text-separator.php'),(757,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-toggle.php'),(758,'wp-content/plugins/js_composer_salient/config/content/shortcode-vc-video.php'),(759,'wp-content/plugins/js_composer_salient/config/content/vc-custom-heading-element.php'),(760,'wp-content/plugins/js_composer_salient/config/content/vc-icon-element.php'),(761,'wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-accordion-tab.php'),(762,'wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-accordion.php'),(763,'wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-button.php'),(764,'wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-button2.php'),(765,'wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-carousel.php'),(766,'wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-cta-button.php'),(767,'wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-cta-button2.php'),(768,'wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-posts-grid.php'),(769,'wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-tab.php'),(770,'wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-tabs.php'),(771,'wp-content/plugins/js_composer_salient/config/deprecated/shortcode-vc-tour.php'),(772,'wp-content/plugins/js_composer_salient/config/grids/class-vc-grids-common.php'),(773,'wp-content/plugins/js_composer_salient/config/grids/shortcode-vc-basic-grid.php'),(774,'wp-content/plugins/js_composer_salient/config/grids/shortcode-vc-masonry-grid.php'),(775,'wp-content/plugins/js_composer_salient/config/grids/shortcode-vc-masonry-media-grid.php'),(776,'wp-content/plugins/js_composer_salient/config/grids/shortcode-vc-media-grid.php'),(777,'wp-content/plugins/js_composer_salient/config/grids/vc-grids-functions.php'),(778,'wp-content/plugins/js_composer_salient/config/lean-map.php'),(779,'wp-content/plugins/js_composer_salient/config/social/shortcode-vc-facebook.php'),(780,'wp-content/plugins/js_composer_salient/config/social/shortcode-vc-googleplus.php'),(781,'wp-content/plugins/js_composer_salient/config/social/shortcode-vc-pinterest.php'),(782,'wp-content/plugins/js_composer_salient/config/social/shortcode-vc-tweetmeme.php'),(783,'wp-content/plugins/js_composer_salient/config/structure/shortcode-vc-raw-html.php'),(784,'wp-content/plugins/js_composer_salient/config/structure/shortcode-vc-raw-js.php'),(785,'wp-content/plugins/js_composer_salient/config/structure/shortcode-vc-widget-sidebar.php'),(786,'wp-content/plugins/js_composer_salient/config/templates.php'),(787,'wp-content/plugins/js_composer_salient/config/tta/shortcode-vc-tta-accordion.php'),(788,'wp-content/plugins/js_composer_salient/config/tta/shortcode-vc-tta-pageable.php'),(789,'wp-content/plugins/js_composer_salient/config/tta/shortcode-vc-tta-section.php'),(790,'wp-content/plugins/js_composer_salient/config/tta/shortcode-vc-tta-tabs.php'),(791,'wp-content/plugins/js_composer_salient/config/tta/shortcode-vc-tta-tour.php'),(792,'wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-archives.php'),(793,'wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-calendar.php'),(794,'wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-categories.php'),(795,'wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-custommenu.php'),(796,'wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-links.php'),(797,'wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-meta.php'),(798,'wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-pages.php'),(799,'wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-posts.php'),(800,'wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-recentcomments.php'),(801,'wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-rss.php'),(802,'wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-search.php'),(803,'wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-tagcloud.php'),(804,'wp-content/plugins/js_composer_salient/config/wp/shortcode-vc-wp-text.php'),(805,'wp-content/plugins/js_composer_salient/include/autoload/backend-editor-ie.php'),(806,'wp-content/plugins/js_composer_salient/include/autoload/bc-access-rules-4.8.php'),(807,'wp-content/plugins/js_composer_salient/include/autoload/bc-multisite-options.php'),(808,'wp-content/plugins/js_composer_salient/include/autoload/class-vc-settings-presets.php'),(809,'wp-content/plugins/js_composer_salient/include/autoload/class-vc-vendor-presets.php'),(810,'wp-content/plugins/js_composer_salient/include/autoload/frontend-editor-ie.php'),(811,'wp-content/plugins/js_composer_salient/include/autoload/hook-vc-grid.php'),(812,'wp-content/plugins/js_composer_salient/include/autoload/hook-vc-iconpicker-param.php'),(813,'wp-content/plugins/js_composer_salient/include/autoload/hook-vc-message.php'),(814,'wp-content/plugins/js_composer_salient/include/autoload/hook-vc-pie.php'),(815,'wp-content/plugins/js_composer_salient/include/autoload/hook-vc-progress-bar.php'),(816,'wp-content/plugins/js_composer_salient/include/autoload/hook-vc-wp-text.php'),(817,'wp-content/plugins/js_composer_salient/include/autoload/params/hidden.php'),(818,'wp-content/plugins/js_composer_salient/include/autoload/params/vc_grid_item.php'),(819,'wp-content/plugins/js_composer_salient/include/autoload/params-to-init.php'),(820,'wp-content/plugins/js_composer_salient/include/autoload/post-type-default-template.php'),(821,'wp-content/plugins/js_composer_salient/include/autoload/ui-vc-pointers.php'),(822,'wp-content/plugins/js_composer_salient/include/autoload/vc-grid-item-editor.php'),(823,'wp-content/plugins/js_composer_salient/include/autoload/vc-image-filters.php'),(824,'wp-content/plugins/js_composer_salient/include/autoload/vc-pages/automapper.php'),(825,'wp-content/plugins/js_composer_salient/include/autoload/vc-pages/page-custom-css.php'),(826,'wp-content/plugins/js_composer_salient/include/autoload/vc-pages/page-design-options.php'),(827,'wp-content/plugins/js_composer_salient/include/autoload/vc-pages/page-role-manager.php'),(828,'wp-content/plugins/js_composer_salient/include/autoload/vc-pages/pages.php'),(829,'wp-content/plugins/js_composer_salient/include/autoload/vc-pages/settings-tabs.php'),(830,'wp-content/plugins/js_composer_salient/include/autoload/vc-pages/welcome-screen.php'),(831,'wp-content/plugins/js_composer_salient/include/autoload/vc-pointers-backend-editor.php'),(832,'wp-content/plugins/js_composer_salient/include/autoload/vc-pointers-frontend-editor.php'),(833,'wp-content/plugins/js_composer_salient/include/autoload/vc-settings-presets.php'),(834,'wp-content/plugins/js_composer_salient/include/autoload/vc-shortcode-autoloader.php'),(835,'wp-content/plugins/js_composer_salient/include/autoload/vc-single-image.php'),(836,'wp-content/plugins/js_composer_salient/include/autoload/vendors/acf.php'),(837,'wp-content/plugins/js_composer_salient/include/autoload/vendors/cf7.php'),(838,'wp-content/plugins/js_composer_salient/include/autoload/vendors/gravity_forms.php'),(839,'wp-content/plugins/js_composer_salient/include/autoload/vendors/jwplayer.php'),(840,'wp-content/plugins/js_composer_salient/include/autoload/vendors/layerslider.php'),(841,'wp-content/plugins/js_composer_salient/include/autoload/vendors/mqtranslate.php'),(842,'wp-content/plugins/js_composer_salient/include/autoload/vendors/ninja_forms.php'),(843,'wp-content/plugins/js_composer_salient/include/autoload/vendors/qtranslate-x.php'),(844,'wp-content/plugins/js_composer_salient/include/autoload/vendors/qtranslate.php'),(845,'wp-content/plugins/js_composer_salient/include/autoload/vendors/revslider.php'),(846,'wp-content/plugins/js_composer_salient/include/autoload/vendors/woocommerce.php'),(847,'wp-content/plugins/js_composer_salient/include/autoload/vendors/wp_customize.php'),(848,'wp-content/plugins/js_composer_salient/include/autoload/vendors/wpml.php'),(849,'wp-content/plugins/js_composer_salient/include/autoload/vendors/yoast_seo.php'),(850,'wp-content/plugins/js_composer_salient/include/classes/core/access/abstract-class-vc-access.php'),(851,'wp-content/plugins/js_composer_salient/include/classes/core/access/class-vc-current-user-access-controller.php'),(852,'wp-content/plugins/js_composer_salient/include/classes/core/access/class-vc-current-user-access.php'),(853,'wp-content/plugins/js_composer_salient/include/classes/core/access/class-vc-role-access-controller.php'),(854,'wp-content/plugins/js_composer_salient/include/classes/core/access/class-vc-role-access.php'),(855,'wp-content/plugins/js_composer_salient/include/classes/core/class-vc-base.php'),(856,'wp-content/plugins/js_composer_salient/include/classes/core/class-vc-mapper.php'),(857,'wp-content/plugins/js_composer_salient/include/classes/core/class-vc-page.php'),(858,'wp-content/plugins/js_composer_salient/include/classes/core/class-vc-pages-group.php'),(859,'wp-content/plugins/js_composer_salient/include/classes/core/class-vc-post-admin.php'),(860,'wp-content/plugins/js_composer_salient/include/classes/core/class-vc-shared-library.php'),(861,'wp-content/plugins/js_composer_salient/include/classes/core/class-vc-sort.php'),(862,'wp-content/plugins/js_composer_salient/include/classes/core/class-wpb-map.php'),(863,'wp-content/plugins/js_composer_salient/include/classes/core/interfaces.php'),(864,'wp-content/plugins/js_composer_salient/include/classes/core/shared-templates/class-vc-shared-templates.php'),(865,'wp-content/plugins/js_composer_salient/include/classes/core/shared-templates/importer/parsers.php'),(866,'wp-content/plugins/js_composer_salient/include/classes/core/shared-templates/importer/plugin.php'),(867,'wp-content/plugins/js_composer_salient/include/classes/core/shared-templates/importer/wordpress-importer.php'),(868,'wp-content/plugins/js_composer_salient/include/classes/editors/class-vc-backend-editor.php'),(869,'wp-content/plugins/js_composer_salient/include/classes/editors/class-vc-edit-form-fields.php'),(870,'wp-content/plugins/js_composer_salient/include/classes/editors/class-vc-frontend-editor.php'),(871,'wp-content/plugins/js_composer_salient/include/classes/editors/navbar/class-vc-navbar-frontend.php'),(872,'wp-content/plugins/js_composer_salient/include/classes/editors/navbar/class-vc-navbar.php'),(873,'wp-content/plugins/js_composer_salient/include/classes/editors/popups/class-vc-add-element-box.php'),(874,'wp-content/plugins/js_composer_salient/include/classes/editors/popups/class-vc-edit-layout.php'),(875,'wp-content/plugins/js_composer_salient/include/classes/editors/popups/class-vc-post-settings.php'),(876,'wp-content/plugins/js_composer_salient/include/classes/editors/popups/class-vc-shortcode-edit-form.php'),(877,'wp-content/plugins/js_composer_salient/include/classes/editors/popups/class-vc-templates-editor.php'),(878,'wp-content/plugins/js_composer_salient/include/classes/editors/popups/class-vc-templates-panel-editor.php'),(879,'wp-content/plugins/js_composer_salient/include/classes/settings/class-vc-automapper.php'),(880,'wp-content/plugins/js_composer_salient/include/classes/settings/class-vc-license.php'),(881,'wp-content/plugins/js_composer_salient/include/classes/settings/class-vc-roles.php'),(882,'wp-content/plugins/js_composer_salient/include/classes/settings/class-vc-settings.php'),(883,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/example.php'),(884,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/layerslider-vc.php'),(885,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/paginator/class-vc-pageable.php'),(886,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/rev-slider-vc.php'),(887,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/shortcodes.php'),(888,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-accordion-tab.php'),(889,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-accordion.php'),(890,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-basic-grid.php'),(891,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-btn.php'),(892,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-button.php'),(893,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-button2.php'),(894,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-carousel.php'),(895,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-column-inner.php'),(896,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-column-text.php'),(897,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-column.php'),(898,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-cta-button.php'),(899,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-cta-button2.php'),(900,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-cta.php'),(901,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-custom-field.php'),(902,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-custom-heading.php'),(903,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-empty-space.php'),(904,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-facebook.php'),(905,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-flickr.php'),(906,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gallery.php'),(907,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-animated-block.php'),(908,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-col.php'),(909,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-image.php'),(910,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-post-author.php'),(911,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-post-categories.php'),(912,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-post-data.php'),(913,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-post-date.php'),(914,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-post-excerpt.php'),(915,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-post-meta.php'),(916,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-post-title.php'),(917,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-row.php'),(918,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-zone-a.php'),(919,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-zone-b.php'),(920,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-zone-c.php'),(921,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem-zone.php'),(922,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gitem.php'),(923,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-gmaps.php'),(924,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-googleplus.php'),(925,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-icon.php'),(926,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-images-carousel.php'),(927,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-line-chart.php'),(928,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-masonry-grid.php'),(929,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-masonry-media-grid.php'),(930,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-media-grid.php'),(931,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-message.php'),(932,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-pie.php'),(933,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-pinterest.php'),(934,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-posts-grid.php'),(935,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-posts-slider.php'),(936,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-progress-bar.php'),(937,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-raw-html.php'),(938,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-raw-js.php'),(939,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-round-chart.php'),(940,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-row-inner.php'),(941,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-row.php'),(942,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-section.php'),(943,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-separator.php'),(944,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-single-image.php'),(945,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tab.php'),(946,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tabs.php'),(947,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-text-separator.php'),(948,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-toggle.php'),(949,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tour.php'),(950,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tta-accordion.php'),(951,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tta-pageable.php'),(952,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tta-section.php'),(953,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tta-tabs.php'),(954,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tta-tour.php'),(955,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-tweetmeme.php'),(956,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-twitter.php'),(957,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-video.php'),(958,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/vc-widget-sidebar.php'),(959,'wp-content/plugins/js_composer_salient/include/classes/shortcodes/wordpress-widgets.php'),(960,'wp-content/plugins/js_composer_salient/include/classes/updaters/class-vc-updater.php'),(961,'wp-content/plugins/js_composer_salient/include/classes/updaters/class-vc-updating-manager.php'),(962,'wp-content/plugins/js_composer_salient/include/classes/vendors/class-vc-vendors-manager.php'),(963,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/acf/class-vc-acf-shortcode.php'),(964,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/acf/class-vc-gitem-acf-shortcode.php'),(965,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/acf/grid-item-attributes.php'),(966,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/acf/grid-item-shortcodes.php'),(967,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/acf/shortcode.php'),(968,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-advanced-custom-fields.php'),(969,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-contact-form7.php'),(970,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-jwplayer.php'),(971,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-layerslider.php'),(972,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-mqtranslate.php'),(973,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-ninja-forms.php'),(974,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-qtranslate-x.php'),(975,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-qtranslate.php'),(976,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-revslider.php'),(977,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-woocommerce.php'),(978,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-wpml.php'),(979,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/class-vc-vendor-yoast_seo.php'),(980,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/woocommerce/class-vc-gitem-woocommerce-shortcode.php'),(981,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/woocommerce/grid-item-attributes.php'),(982,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/woocommerce/grid-item-filters.php'),(983,'wp-content/plugins/js_composer_salient/include/classes/vendors/plugins/woocommerce/grid-item-shortcodes.php'),(984,'wp-content/plugins/js_composer_salient/include/helpers/class-vc-color-helper.php'),(985,'wp-content/plugins/js_composer_salient/include/helpers/filters.php'),(986,'wp-content/plugins/js_composer_salient/include/helpers/helpers.php'),(987,'wp-content/plugins/js_composer_salient/include/helpers/helpers_api.php'),(988,'wp-content/plugins/js_composer_salient/include/helpers/helpers_factory.php'),(989,'wp-content/plugins/js_composer_salient/include/params/animation_style/animation_style.php'),(990,'wp-content/plugins/js_composer_salient/include/params/autocomplete/autocomplete.php'),(991,'wp-content/plugins/js_composer_salient/include/params/colorpicker/colorpicker.php'),(992,'wp-content/plugins/js_composer_salient/include/params/column_offset/column_offset.php'),(993,'wp-content/plugins/js_composer_salient/include/params/css_editor/css_editor.php'),(994,'wp-content/plugins/js_composer_salient/include/params/custom_markup/custom_markup.php'),(995,'wp-content/plugins/js_composer_salient/include/params/default_params.php'),(996,'wp-content/plugins/js_composer_salient/include/params/el_id/el_id.php'),(997,'wp-content/plugins/js_composer_salient/include/params/font_container/font_container.php'),(998,'wp-content/plugins/js_composer_salient/include/params/google_fonts/google_fonts.php'),(999,'wp-content/plugins/js_composer_salient/include/params/hidden/hidden.php'),(1000,'wp-content/plugins/js_composer_salient/include/params/href/href.php'),(1001,'wp-content/plugins/js_composer_salient/include/params/iconpicker/iconpicker.php'),(1002,'wp-content/plugins/js_composer_salient/include/params/load.php'),(1003,'wp-content/plugins/js_composer_salient/include/params/loop/loop.php'),(1004,'wp-content/plugins/js_composer_salient/include/params/options/options.php'),(1005,'wp-content/plugins/js_composer_salient/include/params/param_group/param_group.php'),(1006,'wp-content/plugins/js_composer_salient/include/params/params.php'),(1007,'wp-content/plugins/js_composer_salient/include/params/params_preset/params_preset.php'),(1008,'wp-content/plugins/js_composer_salient/include/params/sorted_list/sorted_list.php'),(1009,'wp-content/plugins/js_composer_salient/include/params/tab_id/tab_id.php'),(1010,'wp-content/plugins/js_composer_salient/include/params/textarea_html/textarea_html.php'),(1011,'wp-content/plugins/js_composer_salient/include/params/vc_grid_element/vc_grid_element.php'),(1012,'wp-content/plugins/js_composer_salient/include/params/vc_grid_element/vc_grid_id/vc_grid_id.php'),(1013,'wp-content/plugins/js_composer_salient/include/params/vc_grid_item/attributes.php'),(1014,'wp-content/plugins/js_composer_salient/include/params/vc_grid_item/class-vc-grid-item.php'),(1015,'wp-content/plugins/js_composer_salient/include/params/vc_grid_item/class-wpb-map-grid-item.php'),(1016,'wp-content/plugins/js_composer_salient/include/params/vc_grid_item/editor/class-vc-grid-item-editor.php'),(1017,'wp-content/plugins/js_composer_salient/include/params/vc_grid_item/editor/class-vc-grid-item-preview.php'),(1018,'wp-content/plugins/js_composer_salient/include/params/vc_grid_item/editor/navbar/class-vc-navbar-grid-item.php'),(1019,'wp-content/plugins/js_composer_salient/include/params/vc_grid_item/editor/popups/class-vc-add-element-box-grid-item.php'),(1020,'wp-content/plugins/js_composer_salient/include/params/vc_grid_item/editor/popups/class-vc-templates-editor-grid-item.php'),(1021,'wp-content/plugins/js_composer_salient/include/params/vc_grid_item/shortcodes.php'),(1022,'wp-content/plugins/js_composer_salient/include/params/vc_grid_item/templates.php'),(1023,'wp-content/plugins/js_composer_salient/include/params/vc_link/vc_link.php'),(1024,'wp-content/plugins/js_composer_salient/include/templates/editors/backend_editor.tpl.php'),(1025,'wp-content/plugins/js_composer_salient/include/templates/editors/frontend_editor.tpl.php'),(1026,'wp-content/plugins/js_composer_salient/include/templates/editors/frontend_template.tpl.php'),(1027,'wp-content/plugins/js_composer_salient/include/templates/editors/navbar/navbar.tpl.php'),(1028,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/access-manager-js.tpl.php'),(1029,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/add_element_search.tpl.php'),(1030,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/add_element_tabs.tpl.php'),(1031,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/backend-shortcodes-templates.tpl.php'),(1032,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/backend_controls.tpl.php'),(1033,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/backend_controls_tab.tpl.php'),(1034,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/backend_editor_footer.tpl.php'),(1035,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/frontend_controls.tpl.php'),(1036,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/post_shortcodes.tpl.php'),(1037,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/prompt-presets.tpl.php'),(1038,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/prompt-templates.tpl.php'),(1039,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/settings_presets_popup.tpl.php'),(1040,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/templates_search.tpl.php'),(1041,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/vc_settings-image-block.tpl.php'),(1042,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/vc_ui-settings-dropdown.tpl.php'),(1043,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/vc_ui-templates-tabs.tpl.php'),(1044,'wp-content/plugins/js_composer_salient/include/templates/editors/partials/vc_welcome_block.tpl.php'),(1045,'wp-content/plugins/js_composer_salient/include/templates/editors/popups/modal_edit_element.tpl.php'),(1046,'wp-content/plugins/js_composer_salient/include/templates/editors/popups/panel_multi_shortcode_edit_form.tpl.php'),(1047,'wp-content/plugins/js_composer_salient/include/templates/editors/popups/panel_shortcode_edit_form.tpl.php'),(1048,'wp-content/plugins/js_composer_salient/include/templates/editors/popups/panel_templates_editor.tpl.php'),(1049,'wp-content/plugins/js_composer_salient/include/templates/editors/popups/shared-templates/category.tpl.php'),(1050,'wp-content/plugins/js_composer_salient/include/templates/editors/popups/vc_ui-footer.tpl.php'),(1051,'wp-content/plugins/js_composer_salient/include/templates/editors/popups/vc_ui-header.tpl.php'),(1052,'wp-content/plugins/js_composer_salient/include/templates/editors/popups/vc_ui-panel-add-element.tpl.php'),(1053,'wp-content/plugins/js_composer_salient/include/templates/editors/popups/vc_ui-panel-edit-element.tpl.php'),(1054,'wp-content/plugins/js_composer_salient/include/templates/editors/popups/vc_ui-panel-post-settings.tpl.php'),(1055,'wp-content/plugins/js_composer_salient/include/templates/editors/popups/vc_ui-panel-row-layout.tpl.php'),(1056,'wp-content/plugins/js_composer_salient/include/templates/editors/popups/vc_ui-panel-templates.tpl.php'),(1057,'wp-content/plugins/js_composer_salient/include/templates/editors/vc_ui-template-preview.tpl.php'),(1058,'wp-content/plugins/js_composer_salient/include/templates/pages/partials/_settings_tabs.php'),(1059,'wp-content/plugins/js_composer_salient/include/templates/pages/partials/_tabs.php'),(1060,'wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_backend_editor.tpl.php'),(1061,'wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_frontend_editor.tpl.php'),(1062,'wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_grid_builder.tpl.php'),(1063,'wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_part.tpl.php'),(1064,'wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_post_settings.tpl.php'),(1065,'wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_post_types.tpl.php'),(1066,'wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_presets.tpl.php'),(1067,'wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_settings.tpl.php'),(1068,'wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_shortcodes.tpl.php'),(1069,'wp-content/plugins/js_composer_salient/include/templates/pages/partials/vc-roles-parts/_templates.tpl.php'),(1070,'wp-content/plugins/js_composer_salient/include/templates/pages/vc-settings/default-template-post-type.tpl.php'),(1071,'wp-content/plugins/js_composer_salient/include/templates/pages/vc-settings/index.php'),(1072,'wp-content/plugins/js_composer_salient/include/templates/pages/vc-settings/tab-vc-roles.php'),(1073,'wp-content/plugins/js_composer_salient/include/templates/pages/vc-settings/tab.php'),(1074,'wp-content/plugins/js_composer_salient/include/templates/pages/vc-settings/vc-automapper.php'),(1075,'wp-content/plugins/js_composer_salient/include/templates/pages/vc-welcome/index.php'),(1076,'wp-content/plugins/js_composer_salient/include/templates/pages/vc-welcome/vc-faq.php'),(1077,'wp-content/plugins/js_composer_salient/include/templates/pages/vc-welcome/vc-resources.php'),(1078,'wp-content/plugins/js_composer_salient/include/templates/pages/vc-welcome/vc-welcome.php'),(1079,'wp-content/plugins/js_composer_salient/include/templates/params/column_offset/template.tpl.php'),(1080,'wp-content/plugins/js_composer_salient/include/templates/params/google_fonts/template.php'),(1081,'wp-content/plugins/js_composer_salient/include/templates/params/loop/templates.html'),(1082,'wp-content/plugins/js_composer_salient/include/templates/params/options/templates.html'),(1083,'wp-content/plugins/js_composer_salient/include/templates/params/param_group/add.tpl.php'),(1084,'wp-content/plugins/js_composer_salient/include/templates/params/param_group/content.tpl.php'),(1085,'wp-content/plugins/js_composer_salient/include/templates/params/param_group/inner_content.tpl.php'),(1086,'wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/attributes/featured_image.php'),(1087,'wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/attributes/post_categories.php'),(1088,'wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/attributes/vc_btn.php'),(1089,'wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/editor/partials/vc_grid_item_editor_footer.tpl.php'),(1090,'wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/editor/vc_grid_item_editor.tpl.php'),(1091,'wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/editor/vc_ui-template-preview.tpl.php'),(1092,'wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/preview.tpl.php'),(1093,'wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/shortcodes/vc_btn.php'),(1094,'wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/shortcodes/vc_button2.php'),(1095,'wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/shortcodes/vc_custom_heading.php'),(1096,'wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/shortcodes/vc_icon.php'),(1097,'wp-content/plugins/js_composer_salient/include/templates/params/vc_grid_item/shortcodes/vc_single_image.php'),(1098,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/layerslider_vc.php'),(1099,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/post_block/_item.php'),(1100,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/rev_slider_vc.php'),(1101,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_accordion.php'),(1102,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_accordion_tab.php'),(1103,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_basic_grid.php'),(1104,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_basic_grid_filter.php'),(1105,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_btn.php'),(1106,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_button.php'),(1107,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_button2.php'),(1108,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_carousel.php'),(1109,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_column.php'),(1110,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_column_inner.php'),(1111,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_column_text.php'),(1112,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_cta.php'),(1113,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_cta_button.php'),(1114,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_cta_button2.php'),(1115,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_custom_field.php'),(1116,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_custom_heading.php'),(1117,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_empty_space.php'),(1118,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_facebook.php'),(1119,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_flickr.php'),(1120,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gallery.php'),(1121,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem.php'),(1122,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_animated_block.php'),(1123,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_block.php'),(1124,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_col.php'),(1125,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_image.php'),(1126,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_post_author.php'),(1127,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_post_categories.php'),(1128,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_post_data.php'),(1129,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_post_meta.php'),(1130,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_row.php'),(1131,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_zone.php'),(1132,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gitem_zone_c.php'),(1133,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_gmaps.php'),(1134,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_googleplus.php'),(1135,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_icon.php'),(1136,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_images_carousel.php'),(1137,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_item.php'),(1138,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_items.php'),(1139,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_line_chart.php'),(1140,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_message.php'),(1141,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_pie.php'),(1142,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_pinterest.php'),(1143,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_posts_grid.php'),(1144,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_posts_slider.php'),(1145,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_progress_bar.php'),(1146,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_raw_html.php'),(1147,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_round_chart.php'),(1148,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_row.php'),(1149,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_row_inner.php'),(1150,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_section.php'),(1151,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_separator.php'),(1152,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_single_image.php'),(1153,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_tab.php'),(1154,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_tabs.php'),(1155,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_text_separator.php'),(1156,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_toggle.php'),(1157,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_tta_global.php'),(1158,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_tta_pageable_section.php'),(1159,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_tta_section.php'),(1160,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_tweetmeme.php'),(1161,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_video.php'),(1162,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_widget_sidebar.php'),(1163,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_archives.php'),(1164,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_calendar.php'),(1165,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_categories.php'),(1166,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_custommenu.php'),(1167,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_links.php'),(1168,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_meta.php'),(1169,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_pages.php'),(1170,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_posts.php'),(1171,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_recentcomments.php'),(1172,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_rss.php'),(1173,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_search.php'),(1174,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_tagcloud.php'),(1175,'wp-content/plugins/js_composer_salient/include/templates/shortcodes/vc_wp_text.php'),(1176,'wp-content/plugins/js_composer_salient/include/templates/teaser.html.php'),(1177,'wp-content/plugins/js_composer_salient/index.php'),(1178,'wp-content/plugins/js_composer_salient/js_composer.php'),(1179,'wp-content/plugins/js_composer_salient/vc_classmap.json.php'),(1180,'wp-content/plugins/js_composer_salient/vendor/mmihey/PHP-Instagram-effects/src/Image/Filter.php'),(1181,'wp-content/plugins/woocommerce/assets/css/_animation.scss'),(1182,'wp-content/plugins/woocommerce/assets/css/_fonts.scss'),(1183,'wp-content/plugins/woocommerce/assets/css/_mixins.scss'),(1184,'wp-content/plugins/woocommerce/assets/css/_variables.scss'),(1185,'wp-content/plugins/woocommerce/assets/css/activation-rtl.css'),(1186,'wp-content/plugins/woocommerce/assets/css/activation.css'),(1187,'wp-content/plugins/woocommerce/assets/css/activation.scss'),(1188,'wp-content/plugins/woocommerce/assets/css/admin-rtl.css'),(1189,'wp-content/plugins/woocommerce/assets/css/admin.css'),(1190,'wp-content/plugins/woocommerce/assets/css/admin.scss'),(1191,'wp-content/plugins/woocommerce/assets/css/auth-rtl.css'),(1192,'wp-content/plugins/woocommerce/assets/css/auth.css'),(1193,'wp-content/plugins/woocommerce/assets/css/auth.scss'),(1194,'wp-content/plugins/woocommerce/assets/css/dashboard-rtl.css'),(1195,'wp-content/plugins/woocommerce/assets/css/dashboard.css'),(1196,'wp-content/plugins/woocommerce/assets/css/dashboard.scss'),(1197,'wp-content/plugins/woocommerce/assets/css/helper-rtl.css'),(1198,'wp-content/plugins/woocommerce/assets/css/helper.css'),(1199,'wp-content/plugins/woocommerce/assets/css/helper.scss'),(1200,'wp-content/plugins/woocommerce/assets/css/menu-rtl.css'),(1201,'wp-content/plugins/woocommerce/assets/css/menu.css'),(1202,'wp-content/plugins/woocommerce/assets/css/menu.scss'),(1203,'wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.css'),(1204,'wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.png'),(1205,'wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.svg'),(1206,'wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/preloader.gif'),(1207,'wp-content/plugins/woocommerce/assets/css/photoswipe/photoswipe.css'),(1208,'wp-content/plugins/woocommerce/assets/css/prettyPhoto-rtl.css'),(1209,'wp-content/plugins/woocommerce/assets/css/prettyPhoto.css'),(1210,'wp-content/plugins/woocommerce/assets/css/prettyPhoto.scss'),(1211,'wp-content/plugins/woocommerce/assets/css/reports-print-rtl.css'),(1212,'wp-content/plugins/woocommerce/assets/css/reports-print.css'),(1213,'wp-content/plugins/woocommerce/assets/css/reports-print.scss'),(1214,'wp-content/plugins/woocommerce/assets/css/select2.css'),(1215,'wp-content/plugins/woocommerce/assets/css/select2.scss'),(1216,'wp-content/plugins/woocommerce/assets/css/twenty-seventeen-rtl.css'),(1217,'wp-content/plugins/woocommerce/assets/css/twenty-seventeen.css'),(1218,'wp-content/plugins/woocommerce/assets/css/twenty-seventeen.scss'),(1219,'wp-content/plugins/woocommerce/assets/css/wc-setup-rtl.css'),(1220,'wp-content/plugins/woocommerce/assets/css/wc-setup.css'),(1221,'wp-content/plugins/woocommerce/assets/css/wc-setup.scss'),(1222,'wp-content/plugins/woocommerce/assets/css/woocommerce-layout-rtl.css'),(1223,'wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css'),(1224,'wp-content/plugins/woocommerce/assets/css/woocommerce-layout.scss'),(1225,'wp-content/plugins/woocommerce/assets/css/woocommerce-rtl.css'),(1226,'wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen-rtl.css'),(1227,'wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css'),(1228,'wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.scss'),(1229,'wp-content/plugins/woocommerce/assets/css/woocommerce.css'),(1230,'wp-content/plugins/woocommerce/assets/css/woocommerce.scss'),(1231,'wp-content/plugins/woocommerce/assets/fonts/WooCommerce.eot'),(1232,'wp-content/plugins/woocommerce/assets/fonts/WooCommerce.svg'),(1233,'wp-content/plugins/woocommerce/assets/fonts/WooCommerce.ttf'),(1234,'wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff'),(1235,'wp-content/plugins/woocommerce/assets/fonts/star.eot'),(1236,'wp-content/plugins/woocommerce/assets/fonts/star.svg'),(1237,'wp-content/plugins/woocommerce/assets/fonts/star.ttf'),(1238,'wp-content/plugins/woocommerce/assets/fonts/star.woff'),(1239,'wp-content/plugins/woocommerce/assets/images/calendar.png'),(1240,'wp-content/plugins/woocommerce/assets/images/help.png'),(1241,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/amex.png'),(1242,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/amex.svg'),(1243,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/diners.png'),(1244,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/diners.svg'),(1245,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/discover.png'),(1246,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/discover.svg'),(1247,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/jcb.png'),(1248,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/jcb.svg'),(1249,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/laser.png'),(1250,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/laser.svg'),(1251,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/maestro.png'),(1252,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/maestro.svg'),(1253,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/mastercard.png'),(1254,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/mastercard.svg'),(1255,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.png'),(1256,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.svg'),(1257,'wp-content/plugins/woocommerce/assets/images/icons/edit.png'),(1258,'wp-content/plugins/woocommerce/assets/images/icons/loader.svg'),(1259,'wp-content/plugins/woocommerce/assets/images/paypal-braintree.png'),(1260,'wp-content/plugins/woocommerce/assets/images/paypal.png'),(1261,'wp-content/plugins/woocommerce/assets/images/placeholder.png'),(1262,'wp-content/plugins/woocommerce/assets/images/select2-spinner.gif'),(1263,'wp-content/plugins/woocommerce/assets/images/select2.png'),(1264,'wp-content/plugins/woocommerce/assets/images/select2x2.png'),(1265,'wp-content/plugins/woocommerce/assets/images/storefront-bg.jpg'),(1266,'wp-content/plugins/woocommerce/assets/images/storefront-intro.png'),(1267,'wp-content/plugins/woocommerce/assets/images/storefront.png'),(1268,'wp-content/plugins/woocommerce/assets/images/stripe.png'),(1269,'wp-content/plugins/woocommerce/assets/images/wcs-canada-post-logo.jpg'),(1270,'wp-content/plugins/woocommerce/assets/images/wcs-extensions-banner-3x.png'),(1271,'wp-content/plugins/woocommerce/assets/images/wcs-truck-banner-3x.png'),(1272,'wp-content/plugins/woocommerce/assets/images/wcs-usps-logo.png'),(1273,'wp-content/plugins/woocommerce/assets/images/woocommerce_logo.png'),(1274,'wp-content/plugins/woocommerce/assets/images/woocommerce_logo.svg'),(1275,'wp-content/plugins/woocommerce/assets/js/accounting/accounting.js'),(1276,'wp-content/plugins/woocommerce/assets/js/accounting/accounting.min.js'),(1277,'wp-content/plugins/woocommerce/assets/js/admin/api-keys.js'),(1278,'wp-content/plugins/woocommerce/assets/js/admin/api-keys.min.js'),(1279,'wp-content/plugins/woocommerce/assets/js/admin/backbone-modal.js'),(1280,'wp-content/plugins/woocommerce/assets/js/admin/backbone-modal.min.js'),(1281,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-coupon.js'),(1282,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-coupon.min.js'),(1283,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-order.js'),(1284,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-order.min.js'),(1285,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product-variation.js'),(1286,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product-variation.min.js'),(1287,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product.js'),(1288,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product.min.js'),(1289,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes.js'),(1290,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes.min.js'),(1291,'wp-content/plugins/woocommerce/assets/js/admin/product-ordering.js'),(1292,'wp-content/plugins/woocommerce/assets/js/admin/product-ordering.min.js'),(1293,'wp-content/plugins/woocommerce/assets/js/admin/quick-edit.js'),(1294,'wp-content/plugins/woocommerce/assets/js/admin/quick-edit.min.js'),(1295,'wp-content/plugins/woocommerce/assets/js/admin/reports.js'),(1296,'wp-content/plugins/woocommerce/assets/js/admin/reports.min.js'),(1297,'wp-content/plugins/woocommerce/assets/js/admin/settings-views-html-settings-tax.js'),(1298,'wp-content/plugins/woocommerce/assets/js/admin/settings-views-html-settings-tax.min.js'),(1299,'wp-content/plugins/woocommerce/assets/js/admin/settings.js'),(1300,'wp-content/plugins/woocommerce/assets/js/admin/settings.min.js'),(1301,'wp-content/plugins/woocommerce/assets/js/admin/system-status.js'),(1302,'wp-content/plugins/woocommerce/assets/js/admin/system-status.min.js'),(1303,'wp-content/plugins/woocommerce/assets/js/admin/term-ordering.js'),(1304,'wp-content/plugins/woocommerce/assets/js/admin/term-ordering.min.js'),(1305,'wp-content/plugins/woocommerce/assets/js/admin/users.js'),(1306,'wp-content/plugins/woocommerce/assets/js/admin/users.min.js'),(1307,'wp-content/plugins/woocommerce/assets/js/admin/wc-enhanced-select.js'),(1308,'wp-content/plugins/woocommerce/assets/js/admin/wc-enhanced-select.min.js'),(1309,'wp-content/plugins/woocommerce/assets/js/admin/wc-product-export.js'),(1310,'wp-content/plugins/woocommerce/assets/js/admin/wc-product-export.min.js'),(1311,'wp-content/plugins/woocommerce/assets/js/admin/wc-product-import.js'),(1312,'wp-content/plugins/woocommerce/assets/js/admin/wc-product-import.min.js'),(1313,'wp-content/plugins/woocommerce/assets/js/admin/wc-setup.js'),(1314,'wp-content/plugins/woocommerce/assets/js/admin/wc-setup.min.js'),(1315,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-classes.js'),(1316,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-classes.min.js'),(1317,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zone-methods.js'),(1318,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zone-methods.min.js'),(1319,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zones.js'),(1320,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zones.min.js'),(1321,'wp-content/plugins/woocommerce/assets/js/admin/woocommerce_admin.js'),(1322,'wp-content/plugins/woocommerce/assets/js/admin/woocommerce_admin.min.js'),(1323,'wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.js'),(1324,'wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.min.js'),(1325,'wp-content/plugins/woocommerce/assets/js/frontend/add-payment-method.js'),(1326,'wp-content/plugins/woocommerce/assets/js/frontend/add-payment-method.min.js'),(1327,'wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.js'),(1328,'wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.min.js'),(1329,'wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.js'),(1330,'wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js'),(1331,'wp-content/plugins/woocommerce/assets/js/frontend/address-i18n.js'),(1332,'wp-content/plugins/woocommerce/assets/js/frontend/address-i18n.min.js'),(1333,'wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.js'),(1334,'wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js'),(1335,'wp-content/plugins/woocommerce/assets/js/frontend/cart.js'),(1336,'wp-content/plugins/woocommerce/assets/js/frontend/cart.min.js'),(1337,'wp-content/plugins/woocommerce/assets/js/frontend/checkout.js'),(1338,'wp-content/plugins/woocommerce/assets/js/frontend/checkout.min.js'),(1339,'wp-content/plugins/woocommerce/assets/js/frontend/country-select.js'),(1340,'wp-content/plugins/woocommerce/assets/js/frontend/country-select.min.js'),(1341,'wp-content/plugins/woocommerce/assets/js/frontend/credit-card-form.js'),(1342,'wp-content/plugins/woocommerce/assets/js/frontend/credit-card-form.min.js'),(1343,'wp-content/plugins/woocommerce/assets/js/frontend/geolocation.js'),(1344,'wp-content/plugins/woocommerce/assets/js/frontend/geolocation.min.js'),(1345,'wp-content/plugins/woocommerce/assets/js/frontend/lost-password.js'),(1346,'wp-content/plugins/woocommerce/assets/js/frontend/lost-password.min.js'),(1347,'wp-content/plugins/woocommerce/assets/js/frontend/password-strength-meter.js'),(1348,'wp-content/plugins/woocommerce/assets/js/frontend/password-strength-meter.min.js'),(1349,'wp-content/plugins/woocommerce/assets/js/frontend/price-slider.js'),(1350,'wp-content/plugins/woocommerce/assets/js/frontend/price-slider.min.js'),(1351,'wp-content/plugins/woocommerce/assets/js/frontend/single-product.js'),(1352,'wp-content/plugins/woocommerce/assets/js/frontend/single-product.min.js'),(1353,'wp-content/plugins/woocommerce/assets/js/frontend/tokenization-form.js'),(1354,'wp-content/plugins/woocommerce/assets/js/frontend/tokenization-form.min.js'),(1355,'wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.js'),(1356,'wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js'),(1357,'wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.js'),(1358,'wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js'),(1359,'wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.js'),(1360,'wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.min.js'),(1361,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.js'),(1362,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.min.js'),(1363,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.js'),(1364,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.min.js'),(1365,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.js'),(1366,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.min.js'),(1367,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.js'),(1368,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.min.js'),(1369,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.js'),(1370,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.min.js'),(1371,'wp-content/plugins/woocommerce/assets/js/jquery-payment/jquery.payment.js'),(1372,'wp-content/plugins/woocommerce/assets/js/jquery-payment/jquery.payment.min.js'),(1373,'wp-content/plugins/woocommerce/assets/js/jquery-qrcode/jquery.qrcode.js'),(1374,'wp-content/plugins/woocommerce/assets/js/jquery-qrcode/jquery.qrcode.min.js'),(1375,'wp-content/plugins/woocommerce/assets/js/jquery-serializejson/jquery.serializejson.js'),(1376,'wp-content/plugins/woocommerce/assets/js/jquery-serializejson/jquery.serializejson.min.js'),(1377,'wp-content/plugins/woocommerce/assets/js/jquery-tiptip/jquery.tipTip.js'),(1378,'wp-content/plugins/woocommerce/assets/js/jquery-tiptip/jquery.tipTip.min.js'),(1379,'wp-content/plugins/woocommerce/assets/js/jquery-ui-touch-punch/jquery-ui-touch-punch.js'),(1380,'wp-content/plugins/woocommerce/assets/js/jquery-ui-touch-punch/jquery-ui-touch-punch.min.js'),(1381,'wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.js'),(1382,'wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js'),(1383,'wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.js'),(1384,'wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.min.js'),(1385,'wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.js'),(1386,'wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.min.js'),(1387,'wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.init.js'),(1388,'wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.init.min.js'),(1389,'wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.js'),(1390,'wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.min.js'),(1391,'wp-content/plugins/woocommerce/assets/js/round/round.js'),(1392,'wp-content/plugins/woocommerce/assets/js/round/round.min.js'),(1393,'wp-content/plugins/woocommerce/assets/js/select2/select2.full.js'),(1394,'wp-content/plugins/woocommerce/assets/js/select2/select2.full.min.js'),(1395,'wp-content/plugins/woocommerce/assets/js/select2/select2.js'),(1396,'wp-content/plugins/woocommerce/assets/js/select2/select2.min.js'),(1397,'wp-content/plugins/woocommerce/assets/js/stupidtable/stupidtable.js'),(1398,'wp-content/plugins/woocommerce/assets/js/stupidtable/stupidtable.min.js'),(1399,'wp-content/plugins/woocommerce/assets/js/zeroclipboard/ZeroClipboard.swf'),(1400,'wp-content/plugins/woocommerce/assets/js/zeroclipboard/jquery.zeroclipboard.js'),(1401,'wp-content/plugins/woocommerce/assets/js/zeroclipboard/jquery.zeroclipboard.min.js'),(1402,'wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.js'),(1403,'wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.min.js'),(1404,'wp-content/plugins/woocommerce/dummy-data/dummy-data.csv'),(1405,'wp-content/plugins/woocommerce/dummy-data/dummy-data.xml'),(1406,'wp-content/plugins/woocommerce/dummy-data/sample_tax_rates.csv'),(1407,'wp-content/plugins/woocommerce/i18n/continents.php'),(1408,'wp-content/plugins/woocommerce/i18n/countries.php'),(1409,'wp-content/plugins/woocommerce/i18n/languages/woocommerce.pot'),(1410,'wp-content/plugins/woocommerce/i18n/locale-info.php'),(1411,'wp-content/plugins/woocommerce/i18n/states/AR.php'),(1412,'wp-content/plugins/woocommerce/i18n/states/AU.php'),(1413,'wp-content/plugins/woocommerce/i18n/states/BD.php'),(1414,'wp-content/plugins/woocommerce/i18n/states/BG.php'),(1415,'wp-content/plugins/woocommerce/i18n/states/BO.php'),(1416,'wp-content/plugins/woocommerce/i18n/states/BR.php'),(1417,'wp-content/plugins/woocommerce/i18n/states/CA.php'),(1418,'wp-content/plugins/woocommerce/i18n/states/CN.php'),(1419,'wp-content/plugins/woocommerce/i18n/states/ES.php'),(1420,'wp-content/plugins/woocommerce/i18n/states/GR.php'),(1421,'wp-content/plugins/woocommerce/i18n/states/HK.php'),(1422,'wp-content/plugins/woocommerce/i18n/states/HU.php'),(1423,'wp-content/plugins/woocommerce/i18n/states/ID.php'),(1424,'wp-content/plugins/woocommerce/i18n/states/IE.php'),(1425,'wp-content/plugins/woocommerce/i18n/states/IN.php'),(1426,'wp-content/plugins/woocommerce/i18n/states/IR.php'),(1427,'wp-content/plugins/woocommerce/i18n/states/IT.php'),(1428,'wp-content/plugins/woocommerce/i18n/states/JP.php'),(1429,'wp-content/plugins/woocommerce/i18n/states/MX.php'),(1430,'wp-content/plugins/woocommerce/i18n/states/MY.php'),(1431,'wp-content/plugins/woocommerce/i18n/states/NG.php'),(1432,'wp-content/plugins/woocommerce/i18n/states/NP.php'),(1433,'wp-content/plugins/woocommerce/i18n/states/NZ.php'),(1434,'wp-content/plugins/woocommerce/i18n/states/PE.php'),(1435,'wp-content/plugins/woocommerce/i18n/states/PH.php'),(1436,'wp-content/plugins/woocommerce/i18n/states/PK.php'),(1437,'wp-content/plugins/woocommerce/i18n/states/RO.php'),(1438,'wp-content/plugins/woocommerce/i18n/states/TH.php'),(1439,'wp-content/plugins/woocommerce/i18n/states/TR.php'),(1440,'wp-content/plugins/woocommerce/i18n/states/US.php'),(1441,'wp-content/plugins/woocommerce/i18n/states/ZA.php'),(1442,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-data.php'),(1443,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-deprecated-hooks.php'),(1444,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-integration.php'),(1445,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-log-handler.php'),(1446,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-object-query.php'),(1447,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-order.php'),(1448,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-gateway.php'),(1449,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-token.php'),(1450,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-product.php'),(1451,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-controller.php'),(1452,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-crud-controller.php'),(1453,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-posts-controller.php'),(1454,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-shipping-zones-controller.php'),(1455,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-terms-controller.php'),(1456,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-session.php'),(1457,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-settings-api.php'),(1458,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-shipping-method.php'),(1459,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-widget.php'),(1460,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-addons.php'),(1461,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys-table-list.php'),(1462,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys.php'),(1463,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-assets.php'),(1464,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-attributes.php'),(1465,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-customize.php'),(1466,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard.php'),(1467,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-duplicate-product.php'),(1468,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-exporters.php'),(1469,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-help.php'),(1470,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-importers.php'),(1471,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-log-table-list.php'),(1472,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-menus.php'),(1473,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-meta-boxes.php'),(1474,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-notices.php'),(1475,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-permalink-settings.php'),(1476,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-pointers.php'),(1477,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-post-types.php'),(1478,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-profile.php'),(1479,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-reports.php'),(1480,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-settings.php'),(1481,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-setup-wizard.php'),(1482,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-status.php'),(1483,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-taxonomies.php'),(1484,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks-table-list.php'),(1485,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks.php'),(1486,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin.php'),(1487,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-api.php'),(1488,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-compat.php'),(1489,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-options.php'),(1490,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-plugin-info.php'),(1491,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-updater.php'),(1492,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper.php'),(1493,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-helper-compat.php'),(1494,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-main.php'),(1495,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-oauth-start.php'),(1496,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-account.php'),(1497,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-nav.php'),(1498,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-notices.php'),(1499,'wp-content/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php'),(1500,'wp-content/plugins/woocommerce/includes/admin/importers/class-wc-tax-rate-importer.php'),(1501,'wp-content/plugins/woocommerce/includes/admin/importers/mappings/default.php'),(1502,'wp-content/plugins/woocommerce/includes/admin/importers/mappings/generic.php'),(1503,'wp-content/plugins/woocommerce/includes/admin/importers/mappings/mappings.php'),(1504,'wp-content/plugins/woocommerce/includes/admin/importers/mappings/wordpress.php'),(1505,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-done.php'),(1506,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-footer.php'),(1507,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-header.php'),(1508,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-mapping.php'),(1509,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-progress.php'),(1510,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-steps.php'),(1511,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-product-csv-import-form.php'),(1512,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php'),(1513,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-actions.php'),(1514,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-data.php'),(1515,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php'),(1516,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-items.php'),(1517,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-notes.php'),(1518,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-data.php'),(1519,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-images.php'),(1520,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-reviews.php'),(1521,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-short-description.php'),(1522,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-download-permission.php'),(1523,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-fee.php'),(1524,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item-meta.php'),(1525,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item.php'),(1526,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-items.php'),(1527,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-refund.php'),(1528,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-shipping.php'),(1529,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-attribute.php'),(1530,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-advanced.php'),(1531,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-attributes.php'),(1532,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-general.php'),(1533,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-inventory.php'),(1534,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-linked-products.php'),(1535,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-panel.php'),(1536,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-shipping.php'),(1537,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-variations.php'),(1538,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-download.php'),(1539,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-variation-download.php'),(1540,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-variation-admin.php'),(1541,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-admin-report.php'),(1542,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-coupon-usage.php'),(1543,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-customer-list.php'),(1544,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-customers.php'),(1545,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-low-in-stock.php'),(1546,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-most-stocked.php'),(1547,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-out-of-stock.php'),(1548,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-category.php'),(1549,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-date.php'),(1550,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-product.php'),(1551,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-stock.php'),(1552,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-code.php'),(1553,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-date.php'),(1554,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-accounts.php'),(1555,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-api.php'),(1556,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-checkout.php'),(1557,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-emails.php'),(1558,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-general.php'),(1559,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-integrations.php'),(1560,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-page.php'),(1561,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-products.php'),(1562,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-shipping.php'),(1563,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-tax.php'),(1564,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-classes.php'),(1565,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zone-methods.php'),(1566,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zones-instance.php'),(1567,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zones.php'),(1568,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-keys-edit.php'),(1569,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-settings-tax.php'),(1570,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-webhook-log.php'),(1571,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-webhook-logs.php'),(1572,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-webhooks-edit.php'),(1573,'wp-content/plugins/woocommerce/includes/admin/settings/views/settings-tax.php'),(1574,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-addons.php'),(1575,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-product-export.php'),(1576,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-reports.php'),(1577,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-logs-db.php'),(1578,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-logs.php'),(1579,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-report.php'),(1580,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-tools.php'),(1581,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status.php'),(1582,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-settings.php'),(1583,'wp-content/plugins/woocommerce/includes/admin/views/html-bulk-edit-product.php'),(1584,'wp-content/plugins/woocommerce/includes/admin/views/html-email-template-preview.php'),(1585,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-custom.php'),(1586,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-install.php'),(1587,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-legacy-shipping.php'),(1588,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-no-shipping-methods.php'),(1589,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-simplify-commerce.php'),(1590,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-template-check.php'),(1591,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-theme-support.php'),(1592,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-tracking.php'),(1593,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-update.php'),(1594,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-updated.php'),(1595,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-updating.php'),(1596,'wp-content/plugins/woocommerce/includes/admin/views/html-quick-edit-product.php'),(1597,'wp-content/plugins/woocommerce/includes/admin/views/html-report-by-date.php'),(1598,'wp-content/plugins/woocommerce/includes/admin/wc-admin-functions.php'),(1599,'wp-content/plugins/woocommerce/includes/admin/wc-meta-box-functions.php'),(1600,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-authentication.php'),(1601,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-coupons-controller.php'),(1602,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-customer-downloads-controller.php'),(1603,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-customers-controller.php'),(1604,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-exception.php'),(1605,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-order-notes-controller.php'),(1606,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-order-refunds-controller.php'),(1607,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-orders-controller.php'),(1608,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-payment-gateways-controller.php'),(1609,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-product-attribute-terms-controller.php'),(1610,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-product-attributes-controller.php'),(1611,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-product-categories-controller.php'),(1612,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-product-reviews-controller.php'),(1613,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-product-shipping-classes-controller.php'),(1614,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-product-tags-controller.php'),(1615,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-product-variations-controller.php'),(1616,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-products-controller.php'),(1617,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-report-sales-controller.php'),(1618,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-report-top-sellers-controller.php'),(1619,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-reports-controller.php'),(1620,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-setting-options-controller.php'),(1621,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-settings-controller.php'),(1622,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-shipping-methods-controller.php'),(1623,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-shipping-zone-locations-controller.php'),(1624,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-shipping-zone-methods-controller.php'),(1625,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-shipping-zones-controller.php'),(1626,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-system-status-controller.php'),(1627,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-system-status-tools-controller.php'),(1628,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-tax-classes-controller.php'),(1629,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-taxes-controller.php'),(1630,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-webhook-deliveries.php'),(1631,'wp-content/plugins/woocommerce/includes/api/class-wc-rest-webhooks-controller.php'),(1632,'wp-content/plugins/woocommerce/includes/api/legacy/class-wc-rest-legacy-coupons-controller.php'),(1633,'wp-content/plugins/woocommerce/includes/api/legacy/class-wc-rest-legacy-orders-controller.php'),(1634,'wp-content/plugins/woocommerce/includes/api/legacy/class-wc-rest-legacy-products-controller.php'),(1635,'wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-authentication.php'),(1636,'wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-coupons.php'),(1637,'wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-customers.php'),(1638,'wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-json-handler.php'),(1639,'wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-orders.php'),(1640,'wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-products.php'),(1641,'wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-reports.php'),(1642,'wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-resource.php'),(1643,'wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-server.php'),(1644,'wp-content/plugins/woocommerce/includes/api/legacy/v1/class-wc-api-xml-handler.php'),(1645,'wp-content/plugins/woocommerce/includes/api/legacy/v1/interface-wc-api-handler.php'),(1646,'wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-authentication.php'),(1647,'wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-coupons.php'),(1648,'wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-customers.php'),(1649,'wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-exception.php'),(1650,'wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-json-handler.php'),(1651,'wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-orders.php'),(1652,'wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-products.php'),(1653,'wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-reports.php'),(1654,'wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-resource.php'),(1655,'wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-server.php'),(1656,'wp-content/plugins/woocommerce/includes/api/legacy/v2/class-wc-api-webhooks.php'),(1657,'wp-content/plugins/woocommerce/includes/api/legacy/v2/interface-wc-api-handler.php'),(1658,'wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-authentication.php'),(1659,'wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-coupons.php'),(1660,'wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-customers.php'),(1661,'wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-exception.php'),(1662,'wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-json-handler.php'),(1663,'wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-orders.php'),(1664,'wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-products.php'),(1665,'wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-reports.php'),(1666,'wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-resource.php'),(1667,'wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-server.php'),(1668,'wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-taxes.php'),(1669,'wp-content/plugins/woocommerce/includes/api/legacy/v3/class-wc-api-webhooks.php'),(1670,'wp-content/plugins/woocommerce/includes/api/legacy/v3/interface-wc-api-handler.php'),(1671,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-coupons-controller.php'),(1672,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-customer-downloads-controller.php'),(1673,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-customers-controller.php'),(1674,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-order-notes-controller.php'),(1675,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-order-refunds-controller.php'),(1676,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-orders-controller.php'),(1677,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-product-attribute-terms-controller.php'),(1678,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-product-attributes-controller.php'),(1679,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-product-categories-controller.php'),(1680,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-product-reviews-controller.php'),(1681,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-product-shipping-classes-controller.php'),(1682,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-product-tags-controller.php'),(1683,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-products-controller.php'),(1684,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-report-sales-controller.php'),(1685,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-report-top-sellers-controller.php'),(1686,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-reports-controller.php'),(1687,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-tax-classes-controller.php'),(1688,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-taxes-controller.php'),(1689,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-webhook-deliveries.php'),(1690,'wp-content/plugins/woocommerce/includes/api/v1/class-wc-rest-webhooks-controller.php'),(1691,'wp-content/plugins/woocommerce/includes/class-wc-ajax.php'),(1692,'wp-content/plugins/woocommerce/includes/class-wc-api.php'),(1693,'wp-content/plugins/woocommerce/includes/class-wc-auth.php'),(1694,'wp-content/plugins/woocommerce/includes/class-wc-autoloader.php'),(1695,'wp-content/plugins/woocommerce/includes/class-wc-background-emailer.php'),(1696,'wp-content/plugins/woocommerce/includes/class-wc-background-updater.php'),(1697,'wp-content/plugins/woocommerce/includes/class-wc-breadcrumb.php'),(1698,'wp-content/plugins/woocommerce/includes/class-wc-cache-helper.php'),(1699,'wp-content/plugins/woocommerce/includes/class-wc-cart.php'),(1700,'wp-content/plugins/woocommerce/includes/class-wc-checkout.php'),(1701,'wp-content/plugins/woocommerce/includes/class-wc-cli.php'),(1702,'wp-content/plugins/woocommerce/includes/class-wc-comments.php'),(1703,'wp-content/plugins/woocommerce/includes/class-wc-countries.php'),(1704,'wp-content/plugins/woocommerce/includes/class-wc-coupon.php'),(1705,'wp-content/plugins/woocommerce/includes/class-wc-customer-download.php'),(1706,'wp-content/plugins/woocommerce/includes/class-wc-customer.php'),(1707,'wp-content/plugins/woocommerce/includes/class-wc-data-exception.php'),(1708,'wp-content/plugins/woocommerce/includes/class-wc-data-store.php'),(1709,'wp-content/plugins/woocommerce/includes/class-wc-datetime.php'),(1710,'wp-content/plugins/woocommerce/includes/class-wc-deprecated-action-hooks.php'),(1711,'wp-content/plugins/woocommerce/includes/class-wc-deprecated-filter-hooks.php'),(1712,'wp-content/plugins/woocommerce/includes/class-wc-download-handler.php'),(1713,'wp-content/plugins/woocommerce/includes/class-wc-emails.php'),(1714,'wp-content/plugins/woocommerce/includes/class-wc-embed.php'),(1715,'wp-content/plugins/woocommerce/includes/class-wc-form-handler.php'),(1716,'wp-content/plugins/woocommerce/includes/class-wc-frontend-scripts.php'),(1717,'wp-content/plugins/woocommerce/includes/class-wc-geo-ip.php'),(1718,'wp-content/plugins/woocommerce/includes/class-wc-geolocation.php'),(1719,'wp-content/plugins/woocommerce/includes/class-wc-https.php'),(1720,'wp-content/plugins/woocommerce/includes/class-wc-install.php'),(1721,'wp-content/plugins/woocommerce/includes/class-wc-integrations.php'),(1722,'wp-content/plugins/woocommerce/includes/class-wc-legacy-api.php'),(1723,'wp-content/plugins/woocommerce/includes/class-wc-log-levels.php'),(1724,'wp-content/plugins/woocommerce/includes/class-wc-logger.php'),(1725,'wp-content/plugins/woocommerce/includes/class-wc-order-factory.php'),(1726,'wp-content/plugins/woocommerce/includes/class-wc-order-item-coupon.php'),(1727,'wp-content/plugins/woocommerce/includes/class-wc-order-item-fee.php'),(1728,'wp-content/plugins/woocommerce/includes/class-wc-order-item-meta.php'),(1729,'wp-content/plugins/woocommerce/includes/class-wc-order-item-product.php'),(1730,'wp-content/plugins/woocommerce/includes/class-wc-order-item-shipping.php'),(1731,'wp-content/plugins/woocommerce/includes/class-wc-order-item-tax.php'),(1732,'wp-content/plugins/woocommerce/includes/class-wc-order-item.php'),(1733,'wp-content/plugins/woocommerce/includes/class-wc-order-query.php'),(1734,'wp-content/plugins/woocommerce/includes/class-wc-order-refund.php'),(1735,'wp-content/plugins/woocommerce/includes/class-wc-order.php'),(1736,'wp-content/plugins/woocommerce/includes/class-wc-payment-gateways.php'),(1737,'wp-content/plugins/woocommerce/includes/class-wc-payment-tokens.php'),(1738,'wp-content/plugins/woocommerce/includes/class-wc-post-data.php'),(1739,'wp-content/plugins/woocommerce/includes/class-wc-post-types.php'),(1740,'wp-content/plugins/woocommerce/includes/class-wc-product-attribute.php'),(1741,'wp-content/plugins/woocommerce/includes/class-wc-product-download.php'),(1742,'wp-content/plugins/woocommerce/includes/class-wc-product-external.php'),(1743,'wp-content/plugins/woocommerce/includes/class-wc-product-factory.php'),(1744,'wp-content/plugins/woocommerce/includes/class-wc-product-grouped.php'),(1745,'wp-content/plugins/woocommerce/includes/class-wc-product-simple.php'),(1746,'wp-content/plugins/woocommerce/includes/class-wc-product-variable.php'),(1747,'wp-content/plugins/woocommerce/includes/class-wc-product-variation.php'),(1748,'wp-content/plugins/woocommerce/includes/class-wc-query.php'),(1749,'wp-content/plugins/woocommerce/includes/class-wc-register-wp-admin-settings.php'),(1750,'wp-content/plugins/woocommerce/includes/class-wc-session-handler.php'),(1751,'wp-content/plugins/woocommerce/includes/class-wc-shipping-rate.php'),(1752,'wp-content/plugins/woocommerce/includes/class-wc-shipping-zone.php'),(1753,'wp-content/plugins/woocommerce/includes/class-wc-shipping-zones.php'),(1754,'wp-content/plugins/woocommerce/includes/class-wc-shipping.php'),(1755,'wp-content/plugins/woocommerce/includes/class-wc-shortcodes.php'),(1756,'wp-content/plugins/woocommerce/includes/class-wc-structured-data.php'),(1757,'wp-content/plugins/woocommerce/includes/class-wc-tax.php'),(1758,'wp-content/plugins/woocommerce/includes/class-wc-template-loader.php'),(1759,'wp-content/plugins/woocommerce/includes/class-wc-tracker.php'),(1760,'wp-content/plugins/woocommerce/includes/class-wc-validation.php'),(1761,'wp-content/plugins/woocommerce/includes/class-wc-webhook.php'),(1762,'wp-content/plugins/woocommerce/includes/cli/class-wc-cli-rest-command.php'),(1763,'wp-content/plugins/woocommerce/includes/cli/class-wc-cli-runner.php'),(1764,'wp-content/plugins/woocommerce/includes/cli/class-wc-cli-tool-command.php'),(1765,'wp-content/plugins/woocommerce/includes/cli/class-wc-cli-update-command.php'),(1766,'wp-content/plugins/woocommerce/includes/data-stores/abstract-wc-order-data-store-cpt.php'),(1767,'wp-content/plugins/woocommerce/includes/data-stores/abstract-wc-order-item-type-data-store.php'),(1768,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-coupon-data-store-cpt.php'),(1769,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-data-store-session.php'),(1770,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-data-store.php'),(1771,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-download-data-store.php'),(1772,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-data-store-wp.php'),(1773,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-data-store-cpt.php'),(1774,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-coupon-data-store.php'),(1775,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-data-store.php'),(1776,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-fee-data-store.php'),(1777,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-product-store.php'),(1778,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-shipping-data-store.php'),(1779,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-tax-data-store.php'),(1780,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-refund-data-store-cpt.php'),(1781,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-payment-token-data-store.php'),(1782,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-data-store-cpt.php'),(1783,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-grouped-data-store-cpt.php'),(1784,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-variable-data-store-cpt.php'),(1785,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-variation-data-store-cpt.php'),(1786,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-shipping-zone-data-store.php'),(1787,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-cancelled-order.php'),(1788,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-completed-order.php'),(1789,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-invoice.php'),(1790,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-new-account.php'),(1791,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-note.php'),(1792,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-on-hold-order.php'),(1793,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-processing-order.php'),(1794,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-refunded-order.php'),(1795,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-reset-password.php'),(1796,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-failed-order.php'),(1797,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-new-order.php'),(1798,'wp-content/plugins/woocommerce/includes/emails/class-wc-email.php'),(1799,'wp-content/plugins/woocommerce/includes/export/abstract-wc-csv-batch-exporter.php'),(1800,'wp-content/plugins/woocommerce/includes/export/abstract-wc-csv-exporter.php'),(1801,'wp-content/plugins/woocommerce/includes/export/class-wc-product-csv-exporter.php'),(1802,'wp-content/plugins/woocommerce/includes/gateways/bacs/class-wc-gateway-bacs.php'),(1803,'wp-content/plugins/woocommerce/includes/gateways/cheque/class-wc-gateway-cheque.php'),(1804,'wp-content/plugins/woocommerce/includes/gateways/class-wc-payment-gateway-cc.php'),(1805,'wp-content/plugins/woocommerce/includes/gateways/class-wc-payment-gateway-echeck.php'),(1806,'wp-content/plugins/woocommerce/includes/gateways/cod/class-wc-gateway-cod.php'),(1807,'wp-content/plugins/woocommerce/includes/gateways/paypal/assets/images/paypal.png'),(1808,'wp-content/plugins/woocommerce/includes/gateways/paypal/class-wc-gateway-paypal.php'),(1809,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-api-handler.php'),(1810,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-ipn-handler.php'),(1811,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-pdt-handler.php'),(1812,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php'),(1813,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-response.php'),(1814,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/settings-paypal.php'),(1815,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/assets/images/cards.png'),(1816,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/assets/images/logo.png'),(1817,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/assets/js/simplify-commerce.js'),(1818,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/assets/js/simplify-commerce.min.js'),(1819,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/class-wc-addons-gateway-simplify-commerce.php'),(1820,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/class-wc-gateway-simplify-commerce.php'),(1821,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/AccessToken.php'),(1822,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Authentication.php'),(1823,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Authorization.php'),(1824,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/CardToken.php'),(1825,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Chargeback.php'),(1826,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Constants.php'),(1827,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Coupon.php'),(1828,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Customer.php'),(1829,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Deposit.php'),(1830,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Event.php'),(1831,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Exceptions.php'),(1832,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/FraudCheck.php'),(1833,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Http.php'),(1834,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Invoice.php'),(1835,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/InvoiceItem.php'),(1836,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Object.php'),(1837,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Payment.php'),(1838,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/PaymentsApi.php'),(1839,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Plan.php'),(1840,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Refund.php'),(1841,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/ResourceList.php'),(1842,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Subscription.php'),(1843,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Tax.php'),(1844,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/TransactionReview.php'),(1845,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify/Webhook.php'),(1846,'wp-content/plugins/woocommerce/includes/gateways/simplify-commerce/includes/Simplify.php'),(1847,'wp-content/plugins/woocommerce/includes/import/abstract-wc-product-importer.php'),(1848,'wp-content/plugins/woocommerce/includes/import/class-wc-product-csv-importer.php'),(1849,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-abstract-order-data-store-interface.php'),(1850,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-coupon-data-store-interface.php'),(1851,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-data-store-interface.php'),(1852,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-download-data-store-interface.php'),(1853,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-importer-interface.php'),(1854,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-log-handler-interface.php'),(1855,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-logger-interface.php'),(1856,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-object-data-store-interface.php'),(1857,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-data-store-interface.php'),(1858,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-data-store-interface.php'),(1859,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-product-data-store-interface.php'),(1860,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-type-data-store-interface.php'),(1861,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-refund-data-store-interface.php'),(1862,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-payment-token-data-store-interface.php'),(1863,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-product-data-store-interface.php'),(1864,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-product-variable-data-store-interface.php'),(1865,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-shipping-zone-data-store-interface.php'),(1866,'wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-order.php'),(1867,'wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-payment-token.php'),(1868,'wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-product.php'),(1869,'wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-coupon.php'),(1870,'wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-customer.php'),(1871,'wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-shipping-zone.php'),(1872,'wp-content/plugins/woocommerce/includes/libraries/class-emogrifier.php'),(1873,'wp-content/plugins/woocommerce/includes/libraries/class-wc-eval-math.php'),(1874,'wp-content/plugins/woocommerce/includes/libraries/wp-async-request.php'),(1875,'wp-content/plugins/woocommerce/includes/libraries/wp-background-process.php'),(1876,'wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-db.php'),(1877,'wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-email.php'),(1878,'wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-file.php'),(1879,'wp-content/plugins/woocommerce/includes/payment-tokens/class-wc-payment-token-cc.php'),(1880,'wp-content/plugins/woocommerce/includes/payment-tokens/class-wc-payment-token-echeck.php'),(1881,'wp-content/plugins/woocommerce/includes/shipping/flat-rate/class-wc-shipping-flat-rate.php'),(1882,'wp-content/plugins/woocommerce/includes/shipping/flat-rate/includes/settings-flat-rate.php'),(1883,'wp-content/plugins/woocommerce/includes/shipping/free-shipping/class-wc-shipping-free-shipping.php'),(1884,'wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate/class-wc-shipping-legacy-flat-rate.php'),(1885,'wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php'),(1886,'wp-content/plugins/woocommerce/includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php'),(1887,'wp-content/plugins/woocommerce/includes/shipping/legacy-international-delivery/class-wc-shipping-legacy-international-delivery.php'),(1888,'wp-content/plugins/woocommerce/includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php'),(1889,'wp-content/plugins/woocommerce/includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php'),(1890,'wp-content/plugins/woocommerce/includes/shipping/local-pickup/class-wc-shipping-local-pickup.php'),(1891,'wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-cart.php'),(1892,'wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-checkout.php'),(1893,'wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-my-account.php'),(1894,'wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-order-tracking.php'),(1895,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-seventeen.php'),(1896,'wp-content/plugins/woocommerce/includes/vendor/abstract-wp-rest-controller.php'),(1897,'wp-content/plugins/woocommerce/includes/vendor/class-requests-ipv6.php'),(1898,'wp-content/plugins/woocommerce/includes/vendor/wp-rest-functions.php'),(1899,'wp-content/plugins/woocommerce/includes/walkers/class-product-cat-dropdown-walker.php'),(1900,'wp-content/plugins/woocommerce/includes/walkers/class-product-cat-list-walker.php'),(1901,'wp-content/plugins/woocommerce/includes/wc-account-functions.php'),(1902,'wp-content/plugins/woocommerce/includes/wc-attribute-functions.php'),(1903,'wp-content/plugins/woocommerce/includes/wc-cart-functions.php'),(1904,'wp-content/plugins/woocommerce/includes/wc-conditional-functions.php'),(1905,'wp-content/plugins/woocommerce/includes/wc-core-functions.php'),(1906,'wp-content/plugins/woocommerce/includes/wc-coupon-functions.php'),(1907,'wp-content/plugins/woocommerce/includes/wc-deprecated-functions.php'),(1908,'wp-content/plugins/woocommerce/includes/wc-formatting-functions.php'),(1909,'wp-content/plugins/woocommerce/includes/wc-notice-functions.php'),(1910,'wp-content/plugins/woocommerce/includes/wc-order-functions.php'),(1911,'wp-content/plugins/woocommerce/includes/wc-order-item-functions.php'),(1912,'wp-content/plugins/woocommerce/includes/wc-page-functions.php'),(1913,'wp-content/plugins/woocommerce/includes/wc-product-functions.php'),(1914,'wp-content/plugins/woocommerce/includes/wc-rest-functions.php'),(1915,'wp-content/plugins/woocommerce/includes/wc-stock-functions.php'),(1916,'wp-content/plugins/woocommerce/includes/wc-template-functions.php'),(1917,'wp-content/plugins/woocommerce/includes/wc-template-hooks.php'),(1918,'wp-content/plugins/woocommerce/includes/wc-term-functions.php'),(1919,'wp-content/plugins/woocommerce/includes/wc-update-functions.php'),(1920,'wp-content/plugins/woocommerce/includes/wc-user-functions.php'),(1921,'wp-content/plugins/woocommerce/includes/wc-webhook-functions.php'),(1922,'wp-content/plugins/woocommerce/includes/wc-widget-functions.php'),(1923,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-cart.php'),(1924,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-layered-nav-filters.php'),(1925,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-layered-nav.php'),(1926,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-price-filter.php'),(1927,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-categories.php'),(1928,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-search.php'),(1929,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-tag-cloud.php'),(1930,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-products.php'),(1931,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-rating-filter.php'),(1932,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-recent-reviews.php'),(1933,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-recently-viewed.php'),(1934,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-top-rated-products.php'),(1935,'wp-content/plugins/woocommerce/license.txt'),(1936,'wp-content/plugins/woocommerce/readme.txt'),(1937,'wp-content/plugins/woocommerce/templates/archive-product.php'),(1938,'wp-content/plugins/woocommerce/templates/auth/footer.php'),(1939,'wp-content/plugins/woocommerce/templates/auth/form-grant-access.php'),(1940,'wp-content/plugins/woocommerce/templates/auth/form-login.php'),(1941,'wp-content/plugins/woocommerce/templates/auth/header.php'),(1942,'wp-content/plugins/woocommerce/templates/cart/cart-empty.php'),(1943,'wp-content/plugins/woocommerce/templates/cart/cart-item-data.php'),(1944,'wp-content/plugins/woocommerce/templates/cart/cart-shipping.php'),(1945,'wp-content/plugins/woocommerce/templates/cart/cart-totals.php'),(1946,'wp-content/plugins/woocommerce/templates/cart/cart.php'),(1947,'wp-content/plugins/woocommerce/templates/cart/cross-sells.php'),(1948,'wp-content/plugins/woocommerce/templates/cart/mini-cart.php'),(1949,'wp-content/plugins/woocommerce/templates/cart/proceed-to-checkout-button.php'),(1950,'wp-content/plugins/woocommerce/templates/cart/shipping-calculator.php'),(1951,'wp-content/plugins/woocommerce/templates/checkout/cart-errors.php'),(1952,'wp-content/plugins/woocommerce/templates/checkout/form-billing.php'),(1953,'wp-content/plugins/woocommerce/templates/checkout/form-checkout.php'),(1954,'wp-content/plugins/woocommerce/templates/checkout/form-coupon.php'),(1955,'wp-content/plugins/woocommerce/templates/checkout/form-login.php'),(1956,'wp-content/plugins/woocommerce/templates/checkout/form-pay.php'),(1957,'wp-content/plugins/woocommerce/templates/checkout/form-shipping.php'),(1958,'wp-content/plugins/woocommerce/templates/checkout/payment-method.php'),(1959,'wp-content/plugins/woocommerce/templates/checkout/payment.php'),(1960,'wp-content/plugins/woocommerce/templates/checkout/review-order.php'),(1961,'wp-content/plugins/woocommerce/templates/checkout/terms.php'),(1962,'wp-content/plugins/woocommerce/templates/checkout/thankyou.php'),(1963,'wp-content/plugins/woocommerce/templates/content-product.php'),(1964,'wp-content/plugins/woocommerce/templates/content-product_cat.php'),(1965,'wp-content/plugins/woocommerce/templates/content-single-product.php'),(1966,'wp-content/plugins/woocommerce/templates/content-widget-product.php'),(1967,'wp-content/plugins/woocommerce/templates/emails/admin-cancelled-order.php'),(1968,'wp-content/plugins/woocommerce/templates/emails/admin-failed-order.php'),(1969,'wp-content/plugins/woocommerce/templates/emails/admin-new-order.php'),(1970,'wp-content/plugins/woocommerce/templates/emails/customer-completed-order.php'),(1971,'wp-content/plugins/woocommerce/templates/emails/customer-invoice.php'),(1972,'wp-content/plugins/woocommerce/templates/emails/customer-new-account.php'),(1973,'wp-content/plugins/woocommerce/templates/emails/customer-note.php'),(1974,'wp-content/plugins/woocommerce/templates/emails/customer-on-hold-order.php'),(1975,'wp-content/plugins/woocommerce/templates/emails/customer-processing-order.php'),(1976,'wp-content/plugins/woocommerce/templates/emails/customer-refunded-order.php'),(1977,'wp-content/plugins/woocommerce/templates/emails/customer-reset-password.php'),(1978,'wp-content/plugins/woocommerce/templates/emails/email-addresses.php'),(1979,'wp-content/plugins/woocommerce/templates/emails/email-customer-details.php'),(1980,'wp-content/plugins/woocommerce/templates/emails/email-footer.php'),(1981,'wp-content/plugins/woocommerce/templates/emails/email-header.php'),(1982,'wp-content/plugins/woocommerce/templates/emails/email-order-details.php'),(1983,'wp-content/plugins/woocommerce/templates/emails/email-order-items.php'),(1984,'wp-content/plugins/woocommerce/templates/emails/email-styles.php'),(1985,'wp-content/plugins/woocommerce/templates/emails/plain/admin-cancelled-order.php'),(1986,'wp-content/plugins/woocommerce/templates/emails/plain/admin-failed-order.php'),(1987,'wp-content/plugins/woocommerce/templates/emails/plain/admin-new-order.php'),(1988,'wp-content/plugins/woocommerce/templates/emails/plain/customer-completed-order.php'),(1989,'wp-content/plugins/woocommerce/templates/emails/plain/customer-invoice.php'),(1990,'wp-content/plugins/woocommerce/templates/emails/plain/customer-new-account.php'),(1991,'wp-content/plugins/woocommerce/templates/emails/plain/customer-note.php'),(1992,'wp-content/plugins/woocommerce/templates/emails/plain/customer-on-hold-order.php'),(1993,'wp-content/plugins/woocommerce/templates/emails/plain/customer-processing-order.php'),(1994,'wp-content/plugins/woocommerce/templates/emails/plain/customer-refunded-order.php'),(1995,'wp-content/plugins/woocommerce/templates/emails/plain/customer-reset-password.php'),(1996,'wp-content/plugins/woocommerce/templates/emails/plain/email-addresses.php'),(1997,'wp-content/plugins/woocommerce/templates/emails/plain/email-customer-details.php'),(1998,'wp-content/plugins/woocommerce/templates/emails/plain/email-order-details.php'),(1999,'wp-content/plugins/woocommerce/templates/emails/plain/email-order-items.php'),(2000,'wp-content/plugins/woocommerce/templates/global/breadcrumb.php'),(2001,'wp-content/plugins/woocommerce/templates/global/form-login.php'),(2002,'wp-content/plugins/woocommerce/templates/global/quantity-input.php'),(2003,'wp-content/plugins/woocommerce/templates/global/sidebar.php'),(2004,'wp-content/plugins/woocommerce/templates/global/wrapper-end.php'),(2005,'wp-content/plugins/woocommerce/templates/global/wrapper-start.php'),(2006,'wp-content/plugins/woocommerce/templates/loop/add-to-cart.php'),(2007,'wp-content/plugins/woocommerce/templates/loop/loop-end.php'),(2008,'wp-content/plugins/woocommerce/templates/loop/loop-start.php'),(2009,'wp-content/plugins/woocommerce/templates/loop/no-products-found.php'),(2010,'wp-content/plugins/woocommerce/templates/loop/orderby.php'),(2011,'wp-content/plugins/woocommerce/templates/loop/pagination.php'),(2012,'wp-content/plugins/woocommerce/templates/loop/price.php'),(2013,'wp-content/plugins/woocommerce/templates/loop/rating.php'),(2014,'wp-content/plugins/woocommerce/templates/loop/result-count.php'),(2015,'wp-content/plugins/woocommerce/templates/loop/sale-flash.php'),(2016,'wp-content/plugins/woocommerce/templates/myaccount/dashboard.php'),(2017,'wp-content/plugins/woocommerce/templates/myaccount/downloads.php'),(2018,'wp-content/plugins/woocommerce/templates/myaccount/form-add-payment-method.php'),(2019,'wp-content/plugins/woocommerce/templates/myaccount/form-edit-account.php'),(2020,'wp-content/plugins/woocommerce/templates/myaccount/form-edit-address.php'),(2021,'wp-content/plugins/woocommerce/templates/myaccount/form-login.php'),(2022,'wp-content/plugins/woocommerce/templates/myaccount/form-lost-password.php'),(2023,'wp-content/plugins/woocommerce/templates/myaccount/form-reset-password.php'),(2024,'wp-content/plugins/woocommerce/templates/myaccount/lost-password-confirmation.php'),(2025,'wp-content/plugins/woocommerce/templates/myaccount/my-account.php'),(2026,'wp-content/plugins/woocommerce/templates/myaccount/my-address.php'),(2027,'wp-content/plugins/woocommerce/templates/myaccount/my-downloads.php'),(2028,'wp-content/plugins/woocommerce/templates/myaccount/my-orders.php'),(2029,'wp-content/plugins/woocommerce/templates/myaccount/navigation.php'),(2030,'wp-content/plugins/woocommerce/templates/myaccount/orders.php'),(2031,'wp-content/plugins/woocommerce/templates/myaccount/payment-methods.php'),(2032,'wp-content/plugins/woocommerce/templates/myaccount/view-order.php'),(2033,'wp-content/plugins/woocommerce/templates/notices/error.php'),(2034,'wp-content/plugins/woocommerce/templates/notices/notice.php'),(2035,'wp-content/plugins/woocommerce/templates/notices/success.php'),(2036,'wp-content/plugins/woocommerce/templates/order/form-tracking.php'),(2037,'wp-content/plugins/woocommerce/templates/order/order-again.php'),(2038,'wp-content/plugins/woocommerce/templates/order/order-details-customer.php'),(2039,'wp-content/plugins/woocommerce/templates/order/order-details-item.php'),(2040,'wp-content/plugins/woocommerce/templates/order/order-details.php'),(2041,'wp-content/plugins/woocommerce/templates/order/tracking.php'),(2042,'wp-content/plugins/woocommerce/templates/product-searchform.php'),(2043,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/external.php'),(2044,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/grouped.php'),(2045,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/simple.php'),(2046,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variable.php'),(2047,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variation-add-to-cart-button.php'),(2048,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variation.php'),(2049,'wp-content/plugins/woocommerce/templates/single-product/meta.php'),(2050,'wp-content/plugins/woocommerce/templates/single-product/photoswipe.php'),(2051,'wp-content/plugins/woocommerce/templates/single-product/price.php'),(2052,'wp-content/plugins/woocommerce/templates/single-product/product-attributes.php'),(2053,'wp-content/plugins/woocommerce/templates/single-product/product-image.php'),(2054,'wp-content/plugins/woocommerce/templates/single-product/product-thumbnails.php'),(2055,'wp-content/plugins/woocommerce/templates/single-product/rating.php'),(2056,'wp-content/plugins/woocommerce/templates/single-product/related.php'),(2057,'wp-content/plugins/woocommerce/templates/single-product/review-meta.php'),(2058,'wp-content/plugins/woocommerce/templates/single-product/review-rating.php'),(2059,'wp-content/plugins/woocommerce/templates/single-product/review.php'),(2060,'wp-content/plugins/woocommerce/templates/single-product/sale-flash.php'),(2061,'wp-content/plugins/woocommerce/templates/single-product/share.php'),(2062,'wp-content/plugins/woocommerce/templates/single-product/short-description.php'),(2063,'wp-content/plugins/woocommerce/templates/single-product/stock.php'),(2064,'wp-content/plugins/woocommerce/templates/single-product/tabs/additional-information.php'),(2065,'wp-content/plugins/woocommerce/templates/single-product/tabs/description.php'),(2066,'wp-content/plugins/woocommerce/templates/single-product/tabs/tabs.php'),(2067,'wp-content/plugins/woocommerce/templates/single-product/title.php'),(2068,'wp-content/plugins/woocommerce/templates/single-product/up-sells.php'),(2069,'wp-content/plugins/woocommerce/templates/single-product-reviews.php'),(2070,'wp-content/plugins/woocommerce/templates/single-product.php'),(2071,'wp-content/plugins/woocommerce/templates/taxonomy-product_cat.php'),(2072,'wp-content/plugins/woocommerce/templates/taxonomy-product_tag.php'),(2073,'wp-content/plugins/woocommerce/uninstall.php'),(2074,'wp-content/plugins/woocommerce/woocommerce.php'),(2075,'wp-content/plugins/wordfence/css/activity-report-widget.css'),(2076,'wp-content/plugins/wordfence/css/colorbox.css'),(2077,'wp-content/plugins/wordfence/css/diff.css'),(2078,'wp-content/plugins/wordfence/css/dt_table.css'),(2079,'wp-content/plugins/wordfence/css/fullLog.css'),(2080,'wp-content/plugins/wordfence/css/images/ui-bg_flat_0_aaaaaa_40x100.png'),(2081,'wp-content/plugins/wordfence/css/images/ui-bg_flat_100_1997c7_40x100.png'),(2082,'wp-content/plugins/wordfence/css/images/ui-bg_flat_100_222_40x100.png'),(2083,'wp-content/plugins/wordfence/css/images/ui-bg_flat_75_ffffff_40x100.png'),(2084,'wp-content/plugins/wordfence/css/images/ui-bg_glass_95_fef1ec_1x400.png'),(2085,'wp-content/plugins/wordfence/css/images/ui-bg_highlight-soft_75_a5a5a5_1x100.png'),(2086,'wp-content/plugins/wordfence/css/images/ui-icons_222222_256x240.png'),(2087,'wp-content/plugins/wordfence/css/images/ui-icons_cd0a0a_256x240.png'),(2088,'wp-content/plugins/wordfence/css/images/ui-icons_fbe569_256x240.png'),(2089,'wp-content/plugins/wordfence/css/images/ui-icons_fff_256x240.png'),(2090,'wp-content/plugins/wordfence/css/iptraf.css'),(2091,'wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.css'),(2092,'wp-content/plugins/wordfence/css/jquery-ui.min.css'),(2093,'wp-content/plugins/wordfence/css/jquery-ui.structure.min.css'),(2094,'wp-content/plugins/wordfence/css/jquery-ui.theme.min.css'),(2095,'wp-content/plugins/wordfence/css/main.css'),(2096,'wp-content/plugins/wordfence/css/phpinfo.css'),(2097,'wp-content/plugins/wordfence/css/select2.min.css'),(2098,'wp-content/plugins/wordfence/css/wf-adminbar.css'),(2099,'wp-content/plugins/wordfence/css/wf-ionicons.css'),(2100,'wp-content/plugins/wordfence/css/wordfenceBox.css'),(2101,'wp-content/plugins/wordfence/fonts/ionicons.woff'),(2102,'wp-content/plugins/wordfence/images/back_disabled.jpg'),(2103,'wp-content/plugins/wordfence/images/back_enabled.jpg'),(2104,'wp-content/plugins/wordfence/images/button-grad-grey.png'),(2105,'wp-content/plugins/wordfence/images/checkbox.png'),(2106,'wp-content/plugins/wordfence/images/flags/.png'),(2107,'wp-content/plugins/wordfence/images/flags/a1.png'),(2108,'wp-content/plugins/wordfence/images/flags/a2.png'),(2109,'wp-content/plugins/wordfence/images/flags/ad.png'),(2110,'wp-content/plugins/wordfence/images/flags/ae.png'),(2111,'wp-content/plugins/wordfence/images/flags/af.png'),(2112,'wp-content/plugins/wordfence/images/flags/ag.png'),(2113,'wp-content/plugins/wordfence/images/flags/ai.png'),(2114,'wp-content/plugins/wordfence/images/flags/al.png'),(2115,'wp-content/plugins/wordfence/images/flags/am.png'),(2116,'wp-content/plugins/wordfence/images/flags/an.png'),(2117,'wp-content/plugins/wordfence/images/flags/ao.png'),(2118,'wp-content/plugins/wordfence/images/flags/ap.png'),(2119,'wp-content/plugins/wordfence/images/flags/aq.png'),(2120,'wp-content/plugins/wordfence/images/flags/ar.png'),(2121,'wp-content/plugins/wordfence/images/flags/as.png'),(2122,'wp-content/plugins/wordfence/images/flags/at.png'),(2123,'wp-content/plugins/wordfence/images/flags/au.png'),(2124,'wp-content/plugins/wordfence/images/flags/aw.png'),(2125,'wp-content/plugins/wordfence/images/flags/ax.png'),(2126,'wp-content/plugins/wordfence/images/flags/az.png'),(2127,'wp-content/plugins/wordfence/images/flags/ba.png'),(2128,'wp-content/plugins/wordfence/images/flags/bb.png'),(2129,'wp-content/plugins/wordfence/images/flags/bd.png'),(2130,'wp-content/plugins/wordfence/images/flags/be.png'),(2131,'wp-content/plugins/wordfence/images/flags/bf.png'),(2132,'wp-content/plugins/wordfence/images/flags/bg.png'),(2133,'wp-content/plugins/wordfence/images/flags/bh.png'),(2134,'wp-content/plugins/wordfence/images/flags/bi.png'),(2135,'wp-content/plugins/wordfence/images/flags/bj.png'),(2136,'wp-content/plugins/wordfence/images/flags/bm.png'),(2137,'wp-content/plugins/wordfence/images/flags/bn.png'),(2138,'wp-content/plugins/wordfence/images/flags/bo.png'),(2139,'wp-content/plugins/wordfence/images/flags/br.png'),(2140,'wp-content/plugins/wordfence/images/flags/bs.png'),(2141,'wp-content/plugins/wordfence/images/flags/bt.png'),(2142,'wp-content/plugins/wordfence/images/flags/bv.png'),(2143,'wp-content/plugins/wordfence/images/flags/bw.png'),(2144,'wp-content/plugins/wordfence/images/flags/by.png'),(2145,'wp-content/plugins/wordfence/images/flags/bz.png'),(2146,'wp-content/plugins/wordfence/images/flags/ca.png'),(2147,'wp-content/plugins/wordfence/images/flags/cc.png'),(2148,'wp-content/plugins/wordfence/images/flags/cd.png'),(2149,'wp-content/plugins/wordfence/images/flags/cf.png'),(2150,'wp-content/plugins/wordfence/images/flags/cg.png'),(2151,'wp-content/plugins/wordfence/images/flags/ch.png'),(2152,'wp-content/plugins/wordfence/images/flags/ci.png'),(2153,'wp-content/plugins/wordfence/images/flags/ck.png'),(2154,'wp-content/plugins/wordfence/images/flags/cl.png'),(2155,'wp-content/plugins/wordfence/images/flags/cm.png'),(2156,'wp-content/plugins/wordfence/images/flags/cn.png'),(2157,'wp-content/plugins/wordfence/images/flags/co.png'),(2158,'wp-content/plugins/wordfence/images/flags/cr.png'),(2159,'wp-content/plugins/wordfence/images/flags/cs.png'),(2160,'wp-content/plugins/wordfence/images/flags/cu.png'),(2161,'wp-content/plugins/wordfence/images/flags/cv.png'),(2162,'wp-content/plugins/wordfence/images/flags/cw.png'),(2163,'wp-content/plugins/wordfence/images/flags/cx.png'),(2164,'wp-content/plugins/wordfence/images/flags/cy.png'),(2165,'wp-content/plugins/wordfence/images/flags/cz.png'),(2166,'wp-content/plugins/wordfence/images/flags/de.png'),(2167,'wp-content/plugins/wordfence/images/flags/dj.png'),(2168,'wp-content/plugins/wordfence/images/flags/dk.png'),(2169,'wp-content/plugins/wordfence/images/flags/dm.png'),(2170,'wp-content/plugins/wordfence/images/flags/do.png'),(2171,'wp-content/plugins/wordfence/images/flags/dz.png'),(2172,'wp-content/plugins/wordfence/images/flags/ec.png'),(2173,'wp-content/plugins/wordfence/images/flags/ee.png'),(2174,'wp-content/plugins/wordfence/images/flags/eg.png'),(2175,'wp-content/plugins/wordfence/images/flags/eh.png'),(2176,'wp-content/plugins/wordfence/images/flags/england.png'),(2177,'wp-content/plugins/wordfence/images/flags/er.png'),(2178,'wp-content/plugins/wordfence/images/flags/es.png'),(2179,'wp-content/plugins/wordfence/images/flags/et.png'),(2180,'wp-content/plugins/wordfence/images/flags/eu.png'),(2181,'wp-content/plugins/wordfence/images/flags/fam.png'),(2182,'wp-content/plugins/wordfence/images/flags/fi.png'),(2183,'wp-content/plugins/wordfence/images/flags/fj.png'),(2184,'wp-content/plugins/wordfence/images/flags/fk.png'),(2185,'wp-content/plugins/wordfence/images/flags/fm.png'),(2186,'wp-content/plugins/wordfence/images/flags/fo.png'),(2187,'wp-content/plugins/wordfence/images/flags/fr.png'),(2188,'wp-content/plugins/wordfence/images/flags/ga.png'),(2189,'wp-content/plugins/wordfence/images/flags/gb.png'),(2190,'wp-content/plugins/wordfence/images/flags/gd.png'),(2191,'wp-content/plugins/wordfence/images/flags/ge.png'),(2192,'wp-content/plugins/wordfence/images/flags/gf.png'),(2193,'wp-content/plugins/wordfence/images/flags/gg.png'),(2194,'wp-content/plugins/wordfence/images/flags/gh.png'),(2195,'wp-content/plugins/wordfence/images/flags/gi.png'),(2196,'wp-content/plugins/wordfence/images/flags/gl.png'),(2197,'wp-content/plugins/wordfence/images/flags/gm.png'),(2198,'wp-content/plugins/wordfence/images/flags/gn.png'),(2199,'wp-content/plugins/wordfence/images/flags/gp.png'),(2200,'wp-content/plugins/wordfence/images/flags/gq.png'),(2201,'wp-content/plugins/wordfence/images/flags/gr.png'),(2202,'wp-content/plugins/wordfence/images/flags/gs.png'),(2203,'wp-content/plugins/wordfence/images/flags/gt.png'),(2204,'wp-content/plugins/wordfence/images/flags/gu.png'),(2205,'wp-content/plugins/wordfence/images/flags/gw.png'),(2206,'wp-content/plugins/wordfence/images/flags/gy.png'),(2207,'wp-content/plugins/wordfence/images/flags/hk.png'),(2208,'wp-content/plugins/wordfence/images/flags/hn.png'),(2209,'wp-content/plugins/wordfence/images/flags/hr.png'),(2210,'wp-content/plugins/wordfence/images/flags/ht.png'),(2211,'wp-content/plugins/wordfence/images/flags/hu.png'),(2212,'wp-content/plugins/wordfence/images/flags/id.png'),(2213,'wp-content/plugins/wordfence/images/flags/ie.png'),(2214,'wp-content/plugins/wordfence/images/flags/il.png'),(2215,'wp-content/plugins/wordfence/images/flags/im.png'),(2216,'wp-content/plugins/wordfence/images/flags/in.png'),(2217,'wp-content/plugins/wordfence/images/flags/io.png'),(2218,'wp-content/plugins/wordfence/images/flags/iq.png'),(2219,'wp-content/plugins/wordfence/images/flags/ir.png'),(2220,'wp-content/plugins/wordfence/images/flags/is.png'),(2221,'wp-content/plugins/wordfence/images/flags/it.png'),(2222,'wp-content/plugins/wordfence/images/flags/je.png'),(2223,'wp-content/plugins/wordfence/images/flags/jm.png'),(2224,'wp-content/plugins/wordfence/images/flags/jo.png'),(2225,'wp-content/plugins/wordfence/images/flags/jp.png'),(2226,'wp-content/plugins/wordfence/images/flags/ke.png'),(2227,'wp-content/plugins/wordfence/images/flags/kg.png'),(2228,'wp-content/plugins/wordfence/images/flags/kh.png'),(2229,'wp-content/plugins/wordfence/images/flags/ki.png'),(2230,'wp-content/plugins/wordfence/images/flags/km.png'),(2231,'wp-content/plugins/wordfence/images/flags/kn.png'),(2232,'wp-content/plugins/wordfence/images/flags/kp.png'),(2233,'wp-content/plugins/wordfence/images/flags/kr.png'),(2234,'wp-content/plugins/wordfence/images/flags/kw.png'),(2235,'wp-content/plugins/wordfence/images/flags/ky.png'),(2236,'wp-content/plugins/wordfence/images/flags/kz.png'),(2237,'wp-content/plugins/wordfence/images/flags/la.png'),(2238,'wp-content/plugins/wordfence/images/flags/lb.png'),(2239,'wp-content/plugins/wordfence/images/flags/lc.png'),(2240,'wp-content/plugins/wordfence/images/flags/li.png'),(2241,'wp-content/plugins/wordfence/images/flags/lk.png'),(2242,'wp-content/plugins/wordfence/images/flags/lr.png'),(2243,'wp-content/plugins/wordfence/images/flags/ls.png'),(2244,'wp-content/plugins/wordfence/images/flags/lt.png'),(2245,'wp-content/plugins/wordfence/images/flags/lu.png'),(2246,'wp-content/plugins/wordfence/images/flags/lv.png'),(2247,'wp-content/plugins/wordfence/images/flags/ly.png'),(2248,'wp-content/plugins/wordfence/images/flags/ma.png'),(2249,'wp-content/plugins/wordfence/images/flags/mc.png'),(2250,'wp-content/plugins/wordfence/images/flags/md.png'),(2251,'wp-content/plugins/wordfence/images/flags/me.png'),(2252,'wp-content/plugins/wordfence/images/flags/mg.png'),(2253,'wp-content/plugins/wordfence/images/flags/mh.png'),(2254,'wp-content/plugins/wordfence/images/flags/mk.png'),(2255,'wp-content/plugins/wordfence/images/flags/ml.png'),(2256,'wp-content/plugins/wordfence/images/flags/mm.png'),(2257,'wp-content/plugins/wordfence/images/flags/mn.png'),(2258,'wp-content/plugins/wordfence/images/flags/mo.png'),(2259,'wp-content/plugins/wordfence/images/flags/mp.png'),(2260,'wp-content/plugins/wordfence/images/flags/mq.png'),(2261,'wp-content/plugins/wordfence/images/flags/mr.png'),(2262,'wp-content/plugins/wordfence/images/flags/ms.png'),(2263,'wp-content/plugins/wordfence/images/flags/mt.png'),(2264,'wp-content/plugins/wordfence/images/flags/mu.png'),(2265,'wp-content/plugins/wordfence/images/flags/mv.png'),(2266,'wp-content/plugins/wordfence/images/flags/mw.png'),(2267,'wp-content/plugins/wordfence/images/flags/mx.png'),(2268,'wp-content/plugins/wordfence/images/flags/my.png'),(2269,'wp-content/plugins/wordfence/images/flags/mz.png'),(2270,'wp-content/plugins/wordfence/images/flags/na.png'),(2271,'wp-content/plugins/wordfence/images/flags/nc.png'),(2272,'wp-content/plugins/wordfence/images/flags/ne.png'),(2273,'wp-content/plugins/wordfence/images/flags/nf.png'),(2274,'wp-content/plugins/wordfence/images/flags/ng.png'),(2275,'wp-content/plugins/wordfence/images/flags/ni.png'),(2276,'wp-content/plugins/wordfence/images/flags/nl.png'),(2277,'wp-content/plugins/wordfence/images/flags/no.png'),(2278,'wp-content/plugins/wordfence/images/flags/np.png'),(2279,'wp-content/plugins/wordfence/images/flags/nr.png'),(2280,'wp-content/plugins/wordfence/images/flags/nu.png'),(2281,'wp-content/plugins/wordfence/images/flags/nz.png'),(2282,'wp-content/plugins/wordfence/images/flags/om.png'),(2283,'wp-content/plugins/wordfence/images/flags/pa.png'),(2284,'wp-content/plugins/wordfence/images/flags/pe.png'),(2285,'wp-content/plugins/wordfence/images/flags/pf.png'),(2286,'wp-content/plugins/wordfence/images/flags/pg.png'),(2287,'wp-content/plugins/wordfence/images/flags/ph.png'),(2288,'wp-content/plugins/wordfence/images/flags/pk.png'),(2289,'wp-content/plugins/wordfence/images/flags/pl.png'),(2290,'wp-content/plugins/wordfence/images/flags/pm.png'),(2291,'wp-content/plugins/wordfence/images/flags/pn.png'),(2292,'wp-content/plugins/wordfence/images/flags/pr.png'),(2293,'wp-content/plugins/wordfence/images/flags/ps.png'),(2294,'wp-content/plugins/wordfence/images/flags/pt.png'),(2295,'wp-content/plugins/wordfence/images/flags/pw.png'),(2296,'wp-content/plugins/wordfence/images/flags/py.png'),(2297,'wp-content/plugins/wordfence/images/flags/qa.png'),(2298,'wp-content/plugins/wordfence/images/flags/re.png'),(2299,'wp-content/plugins/wordfence/images/flags/ro.png'),(2300,'wp-content/plugins/wordfence/images/flags/rs.png'),(2301,'wp-content/plugins/wordfence/images/flags/ru.png'),(2302,'wp-content/plugins/wordfence/images/flags/rw.png'),(2303,'wp-content/plugins/wordfence/images/flags/sa.png'),(2304,'wp-content/plugins/wordfence/images/flags/sb.png'),(2305,'wp-content/plugins/wordfence/images/flags/sc.png'),(2306,'wp-content/plugins/wordfence/images/flags/scotland.png'),(2307,'wp-content/plugins/wordfence/images/flags/sd.png'),(2308,'wp-content/plugins/wordfence/images/flags/se.png'),(2309,'wp-content/plugins/wordfence/images/flags/sg.png'),(2310,'wp-content/plugins/wordfence/images/flags/sh.png'),(2311,'wp-content/plugins/wordfence/images/flags/si.png'),(2312,'wp-content/plugins/wordfence/images/flags/sk.png'),(2313,'wp-content/plugins/wordfence/images/flags/sl.png'),(2314,'wp-content/plugins/wordfence/images/flags/sm.png'),(2315,'wp-content/plugins/wordfence/images/flags/sn.png'),(2316,'wp-content/plugins/wordfence/images/flags/so.png'),(2317,'wp-content/plugins/wordfence/images/flags/sprite-des-128.png'),(2318,'wp-content/plugins/wordfence/images/flags/sprite-des-16.png'),(2319,'wp-content/plugins/wordfence/images/flags/sprite-des-256.png'),(2320,'wp-content/plugins/wordfence/images/flags/sprite-des-32.png'),(2321,'wp-content/plugins/wordfence/images/flags/sprite-des-64.png'),(2322,'wp-content/plugins/wordfence/images/flags/sprite-des.png'),(2323,'wp-content/plugins/wordfence/images/flags/sprite-des2.png'),(2324,'wp-content/plugins/wordfence/images/flags/sprite2.css'),(2325,'wp-content/plugins/wordfence/images/flags/sprite2.png'),(2326,'wp-content/plugins/wordfence/images/flags/sr.png'),(2327,'wp-content/plugins/wordfence/images/flags/st.png'),(2328,'wp-content/plugins/wordfence/images/flags/sv.png'),(2329,'wp-content/plugins/wordfence/images/flags/sy.png'),(2330,'wp-content/plugins/wordfence/images/flags/sz.png'),(2331,'wp-content/plugins/wordfence/images/flags/tc.png'),(2332,'wp-content/plugins/wordfence/images/flags/td.png'),(2333,'wp-content/plugins/wordfence/images/flags/tf.png'),(2334,'wp-content/plugins/wordfence/images/flags/tg.png'),(2335,'wp-content/plugins/wordfence/images/flags/th.png'),(2336,'wp-content/plugins/wordfence/images/flags/tj.png'),(2337,'wp-content/plugins/wordfence/images/flags/tk.png'),(2338,'wp-content/plugins/wordfence/images/flags/tl.png'),(2339,'wp-content/plugins/wordfence/images/flags/tm.png'),(2340,'wp-content/plugins/wordfence/images/flags/tn.png'),(2341,'wp-content/plugins/wordfence/images/flags/to.png'),(2342,'wp-content/plugins/wordfence/images/flags/tr.png'),(2343,'wp-content/plugins/wordfence/images/flags/tt.png'),(2344,'wp-content/plugins/wordfence/images/flags/tv.png'),(2345,'wp-content/plugins/wordfence/images/flags/tw.png'),(2346,'wp-content/plugins/wordfence/images/flags/tz.png'),(2347,'wp-content/plugins/wordfence/images/flags/ua.png'),(2348,'wp-content/plugins/wordfence/images/flags/ug.png'),(2349,'wp-content/plugins/wordfence/images/flags/uk.png'),(2350,'wp-content/plugins/wordfence/images/flags/um.png'),(2351,'wp-content/plugins/wordfence/images/flags/us.png'),(2352,'wp-content/plugins/wordfence/images/flags/uy.png'),(2353,'wp-content/plugins/wordfence/images/flags/uz.png'),(2354,'wp-content/plugins/wordfence/images/flags/va.png'),(2355,'wp-content/plugins/wordfence/images/flags/vc.png'),(2356,'wp-content/plugins/wordfence/images/flags/ve.png'),(2357,'wp-content/plugins/wordfence/images/flags/vg.png'),(2358,'wp-content/plugins/wordfence/images/flags/vi.png'),(2359,'wp-content/plugins/wordfence/images/flags/vn.png'),(2360,'wp-content/plugins/wordfence/images/flags/vu.png'),(2361,'wp-content/plugins/wordfence/images/flags/wales.png'),(2362,'wp-content/plugins/wordfence/images/flags/wf.png'),(2363,'wp-content/plugins/wordfence/images/flags/ws.png'),(2364,'wp-content/plugins/wordfence/images/flags/xk.png'),(2365,'wp-content/plugins/wordfence/images/flags/ye.png'),(2366,'wp-content/plugins/wordfence/images/flags/yt.png'),(2367,'wp-content/plugins/wordfence/images/flags/za.png'),(2368,'wp-content/plugins/wordfence/images/flags/zm.png'),(2369,'wp-content/plugins/wordfence/images/flags/zw.png'),(2370,'wp-content/plugins/wordfence/images/forward_disabled.jpg'),(2371,'wp-content/plugins/wordfence/images/forward_enabled.jpg'),(2372,'wp-content/plugins/wordfence/images/help.png'),(2373,'wp-content/plugins/wordfence/images/icons/ajax24.gif'),(2374,'wp-content/plugins/wordfence/images/icons/ajax3.gif'),(2375,'wp-content/plugins/wordfence/images/icons/ajaxRed16.gif'),(2376,'wp-content/plugins/wordfence/images/icons/ajaxScan.gif'),(2377,'wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif'),(2378,'wp-content/plugins/wordfence/images/icons/arrow_refresh.png'),(2379,'wp-content/plugins/wordfence/images/icons/bullet_yellow.png'),(2380,'wp-content/plugins/wordfence/images/icons/email_go.png'),(2381,'wp-content/plugins/wordfence/images/icons/error128.png'),(2382,'wp-content/plugins/wordfence/images/icons/magnifier.png'),(2383,'wp-content/plugins/wordfence/images/icons/tick128.png'),(2384,'wp-content/plugins/wordfence/images/icons/warning128.png'),(2385,'wp-content/plugins/wordfence/images/lightbox-controls.png'),(2386,'wp-content/plugins/wordfence/images/loading.gif'),(2387,'wp-content/plugins/wordfence/images/loading_background.png'),(2388,'wp-content/plugins/wordfence/images/loading_large.gif'),(2389,'wp-content/plugins/wordfence/images/logo.png'),(2390,'wp-content/plugins/wordfence/images/rr_premium.png'),(2391,'wp-content/plugins/wordfence/images/rr_sitecleaning.jpg'),(2392,'wp-content/plugins/wordfence/images/sort_asc.gif'),(2393,'wp-content/plugins/wordfence/images/sort_asc.png'),(2394,'wp-content/plugins/wordfence/images/sort_asc_disabled.gif'),(2395,'wp-content/plugins/wordfence/images/sort_asc_disabled.png'),(2396,'wp-content/plugins/wordfence/images/sort_both.gif'),(2397,'wp-content/plugins/wordfence/images/sort_both.png'),(2398,'wp-content/plugins/wordfence/images/sort_desc.gif'),(2399,'wp-content/plugins/wordfence/images/sort_desc.png'),(2400,'wp-content/plugins/wordfence/images/sort_desc_disabled.gif'),(2401,'wp-content/plugins/wordfence/images/sort_desc_disabled.png'),(2402,'wp-content/plugins/wordfence/images/wordfence-logo-16x16.png'),(2403,'wp-content/plugins/wordfence/images/wordfence-logo-32x32.png'),(2404,'wp-content/plugins/wordfence/images/wordfence-logo-64x64.png'),(2405,'wp-content/plugins/wordfence/index.php'),(2406,'wp-content/plugins/wordfence/js/Chart.bundle.min.js'),(2407,'wp-content/plugins/wordfence/js/admin.ajaxWatcher.js'),(2408,'wp-content/plugins/wordfence/js/admin.js'),(2409,'wp-content/plugins/wordfence/js/admin.liveTraffic.js'),(2410,'wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.js'),(2411,'wp-content/plugins/wordfence/js/jquery.colorbox-min.js'),(2412,'wp-content/plugins/wordfence/js/jquery.dataTables.js'),(2413,'wp-content/plugins/wordfence/js/jquery.dataTables.min.js'),(2414,'wp-content/plugins/wordfence/js/jquery.qrcode.min.js'),(2415,'wp-content/plugins/wordfence/js/jquery.tmpl.min.js'),(2416,'wp-content/plugins/wordfence/js/jquery.tools.min.js'),(2417,'wp-content/plugins/wordfence/js/knockout-3.3.0.js'),(2418,'wp-content/plugins/wordfence/js/perf.js'),(2419,'wp-content/plugins/wordfence/js/select2.min.js'),(2420,'wp-content/plugins/wordfence/js/tourTip.js'),(2421,'wp-content/plugins/wordfence/js/wfdashboard.js'),(2422,'wp-content/plugins/wordfence/js/wfdropdown.js'),(2423,'wp-content/plugins/wordfence/js/wfpopover.js'),(2424,'wp-content/plugins/wordfence/lib/.htaccess'),(2425,'wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php'),(2426,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php'),(2427,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php'),(2428,'wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php'),(2429,'wp-content/plugins/wordfence/lib/Diff.php'),(2430,'wp-content/plugins/wordfence/lib/GeoIP.dat'),(2431,'wp-content/plugins/wordfence/lib/GeoIPv6.dat'),(2432,'wp-content/plugins/wordfence/lib/IPTraf.php'),(2433,'wp-content/plugins/wordfence/lib/compat.php'),(2434,'wp-content/plugins/wordfence/lib/conntest.php'),(2435,'wp-content/plugins/wordfence/lib/cronview.php'),(2436,'wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php'),(2437,'wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php'),(2438,'wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php'),(2439,'wp-content/plugins/wordfence/lib/dashboard/widget_countries.php'),(2440,'wp-content/plugins/wordfence/lib/dashboard/widget_ips.php'),(2441,'wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php'),(2442,'wp-content/plugins/wordfence/lib/dashboard/widget_logins.php'),(2443,'wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php'),(2444,'wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php'),(2445,'wp-content/plugins/wordfence/lib/dashboard/widget_tdf.php'),(2446,'wp-content/plugins/wordfence/lib/dashboard.php'),(2447,'wp-content/plugins/wordfence/lib/dbview.php'),(2448,'wp-content/plugins/wordfence/lib/diffResult.php'),(2449,'wp-content/plugins/wordfence/lib/email_genericAlert.php'),(2450,'wp-content/plugins/wordfence/lib/email_newIssues.php'),(2451,'wp-content/plugins/wordfence/lib/email_passwdChanged.php'),(2452,'wp-content/plugins/wordfence/lib/email_pleaseChangePasswd.php'),(2453,'wp-content/plugins/wordfence/lib/email_unlockRequest.php'),(2454,'wp-content/plugins/wordfence/lib/live_activity.php'),(2455,'wp-content/plugins/wordfence/lib/menu_activity.php'),(2456,'wp-content/plugins/wordfence/lib/menu_blocking.php'),(2457,'wp-content/plugins/wordfence/lib/menu_blocking_advancedBlocking.php'),(2458,'wp-content/plugins/wordfence/lib/menu_blocking_blockedIPs.php'),(2459,'wp-content/plugins/wordfence/lib/menu_blocking_countryBlocking.php'),(2460,'wp-content/plugins/wordfence/lib/menu_dashboard.php'),(2461,'wp-content/plugins/wordfence/lib/menu_firewall.php'),(2462,'wp-content/plugins/wordfence/lib/menu_firewall_bruteForce.php'),(2463,'wp-content/plugins/wordfence/lib/menu_firewall_rateLimiting.php'),(2464,'wp-content/plugins/wordfence/lib/menu_firewall_waf.php'),(2465,'wp-content/plugins/wordfence/lib/menu_options.php'),(2466,'wp-content/plugins/wordfence/lib/menu_scan.php'),(2467,'wp-content/plugins/wordfence/lib/menu_scan_options.php'),(2468,'wp-content/plugins/wordfence/lib/menu_scan_scan.php'),(2469,'wp-content/plugins/wordfence/lib/menu_scan_schedule.php'),(2470,'wp-content/plugins/wordfence/lib/menu_tools.php'),(2471,'wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php'),(2472,'wp-content/plugins/wordfence/lib/menu_tools_passwd.php'),(2473,'wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php'),(2474,'wp-content/plugins/wordfence/lib/menu_tools_whois.php'),(2475,'wp-content/plugins/wordfence/lib/pageTitle.php'),(2476,'wp-content/plugins/wordfence/lib/schedWeekEntry.php'),(2477,'wp-content/plugins/wordfence/lib/sysinfo.php'),(2478,'wp-content/plugins/wordfence/lib/unknownFiles.php'),(2479,'wp-content/plugins/wordfence/lib/viewFullActivityLog.php'),(2480,'wp-content/plugins/wordfence/lib/wf503.php'),(2481,'wp-content/plugins/wordfence/lib/wfAPI.php'),(2482,'wp-content/plugins/wordfence/lib/wfAction.php'),(2483,'wp-content/plugins/wordfence/lib/wfActivityReport.php'),(2484,'wp-content/plugins/wordfence/lib/wfArray.php'),(2485,'wp-content/plugins/wordfence/lib/wfBrowscap.php'),(2486,'wp-content/plugins/wordfence/lib/wfBrowscapCache.php'),(2487,'wp-content/plugins/wordfence/lib/wfBulkCountries.php'),(2488,'wp-content/plugins/wordfence/lib/wfCache.php'),(2489,'wp-content/plugins/wordfence/lib/wfConfig.php'),(2490,'wp-content/plugins/wordfence/lib/wfCountryMap.php'),(2491,'wp-content/plugins/wordfence/lib/wfCrawl.php'),(2492,'wp-content/plugins/wordfence/lib/wfCrypt.php'),(2493,'wp-content/plugins/wordfence/lib/wfDB.php'),(2494,'wp-content/plugins/wordfence/lib/wfDashboard.php'),(2495,'wp-content/plugins/wordfence/lib/wfDiagnostic.php'),(2496,'wp-content/plugins/wordfence/lib/wfDict.php'),(2497,'wp-content/plugins/wordfence/lib/wfDirectoryIterator.php'),(2498,'wp-content/plugins/wordfence/lib/wfGeoIP.php'),(2499,'wp-content/plugins/wordfence/lib/wfHelperBin.php'),(2500,'wp-content/plugins/wordfence/lib/wfHelperString.php'),(2501,'wp-content/plugins/wordfence/lib/wfIPWhitelist.php'),(2502,'wp-content/plugins/wordfence/lib/wfIssues.php'),(2503,'wp-content/plugins/wordfence/lib/wfLockedOut.php'),(2504,'wp-content/plugins/wordfence/lib/wfLog.php'),(2505,'wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php'),(2506,'wp-content/plugins/wordfence/lib/wfNotification.php'),(2507,'wp-content/plugins/wordfence/lib/wfRESTAPI.php'),(2508,'wp-content/plugins/wordfence/lib/wfRate.php'),(2509,'wp-content/plugins/wordfence/lib/wfScan.php'),(2510,'wp-content/plugins/wordfence/lib/wfScanEngine.php'),(2511,'wp-content/plugins/wordfence/lib/wfSchema.php'),(2512,'wp-content/plugins/wordfence/lib/wfStyle.php'),(2513,'wp-content/plugins/wordfence/lib/wfUnlockMsg.php'),(2514,'wp-content/plugins/wordfence/lib/wfUpdateCheck.php'),(2515,'wp-content/plugins/wordfence/lib/wfUtils.php'),(2516,'wp-content/plugins/wordfence/lib/wfView.php'),(2517,'wp-content/plugins/wordfence/lib/wfViewResult.php'),(2518,'wp-content/plugins/wordfence/lib/wordfenceClass.php'),(2519,'wp-content/plugins/wordfence/lib/wordfenceConstants.php'),(2520,'wp-content/plugins/wordfence/lib/wordfenceHash.php'),(2521,'wp-content/plugins/wordfence/lib/wordfenceScanner.php'),(2522,'wp-content/plugins/wordfence/lib/wordfenceURLHoover.php'),(2523,'wp-content/plugins/wordfence/readme.txt'),(2524,'wp-content/plugins/wordfence/tmp/.htaccess'),(2525,'wp-content/plugins/wordfence/vendor/autoload.php'),(2526,'wp-content/plugins/wordfence/vendor/composer/ClassLoader.php'),(2527,'wp-content/plugins/wordfence/vendor/composer/LICENSE'),(2528,'wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php'),(2529,'wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php'),(2530,'wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php'),(2531,'wp-content/plugins/wordfence/vendor/composer/autoload_real.php'),(2532,'wp-content/plugins/wordfence/vendor/composer/installed.json'),(2533,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/bootstrap-sample.php'),(2534,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem'),(2535,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key'),(2536,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php'),(2537,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php'),(2538,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php'),(2539,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php'),(2540,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php'),(2541,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php'),(2542,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php'),(2543,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php'),(2544,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php'),(2545,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php'),(2546,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php'),(2547,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php'),(2548,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php'),(2549,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php'),(2550,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key'),(2551,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php'),(2552,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php'),(2553,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php'),(2554,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php'),(2555,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php'),(2556,'wp-content/plugins/wordfence/views/marketing/rightrail.php'),(2557,'wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php'),(2558,'wp-content/plugins/wordfence/views/reports/activity-report-email.php'),(2559,'wp-content/plugins/wordfence/views/reports/activity-report.php'),(2560,'wp-content/plugins/wordfence/views/waf/debug.php'),(2561,'wp-content/plugins/wordfence/waf/bootstrap.php'),(2562,'wp-content/plugins/wordfence/waf/wfWAFGeoIP.php'),(2563,'wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php'),(2564,'wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php'),(2565,'wp-content/plugins/wordfence/wordfence.php'),(2566,'wp-content/plugins/wordpress-importer/index.php'),(2567,'wp-content/plugins/wordpress-importer/languages/index.php'),(2568,'wp-content/plugins/wordpress-importer/languages/wordpress-importer.pot'),(2569,'wp-content/plugins/wordpress-importer/parsers.php'),(2570,'wp-content/plugins/wordpress-importer/readme.txt'),(2571,'wp-content/plugins/wordpress-importer/wordpress-importer.php'),(2572,'wp-content/themes/index.php'),(2573,'wp-content/themes/salient/404.php'),(2574,'wp-content/themes/salient/comments.php'),(2575,'wp-content/themes/salient/css/colors.php'),(2576,'wp-content/themes/salient/css/custom.php'),(2577,'wp-content/themes/salient/css/fonts.php'),(2578,'wp-content/themes/salient/footer.php'),(2579,'wp-content/themes/salient/functions.php'),(2580,'wp-content/themes/salient/header.php'),(2581,'wp-content/themes/salient/includes/custom-widgets/recent-posts-extra-widget.php'),(2582,'wp-content/themes/salient/includes/custom-widgets/recent-projects-widget.php'),(2583,'wp-content/themes/salient/includes/header-search.php'),(2584,'wp-content/themes/salient/includes/portfolio-functions/video.php'),(2585,'wp-content/themes/salient/includes/post-templates/entry-aside.php'),(2586,'wp-content/themes/salient/includes/post-templates/entry-audio.php'),(2587,'wp-content/themes/salient/includes/post-templates/entry-gallery.php'),(2588,'wp-content/themes/salient/includes/post-templates/entry-image.php'),(2589,'wp-content/themes/salient/includes/post-templates/entry-link.php'),(2590,'wp-content/themes/salient/includes/post-templates/entry-quote.php'),(2591,'wp-content/themes/salient/includes/post-templates/entry-status.php'),(2592,'wp-content/themes/salient/includes/post-templates/entry-video.php'),(2593,'wp-content/themes/salient/includes/post-templates/entry.php'),(2594,'wp-content/themes/salient/includes/post-templates-pre-3-6/entry-audio.php'),(2595,'wp-content/themes/salient/includes/post-templates-pre-3-6/entry-gallery.php'),(2596,'wp-content/themes/salient/includes/post-templates-pre-3-6/entry-link.php'),(2597,'wp-content/themes/salient/includes/post-templates-pre-3-6/entry-quote.php'),(2598,'wp-content/themes/salient/includes/post-templates-pre-3-6/entry-video.php'),(2599,'wp-content/themes/salient/includes/post-templates-pre-3-6/entry.php'),(2600,'wp-content/themes/salient/index.php'),(2601,'wp-content/themes/salient/js/ajaxify.js'),(2602,'wp-content/themes/salient/js/caroufredsel.min.js'),(2603,'wp-content/themes/salient/js/flexslider.min.js'),(2604,'wp-content/themes/salient/js/flickity.min.js'),(2605,'wp-content/themes/salient/js/imagesLoaded.min.js'),(2606,'wp-content/themes/salient/js/infinitescroll.js'),(2607,'wp-content/themes/salient/js/init.js'),(2608,'wp-content/themes/salient/js/isotope.min.js'),(2609,'wp-content/themes/salient/js/jquery.fullPage.min.js'),(2610,'wp-content/themes/salient/js/jquery.iosslider.min.js'),(2611,'wp-content/themes/salient/js/jquery.twentytwenty.js'),(2612,'wp-content/themes/salient/js/magnific.js'),(2613,'wp-content/themes/salient/js/map.js'),(2614,'wp-content/themes/salient/js/mediaelement-and-player.min.js'),(2615,'wp-content/themes/salient/js/midnight.js'),(2616,'wp-content/themes/salient/js/modernizr.js'),(2617,'wp-content/themes/salient/js/nectar-particles.js'),(2618,'wp-content/themes/salient/js/nectar-slider.js'),(2619,'wp-content/themes/salient/js/nicescroll.js'),(2620,'wp-content/themes/salient/js/orbit.js'),(2621,'wp-content/themes/salient/js/owl.carousel.min.js'),(2622,'wp-content/themes/salient/js/parallax.js'),(2623,'wp-content/themes/salient/js/prettyPhoto.js'),(2624,'wp-content/themes/salient/js/respond.js'),(2625,'wp-content/themes/salient/js/select2.min.js'),(2626,'wp-content/themes/salient/js/sticky.js'),(2627,'wp-content/themes/salient/js/superfish.js'),(2628,'wp-content/themes/salient/js/touchswipe.min.js'),(2629,'wp-content/themes/salient/js/tweenmax.min.js'),(2630,'wp-content/themes/salient/js/vivus.min.js'),(2631,'wp-content/themes/salient/nectar/assets/functions/ajax-search/wp-search-suggest.php'),(2632,'wp-content/themes/salient/nectar/assets/functions/ajax-search/wpss-search-suggest.js'),(2633,'wp-content/themes/salient/nectar/assets/functions/multi-post-thumbnails/js/multi-post-thumbnails-admin.js'),(2634,'wp-content/themes/salient/nectar/assets/functions/multi-post-thumbnails/multi-post-thumbnails.php'),(2635,'wp-content/themes/salient/nectar/assets/functions/wp-menu-custom-items/menu-item-custom-fields.php'),(2636,'wp-content/themes/salient/nectar/assets/functions/wp-menu-custom-items/walker-nav-menu-edit.php'),(2637,'wp-content/themes/salient/nectar/assets/js/nectar-meta.js'),(2638,'wp-content/themes/salient/nectar/assets/js/nectar-reorder.js'),(2639,'wp-content/themes/salient/nectar/love/nectar-love.php'),(2640,'wp-content/themes/salient/nectar/meta/category-meta.php'),(2641,'wp-content/themes/salient/nectar/meta/home-slider-meta.php'),(2642,'wp-content/themes/salient/nectar/meta/meta-config.php'),(2643,'wp-content/themes/salient/nectar/meta/nectar-slider-meta.php'),(2644,'wp-content/themes/salient/nectar/meta/page-meta.php'),(2645,'wp-content/themes/salient/nectar/meta/portfolio-meta.php'),(2646,'wp-content/themes/salient/nectar/meta/post-meta.php'),(2647,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar-addons-no-lean.php'),(2648,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar-addons.php'),(2649,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/bar.php'),(2650,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/carousel.php'),(2651,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/client.php'),(2652,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/clients.php'),(2653,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/divider.php'),(2654,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/fancy-title.php'),(2655,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/fancy-ul.php'),(2656,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/fancy_box.php'),(2657,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/flip-box.php'),(2658,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/full_width_section.php'),(2659,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/gradient-text.php'),(2660,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/heading.php'),(2661,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/image_with_animation.php'),(2662,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/milestone.php'),(2663,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/morphing_outline.php'),(2664,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_blog.php'),(2665,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_btn.php'),(2666,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_cascading_images.php'),(2667,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_cta.php'),(2668,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_food_menu_item.php'),(2669,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_gmap.php'),(2670,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_horizontal_list_item.php'),(2671,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_hotspot.php'),(2672,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_icon.php'),(2673,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_icon_list.php'),(2674,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_icon_list_item.php'),(2675,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_image_comparison.php'),(2676,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_image_with_hotspots.php'),(2677,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_portfolio.php'),(2678,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_slider.php'),(2679,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_video_lightbox.php'),(2680,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/nectar_woo_products.php'),(2681,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/page_link.php'),(2682,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/page_submenu.php'),(2683,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/pricing_column.php'),(2684,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/pricing_table.php'),(2685,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/recent_posts.php'),(2686,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/recent_projects.php'),(2687,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/social_buttons.php'),(2688,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/split_line_heading.php'),(2689,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/tab.php'),(2690,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/tabbed_section.php'),(2691,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/team_member.php'),(2692,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/testimonial.php'),(2693,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/testimonial_slider.php'),(2694,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/text-with-icon.php'),(2695,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/toggle.php'),(2696,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/toggles.php'),(2697,'wp-content/themes/salient/nectar/nectar-vc-addons/nectar_maps/vc_column_inner.php'),(2698,'wp-content/themes/salient/nectar/nectar-vc-addons/salient-studio-templates.php'),(2699,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/carousel.php'),(2700,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/client.php'),(2701,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/clients.php'),(2702,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/fancy_box.php'),(2703,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/full_width_section.php'),(2704,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/item.php'),(2705,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/morphing_outline.php'),(2706,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_animated_title.php'),(2707,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_btn.php'),(2708,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_cascading_images.php'),(2709,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_cta.php'),(2710,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_flip_box.php'),(2711,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_food_menu_item.php'),(2712,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_gmap.php'),(2713,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_gradient_text.php'),(2714,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_horizontal_list_item.php'),(2715,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_hotspot.php'),(2716,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_icon.php'),(2717,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_icon_list.php'),(2718,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_icon_list_item.php'),(2719,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_image_comparison.php'),(2720,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_image_with_hotspots.php'),(2721,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_video_lightbox.php'),(2722,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/nectar_woo_products.php'),(2723,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/page_link.php'),(2724,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/page_submenu.php'),(2725,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/pricing_column.php'),(2726,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/pricing_table.php'),(2727,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/split_line_heading.php'),(2728,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/tab.php'),(2729,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/tabbed_section.php'),(2730,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/testimonial.php'),(2731,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/testimonial_slider.php'),(2732,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/toggle.php'),(2733,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/toggles.php'),(2734,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_column.php'),(2735,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_column_inner.php'),(2736,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_column_text.php'),(2737,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_gallery.php'),(2738,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_pie.php'),(2739,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_row.php'),(2740,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_row_inner.php'),(2741,'wp-content/themes/salient/nectar/nectar-vc-addons/vc_templates/vc_widget_sidebar.php'),(2742,'wp-content/themes/salient/nectar/options/fields/button_set/field_button_set.js'),(2743,'wp-content/themes/salient/nectar/options/fields/button_set/field_button_set.php'),(2744,'wp-content/themes/salient/nectar/options/fields/cats_multi_select/field_cats_multi_select.php'),(2745,'wp-content/themes/salient/nectar/options/fields/checkbox/field_checkbox.php'),(2746,'wp-content/themes/salient/nectar/options/fields/checkbox_hide_all/field_checkbox_hide_all.js'),(2747,'wp-content/themes/salient/nectar/options/fields/checkbox_hide_all/field_checkbox_hide_all.php'),(2748,'wp-content/themes/salient/nectar/options/fields/checkbox_hide_below/field_checkbox_hide_below.js'),(2749,'wp-content/themes/salient/nectar/options/fields/checkbox_hide_below/field_checkbox_hide_below.php'),(2750,'wp-content/themes/salient/nectar/options/fields/color/field_color.js'),(2751,'wp-content/themes/salient/nectar/options/fields/color/field_color.php'),(2752,'wp-content/themes/salient/nectar/options/fields/color/field_color_farb.js'),(2753,'wp-content/themes/salient/nectar/options/fields/color_gradient/field_color_gradient.php'),(2754,'wp-content/themes/salient/nectar/options/fields/slider/field_slider.js'),(2755,'wp-content/themes/salient/nectar/options/fields/slider/field_slider.min.js'),(2756,'wp-content/themes/salient/nectar/options/fields/slider/field_slider.php'),(2757,'wp-content/themes/salient/nectar/options/fields/slider/vendor/nouislider/redux.jquery.nouislider.js'),(2758,'wp-content/themes/salient/nectar/options/fields/slider/vendor/nouislider/redux.jquery.nouislider.min.js'),(2759,'wp-content/themes/salient/nectar/options/fields/upload/field_upload.js'),(2760,'wp-content/themes/salient/nectar/options/fields/upload/field_upload.php'),(2761,'wp-content/themes/salient/nectar/options/fields/upload/field_upload_3_4.js'),(2762,'wp-content/themes/salient/nectar/options/fields/upload/gallery.js'),(2763,'wp-content/themes/salient/nectar/options/js/fonts.js'),(2764,'wp-content/themes/salient/nectar/options/js/options.js'),(2765,'wp-content/themes/salient/nectar/redux-framework/Gruntfile.js'),(2766,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/media/media.js'),(2767,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/media/media.min.js'),(2768,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/redux.js'),(2769,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/redux.min.js'),(2770,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/cookie.js'),(2771,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/jquery.alphanum.js'),(2772,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/jquery.serializeForm.js'),(2773,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/jquery.typewatch.js'),(2774,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/jsonview.js'),(2775,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/jsonview.min.js'),(2776,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/lte-ie7.js'),(2777,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/qtip/jquery.qtip.js'),(2778,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/qtip/jquery.qtip.min.js'),(2779,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/redux.select2.sortable.js'),(2780,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/redux.select2.sortable.min.js'),(2781,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/spectrum/redux-spectrum.js'),(2782,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor/spectrum/redux-spectrum.min.js'),(2783,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/assets/js/vendor.min.js'),(2784,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/core/dashboard.php'),(2785,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/core/enqueue.php'),(2786,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/core/newsflash.php'),(2787,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/core/panel.php'),(2788,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/core/required.php'),(2789,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/framework.php'),(2790,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/browser.php'),(2791,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.p.php'),(2792,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.redux_admin_notices.php'),(2793,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.redux_api.php'),(2794,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.redux_cdn.php'),(2795,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.redux_filesystem.php'),(2796,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.redux_functions.php'),(2797,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.redux_helpers.php'),(2798,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/class.redux_instances.php'),(2799,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/extension_customizer.js'),(2800,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/extension_customizer.min.js'),(2801,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/extension_customizer.php'),(2802,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/inc/customizer_control.php'),(2803,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/inc/customizer_devs.php'),(2804,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/inc/customizer_fields.php'),(2805,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/inc/customizer_panel.php'),(2806,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/customizer/inc/customizer_section.php'),(2807,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/import_export/extension_import_export.php'),(2808,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/import_export/import_export/field_import_export.js'),(2809,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/import_export/import_export/field_import_export.min.js'),(2810,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/import_export/import_export/field_import_export.php'),(2811,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/options_object/extension_options_object.php'),(2812,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/options_object/options_object/field_options_object.js'),(2813,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/options_object/options_object/field_options_object.min.js'),(2814,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/extensions/options_object/options_object/field_options_object.php'),(2815,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/ace_editor/field_ace_editor.js'),(2816,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/ace_editor/field_ace_editor.min.js'),(2817,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/ace_editor/field_ace_editor.php'),(2818,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/add_remove/field_add_remove.js'),(2819,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/add_remove/field_add_remove.php'),(2820,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/background/field_background.js'),(2821,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/background/field_background.min.js'),(2822,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/background/field_background.php'),(2823,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/border/field_border.js'),(2824,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/border/field_border.min.js'),(2825,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/border/field_border.php'),(2826,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/button_set/field_button_set.js'),(2827,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/button_set/field_button_set.min.js'),(2828,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/button_set/field_button_set.php'),(2829,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/checkbox/field_checkbox.js'),(2830,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/checkbox/field_checkbox.min.js'),(2831,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/checkbox/field_checkbox.php'),(2832,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color/field_color.js'),(2833,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color/field_color.min.js'),(2834,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color/field_color.php'),(2835,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color_gradient/field_color_gradient.js'),(2836,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color_gradient/field_color_gradient.min.js'),(2837,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color_gradient/field_color_gradient.php'),(2838,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color_rgba/field_color_rgba.js'),(2839,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color_rgba/field_color_rgba.min.js'),(2840,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/color_rgba/field_color_rgba.php'),(2841,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/date/field_date.js'),(2842,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/date/field_date.min.js'),(2843,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/date/field_date.php'),(2844,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/dimensions/field_dimensions.js'),(2845,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/dimensions/field_dimensions.min.js'),(2846,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/dimensions/field_dimensions.php'),(2847,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/divide/field_divide.php'),(2848,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/editor/field_editor.js'),(2849,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/editor/field_editor.min.js'),(2850,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/editor/field_editor.php'),(2851,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/editor/field_editor_c.php'),(2852,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/gallery/field_gallery.js'),(2853,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/gallery/field_gallery.min.js'),(2854,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/gallery/field_gallery.php'),(2855,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/image_select/field_image_select.js'),(2856,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/image_select/field_image_select.min.js'),(2857,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/image_select/field_image_select.php'),(2858,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/info/field_info.php'),(2859,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/link_color/field_link_color.js'),(2860,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/link_color/field_link_color.min.js'),(2861,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/link_color/field_link_color.php'),(2862,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/media/field_media.php'),(2863,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/multi_text/field_multi_text.js'),(2864,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/multi_text/field_multi_text.min.js'),(2865,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/multi_text/field_multi_text.php'),(2866,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/palette/field_palette.js'),(2867,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/palette/field_palette.min.js'),(2868,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/palette/field_palette.php'),(2869,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/password/field_password.php'),(2870,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/radio/field_radio.php'),(2871,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/raw/field_raw.php'),(2872,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/raw/parsedown.php'),(2873,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/section/field_section.php'),(2874,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/select/elusive-icons.php'),(2875,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/select/field_select.js'),(2876,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/select/field_select.min.js'),(2877,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/select/field_select.php'),(2878,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/select_image/field_select_image.js'),(2879,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/select_image/field_select_image.min.js'),(2880,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/select_image/field_select_image.php'),(2881,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slider/field_slider.js'),(2882,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slider/field_slider.min.js'),(2883,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slider/field_slider.php'),(2884,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slider/vendor/nouislider/redux.jquery.nouislider.js'),(2885,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slider/vendor/nouislider/redux.jquery.nouislider.min.js'),(2886,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slides/field_slides.js'),(2887,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slides/field_slides.min.js'),(2888,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/slides/field_slides.php'),(2889,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/sortable/field_sortable.js'),(2890,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/sortable/field_sortable.min.js'),(2891,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/sortable/field_sortable.php'),(2892,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/sorter/field_sorter.js'),(2893,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/sorter/field_sorter.min.js'),(2894,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/sorter/field_sorter.php'),(2895,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/spacing/field_spacing.js'),(2896,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/spacing/field_spacing.min.js'),(2897,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/spacing/field_spacing.php'),(2898,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/spinner/field_spinner.js'),(2899,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/spinner/field_spinner.min.js'),(2900,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/spinner/field_spinner.php'),(2901,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/spinner/vendor/spinner_custom.js'),(2902,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/switch/field_switch.js'),(2903,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/switch/field_switch.min.js'),(2904,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/switch/field_switch.php'),(2905,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/text/field_text.php'),(2906,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/textarea/field_textarea.php'),(2907,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/typography/field_typography.js'),(2908,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/typography/field_typography.min.js'),(2909,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/typography/field_typography.php'),(2910,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/typography/googlefonts.php'),(2911,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/upload/field_upload.js'),(2912,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/upload/field_upload.php'),(2913,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/upload/field_upload_3_4.js'),(2914,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/fields/upload/gallery.js'),(2915,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/lib.redux_instances.php'),(2916,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/themecheck/checks/embedded.php'),(2917,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/themecheck/checks/full_package.php'),(2918,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/themecheck/checks/index.php'),(2919,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/themecheck/class.redux_themecheck.php'),(2920,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/themecheck/index.php'),(2921,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/themecheck/js/admin.js'),(2922,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/themecheck/lang/index.php'),(2923,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/tracking.php'),(2924,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/color/validation_color.php'),(2925,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/color_rgba/validation_color_rgba.php'),(2926,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/colorrgba/validation_colorrgba.php'),(2927,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/comma_numeric/validation_comma_numeric.php'),(2928,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/css/validation_css.php'),(2929,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/date/validation_date.php'),(2930,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/email/validation_email.php'),(2931,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/email_not_empty/validation_email_not_empty.php'),(2932,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/html/validation_html.php'),(2933,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/html_custom/validation_html_custom.php'),(2934,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/js/validation_js.php'),(2935,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/no_html/validation_no_html.php'),(2936,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/no_special_chars/validation_no_special_chars.php'),(2937,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/not_empty/validation_not_empty.php'),(2938,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/numeric/validation_numeric.php'),(2939,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/numeric_not_empty/validation_numeric_not_empty.php'),(2940,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/preg_replace/validation_preg_replace.php'),(2941,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/str_replace/validation_str_replace.php'),(2942,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/unique_slug/validation_unique_slug.php'),(2943,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/validation/url/validation_url.php'),(2944,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/js/jquery.easing.min.js'),(2945,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/js/redux-welcome-admin.js'),(2946,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/views/about.php'),(2947,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/views/changelog.php'),(2948,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/views/credits.php'),(2949,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/views/extensions.php'),(2950,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/views/status_report.php'),(2951,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/views/support.php'),(2952,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/inc/welcome/welcome.php'),(2953,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/templates/panel/container.tpl.php'),(2954,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/templates/panel/content.tpl.php'),(2955,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/templates/panel/footer.tpl.php'),(2956,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/templates/panel/header.tpl.php'),(2957,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/templates/panel/header_stickybar.tpl.php'),(2958,'wp-content/themes/salient/nectar/redux-framework/ReduxCore/templates/panel/menu_container.tpl.php'),(2959,'wp-content/themes/salient/nectar/redux-framework/class.redux-plugin.php'),(2960,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/class.vendor-url.php'),(2961,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/extension_vendor_support.php'),(2962,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/ace.js'),(2963,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/ext-emmet.js'),(2964,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/ext-searchbox.js'),(2965,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-css.js'),(2966,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-html.js'),(2967,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-javascript.js'),(2968,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-json.js'),(2969,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-less.js'),(2970,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-markdown.js'),(2971,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-mysql.js'),(2972,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-php.js'),(2973,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-plain_text.js'),(2974,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-sass.js'),(2975,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-scss.js'),(2976,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-text.js'),(2977,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/mode-xml.js'),(2978,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/css.js'),(2979,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/html.js'),(2980,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/javascript.js'),(2981,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/json.js'),(2982,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/less.js'),(2983,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/markdown.js'),(2984,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/mysql.js'),(2985,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/php.js'),(2986,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/plain_text.js'),(2987,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/sass.js'),(2988,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/scss.js'),(2989,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/text.js'),(2990,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/snippets/xml.js'),(2991,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/theme-chrome.js'),(2992,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/theme-monokai.js'),(2993,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/worker-css.js'),(2994,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/worker-javascript.js'),(2995,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/worker-json.js'),(2996,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/ace_editor/worker-php.js'),(2997,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2.js'),(2998,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2.min.js'),(2999,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ar.js'),(3000,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_az.js'),(3001,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_bg.js'),(3002,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ca.js'),(3003,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_cs.js'),(3004,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_da.js'),(3005,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_de.js'),(3006,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_el.js'),(3007,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_es.js'),(3008,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_et.js'),(3009,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_eu.js'),(3010,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_fa.js'),(3011,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_fi.js'),(3012,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_fr.js'),(3013,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_gl.js'),(3014,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_he.js'),(3015,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_hr.js'),(3016,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_hu.js'),(3017,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_id.js'),(3018,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_is.js'),(3019,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_it.js'),(3020,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ja.js'),(3021,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ka.js'),(3022,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ko.js'),(3023,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_lt.js'),(3024,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_lv.js'),(3025,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_mk.js'),(3026,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ms.js'),(3027,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_nb.js'),(3028,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_nl.js'),(3029,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_pl.js'),(3030,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_pt-BR.js'),(3031,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_pt-PT.js'),(3032,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ro.js'),(3033,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_rs.js'),(3034,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ru.js'),(3035,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_sk.js'),(3036,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_sv.js'),(3037,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_th.js'),(3038,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_tr.js'),(3039,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_ug-CN.js'),(3040,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_uk.js'),(3041,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_vi.js'),(3042,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_zh-CN.js'),(3043,'wp-content/themes/salient/nectar/redux-framework/extensions/vendor_support/vendor/select2/select2_locale_zh-TW.js'),(3044,'wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/demo-data/index.php'),(3045,'wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/extension_wbc_importer.php'),(3046,'wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/inc/importer/index.php'),(3047,'wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/inc/importer/parsers.php'),(3048,'wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/inc/importer/radium-importer.php'),(3049,'wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/inc/importer/wordpress-importer.php'),(3050,'wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/inc/index.php'),(3051,'wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/inc/init-installer.php'),(3052,'wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/index.php'),(3053,'wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/wbc_importer/field_wbc_importer.js'),(3054,'wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/wbc_importer/field_wbc_importer.min.js'),(3055,'wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/wbc_importer/field_wbc_importer.php'),(3056,'wp-content/themes/salient/nectar/redux-framework/extensions/wbc_importer/wbc_importer/index.php'),(3057,'wp-content/themes/salient/nectar/redux-framework/index.php'),(3058,'wp-content/themes/salient/nectar/redux-framework/options-config.php'),(3059,'wp-content/themes/salient/nectar/redux-framework/redux-framework.php'),(3060,'wp-content/themes/salient/nectar/redux-framework/uninstall.php'),(3061,'wp-content/themes/salient/nectar/tgm-plugin-activation/class-tgm-plugin-activation.php'),(3062,'wp-content/themes/salient/nectar/tgm-plugin-activation/required_plugins.php'),(3063,'wp-content/themes/salient/nectar/tinymce/nectar-shortcode-generator.js'),(3064,'wp-content/themes/salient/nectar/tinymce/shortcode-processing.php'),(3065,'wp-content/themes/salient/nectar/tinymce/shortcode_generator/js/chosen/chosen.jquery.min.js'),(3066,'wp-content/themes/salient/nectar/tinymce/shortcode_generator/js/magnific-popup.js'),(3067,'wp-content/themes/salient/nectar/tinymce/shortcode_generator/js/popup.js'),(3068,'wp-content/themes/salient/nectar/tinymce/shortcode_generator/js/simple_slider/simple-slider.min.js'),(3069,'wp-content/themes/salient/nectar/tinymce/shortcode_generator/js/upload.js'),(3070,'wp-content/themes/salient/nectar/tinymce/shortcode_generator/js/upload_3_4.js'),(3071,'wp-content/themes/salient/nectar/tinymce/tinymce-class.php'),(3072,'wp-content/themes/salient/page-left-sidebar.php'),(3073,'wp-content/themes/salient/page-sidebar.php'),(3074,'wp-content/themes/salient/page.php'),(3075,'wp-content/themes/salient/search.php'),(3076,'wp-content/themes/salient/searchform.php'),(3077,'wp-content/themes/salient/sidebar.php'),(3078,'wp-content/themes/salient/single-portfolio.php'),(3079,'wp-content/themes/salient/single.php'),(3080,'wp-content/themes/salient/taxonomy-project-attributes.php'),(3081,'wp-content/themes/salient/taxonomy-project-type.php'),(3082,'wp-content/themes/salient/template-contact.php'),(3083,'wp-content/themes/salient/template-home-1.php'),(3084,'wp-content/themes/salient/template-home-2.php'),(3085,'wp-content/themes/salient/template-home-3.php'),(3086,'wp-content/themes/salient/template-home-4.php'),(3087,'wp-content/themes/salient/template-no-footer.php'),(3088,'wp-content/themes/salient/template-no-header-footer.php'),(3089,'wp-content/themes/salient/template-no-header.php'),(3090,'wp-content/themes/salient/template-portfolio.php'),(3091,'wp-content/themes/salient/woocommerce/cart/cart-shipping.php'),(3092,'wp-content/themes/salient/woocommerce/cart/cart-totals.php'),(3093,'wp-content/themes/salient/woocommerce/cart/cart.php'),(3094,'wp-content/themes/salient/woocommerce/cart/shipping-calculator.php'),(3095,'wp-content/themes/salient/woocommerce/checkout/form-checkout.php'),(3096,'wp-content/themes/salient/woocommerce/checkout/form-shipping.php'),(3097,'wp-content/themes/salient/woocommerce/checkout/review-order.php'),(3098,'wp-content/themes/salient/woocommerce/content-product.php'),(3099,'wp-content/themes/salient/woocommerce/content-single-product.php'),(3100,'wp-content/themes/salient/woocommerce/loop/add-to-cart.php'),(3101,'wp-content/themes/salient/woocommerce/loop/loop-start.php'),(3102,'wp-content/themes/salient/woocommerce/myaccount/form-login.php'),(3103,'wp-content/themes/salient/woocommerce/single-product/product-image.php'),(3104,'wp-content/themes/salient/woocommerce/single-product/tabs/description.php'),(3105,'wp-content/themes/salient/woocommerce/single-product/tabs/tabs.php'),(3106,'wp-content/themes/twentyfifteen/404.php'),(3107,'wp-content/themes/twentyfifteen/archive.php'),(3108,'wp-content/themes/twentyfifteen/author-bio.php'),(3109,'wp-content/themes/twentyfifteen/comments.php'),(3110,'wp-content/themes/twentyfifteen/content-link.php'),(3111,'wp-content/themes/twentyfifteen/content-none.php'),(3112,'wp-content/themes/twentyfifteen/content-page.php'),(3113,'wp-content/themes/twentyfifteen/content-search.php'),(3114,'wp-content/themes/twentyfifteen/content.php'),(3115,'wp-content/themes/twentyfifteen/css/editor-style.css'),(3116,'wp-content/themes/twentyfifteen/css/ie.css'),(3117,'wp-content/themes/twentyfifteen/css/ie7.css'),(3118,'wp-content/themes/twentyfifteen/css/index.php'),(3119,'wp-content/themes/twentyfifteen/footer.php'),(3120,'wp-content/themes/twentyfifteen/functions.php'),(3121,'wp-content/themes/twentyfifteen/genericons/COPYING.txt'),(3122,'wp-content/themes/twentyfifteen/genericons/Genericons.eot'),(3123,'wp-content/themes/twentyfifteen/genericons/Genericons.svg'),(3124,'wp-content/themes/twentyfifteen/genericons/Genericons.ttf'),(3125,'wp-content/themes/twentyfifteen/genericons/Genericons.woff'),(3126,'wp-content/themes/twentyfifteen/genericons/LICENSE.txt'),(3127,'wp-content/themes/twentyfifteen/genericons/README.md'),(3128,'wp-content/themes/twentyfifteen/genericons/genericons.css'),(3129,'wp-content/themes/twentyfifteen/genericons/index.php'),(3130,'wp-content/themes/twentyfifteen/header.php'),(3131,'wp-content/themes/twentyfifteen/image.php'),(3132,'wp-content/themes/twentyfifteen/inc/back-compat.php'),(3133,'wp-content/themes/twentyfifteen/inc/custom-header.php'),(3134,'wp-content/themes/twentyfifteen/inc/customizer.php'),(3135,'wp-content/themes/twentyfifteen/inc/index.php'),(3136,'wp-content/themes/twentyfifteen/inc/template-tags.php'),(3137,'wp-content/themes/twentyfifteen/index.php'),(3138,'wp-content/themes/twentyfifteen/js/color-scheme-control.js'),(3139,'wp-content/themes/twentyfifteen/js/customize-preview.js'),(3140,'wp-content/themes/twentyfifteen/js/functions.js'),(3141,'wp-content/themes/twentyfifteen/js/html5.js'),(3142,'wp-content/themes/twentyfifteen/js/index.php'),(3143,'wp-content/themes/twentyfifteen/js/keyboard-image-navigation.js'),(3144,'wp-content/themes/twentyfifteen/js/skip-link-focus-fix.js'),(3145,'wp-content/themes/twentyfifteen/languages/index.php'),(3146,'wp-content/themes/twentyfifteen/page.php'),(3147,'wp-content/themes/twentyfifteen/readme.txt'),(3148,'wp-content/themes/twentyfifteen/rtl.css'),(3149,'wp-content/themes/twentyfifteen/screenshot.png'),(3150,'wp-content/themes/twentyfifteen/search.php'),(3151,'wp-content/themes/twentyfifteen/sidebar.php'),(3152,'wp-content/themes/twentyfifteen/single.php'),(3153,'wp-content/themes/twentyfifteen/style.css'),(3154,'wp-content/themes/twentyfourteen/404.php'),(3155,'wp-content/themes/twentyfourteen/archive.php'),(3156,'wp-content/themes/twentyfourteen/author.php'),(3157,'wp-content/themes/twentyfourteen/category.php'),(3158,'wp-content/themes/twentyfourteen/comments.php'),(3159,'wp-content/themes/twentyfourteen/content-aside.php'),(3160,'wp-content/themes/twentyfourteen/content-audio.php'),(3161,'wp-content/themes/twentyfourteen/content-featured-post.php'),(3162,'wp-content/themes/twentyfourteen/content-gallery.php'),(3163,'wp-content/themes/twentyfourteen/content-image.php'),(3164,'wp-content/themes/twentyfourteen/content-link.php'),(3165,'wp-content/themes/twentyfourteen/content-none.php'),(3166,'wp-content/themes/twentyfourteen/content-page.php'),(3167,'wp-content/themes/twentyfourteen/content-quote.php'),(3168,'wp-content/themes/twentyfourteen/content-video.php'),(3169,'wp-content/themes/twentyfourteen/content.php'),(3170,'wp-content/themes/twentyfourteen/css/editor-style.css'),(3171,'wp-content/themes/twentyfourteen/css/ie.css'),(3172,'wp-content/themes/twentyfourteen/featured-content.php'),(3173,'wp-content/themes/twentyfourteen/footer.php'),(3174,'wp-content/themes/twentyfourteen/functions.php'),(3175,'wp-content/themes/twentyfourteen/genericons/COPYING.txt'),(3176,'wp-content/themes/twentyfourteen/genericons/Genericons-Regular.otf'),(3177,'wp-content/themes/twentyfourteen/genericons/LICENSE.txt'),(3178,'wp-content/themes/twentyfourteen/genericons/README.txt'),(3179,'wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.eot'),(3180,'wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.svg'),(3181,'wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.ttf'),(3182,'wp-content/themes/twentyfourteen/genericons/font/genericons-regular-webfont.woff'),(3183,'wp-content/themes/twentyfourteen/genericons/genericons.css'),(3184,'wp-content/themes/twentyfourteen/header.php'),(3185,'wp-content/themes/twentyfourteen/image.php'),(3186,'wp-content/themes/twentyfourteen/images/pattern-dark.svg'),(3187,'wp-content/themes/twentyfourteen/images/pattern-light.svg'),(3188,'wp-content/themes/twentyfourteen/inc/back-compat.php'),(3189,'wp-content/themes/twentyfourteen/inc/custom-header.php'),(3190,'wp-content/themes/twentyfourteen/inc/customizer.php'),(3191,'wp-content/themes/twentyfourteen/inc/featured-content.php'),(3192,'wp-content/themes/twentyfourteen/inc/template-tags.php'),(3193,'wp-content/themes/twentyfourteen/inc/widgets.php'),(3194,'wp-content/themes/twentyfourteen/index.php'),(3195,'wp-content/themes/twentyfourteen/js/customizer.js'),(3196,'wp-content/themes/twentyfourteen/js/featured-content-admin.js'),(3197,'wp-content/themes/twentyfourteen/js/functions.js'),(3198,'wp-content/themes/twentyfourteen/js/html5.js'),(3199,'wp-content/themes/twentyfourteen/js/keyboard-image-navigation.js'),(3200,'wp-content/themes/twentyfourteen/js/slider.js'),(3201,'wp-content/themes/twentyfourteen/page-templates/contributors.php'),(3202,'wp-content/themes/twentyfourteen/page-templates/full-width.php'),(3203,'wp-content/themes/twentyfourteen/page.php'),(3204,'wp-content/themes/twentyfourteen/readme.txt'),(3205,'wp-content/themes/twentyfourteen/rtl.css'),(3206,'wp-content/themes/twentyfourteen/screenshot.png'),(3207,'wp-content/themes/twentyfourteen/search.php'),(3208,'wp-content/themes/twentyfourteen/sidebar-content.php'),(3209,'wp-content/themes/twentyfourteen/sidebar-footer.php'),(3210,'wp-content/themes/twentyfourteen/sidebar.php'),(3211,'wp-content/themes/twentyfourteen/single.php'),(3212,'wp-content/themes/twentyfourteen/style.css'),(3213,'wp-content/themes/twentyfourteen/tag.php'),(3214,'wp-content/themes/twentyfourteen/taxonomy-post_format.php'),(3215,'wp-content/themes/twentyseventeen/404.php'),(3216,'wp-content/themes/twentyseventeen/README.txt'),(3217,'wp-content/themes/twentyseventeen/archive.php'),(3218,'wp-content/themes/twentyseventeen/assets/css/colors-dark.css'),(3219,'wp-content/themes/twentyseventeen/assets/css/editor-style.css'),(3220,'wp-content/themes/twentyseventeen/assets/css/ie8.css'),(3221,'wp-content/themes/twentyseventeen/assets/css/ie9.css'),(3222,'wp-content/themes/twentyseventeen/assets/css/index.php'),(3223,'wp-content/themes/twentyseventeen/assets/images/coffee.jpg'),(3224,'wp-content/themes/twentyseventeen/assets/images/espresso.jpg'),(3225,'wp-content/themes/twentyseventeen/assets/images/header.jpg'),(3226,'wp-content/themes/twentyseventeen/assets/images/index.php'),(3227,'wp-content/themes/twentyseventeen/assets/images/sandwich.jpg'),(3228,'wp-content/themes/twentyseventeen/assets/images/svg-icons.svg'),(3229,'wp-content/themes/twentyseventeen/assets/index.php'),(3230,'wp-content/themes/twentyseventeen/assets/js/customize-controls.js'),(3231,'wp-content/themes/twentyseventeen/assets/js/customize-preview.js'),(3232,'wp-content/themes/twentyseventeen/assets/js/global.js'),(3233,'wp-content/themes/twentyseventeen/assets/js/html5.js'),(3234,'wp-content/themes/twentyseventeen/assets/js/index.php'),(3235,'wp-content/themes/twentyseventeen/assets/js/jquery.scrollTo.js'),(3236,'wp-content/themes/twentyseventeen/assets/js/navigation.js'),(3237,'wp-content/themes/twentyseventeen/assets/js/skip-link-focus-fix.js'),(3238,'wp-content/themes/twentyseventeen/comments.php'),(3239,'wp-content/themes/twentyseventeen/footer.php'),(3240,'wp-content/themes/twentyseventeen/front-page.php'),(3241,'wp-content/themes/twentyseventeen/functions.php'),(3242,'wp-content/themes/twentyseventeen/header.php'),(3243,'wp-content/themes/twentyseventeen/inc/back-compat.php'),(3244,'wp-content/themes/twentyseventeen/inc/color-patterns.php'),(3245,'wp-content/themes/twentyseventeen/inc/custom-header.php'),(3246,'wp-content/themes/twentyseventeen/inc/customizer.php'),(3247,'wp-content/themes/twentyseventeen/inc/icon-functions.php'),(3248,'wp-content/themes/twentyseventeen/inc/index.php'),(3249,'wp-content/themes/twentyseventeen/inc/template-functions.php'),(3250,'wp-content/themes/twentyseventeen/inc/template-tags.php'),(3251,'wp-content/themes/twentyseventeen/index.php'),(3252,'wp-content/themes/twentyseventeen/page.php'),(3253,'wp-content/themes/twentyseventeen/rtl.css'),(3254,'wp-content/themes/twentyseventeen/screenshot.png'),(3255,'wp-content/themes/twentyseventeen/search.php'),(3256,'wp-content/themes/twentyseventeen/searchform.php'),(3257,'wp-content/themes/twentyseventeen/sidebar.php'),(3258,'wp-content/themes/twentyseventeen/single.php'),(3259,'wp-content/themes/twentyseventeen/style.css'),(3260,'wp-content/themes/twentyseventeen/template-parts/footer/footer-widgets.php'),(3261,'wp-content/themes/twentyseventeen/template-parts/footer/index.php'),(3262,'wp-content/themes/twentyseventeen/template-parts/footer/site-info.php'),(3263,'wp-content/themes/twentyseventeen/template-parts/header/header-image.php'),(3264,'wp-content/themes/twentyseventeen/template-parts/header/index.php'),(3265,'wp-content/themes/twentyseventeen/template-parts/header/site-branding.php'),(3266,'wp-content/themes/twentyseventeen/template-parts/index.php'),(3267,'wp-content/themes/twentyseventeen/template-parts/navigation/index.php'),(3268,'wp-content/themes/twentyseventeen/template-parts/navigation/navigation-top.php'),(3269,'wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php'),(3270,'wp-content/themes/twentyseventeen/template-parts/page/content-front-page.php'),(3271,'wp-content/themes/twentyseventeen/template-parts/page/content-page.php'),(3272,'wp-content/themes/twentyseventeen/template-parts/page/index.php'),(3273,'wp-content/themes/twentyseventeen/template-parts/post/content-audio.php'),(3274,'wp-content/themes/twentyseventeen/template-parts/post/content-excerpt.php'),(3275,'wp-content/themes/twentyseventeen/template-parts/post/content-gallery.php'),(3276,'wp-content/themes/twentyseventeen/template-parts/post/content-image.php'),(3277,'wp-content/themes/twentyseventeen/template-parts/post/content-none.php'),(3278,'wp-content/themes/twentyseventeen/template-parts/post/content-video.php'),(3279,'wp-content/themes/twentyseventeen/template-parts/post/content.php'),(3280,'wp-content/themes/twentyseventeen/template-parts/post/index.php'),(3281,'wp-content/themes/twentysixteen/404.php'),(3282,'wp-content/themes/twentysixteen/archive.php'),(3283,'wp-content/themes/twentysixteen/comments.php'),(3284,'wp-content/themes/twentysixteen/css/editor-style.css'),(3285,'wp-content/themes/twentysixteen/css/ie.css'),(3286,'wp-content/themes/twentysixteen/css/ie7.css'),(3287,'wp-content/themes/twentysixteen/css/ie8.css'),(3288,'wp-content/themes/twentysixteen/css/index.php'),(3289,'wp-content/themes/twentysixteen/footer.php'),(3290,'wp-content/themes/twentysixteen/functions.php'),(3291,'wp-content/themes/twentysixteen/genericons/COPYING.txt'),(3292,'wp-content/themes/twentysixteen/genericons/Genericons.eot'),(3293,'wp-content/themes/twentysixteen/genericons/Genericons.svg'),(3294,'wp-content/themes/twentysixteen/genericons/Genericons.ttf'),(3295,'wp-content/themes/twentysixteen/genericons/Genericons.woff'),(3296,'wp-content/themes/twentysixteen/genericons/LICENSE.txt'),(3297,'wp-content/themes/twentysixteen/genericons/README.md'),(3298,'wp-content/themes/twentysixteen/genericons/genericons.css'),(3299,'wp-content/themes/twentysixteen/genericons/index.php'),(3300,'wp-content/themes/twentysixteen/header.php'),(3301,'wp-content/themes/twentysixteen/image.php'),(3302,'wp-content/themes/twentysixteen/inc/back-compat.php'),(3303,'wp-content/themes/twentysixteen/inc/customizer.php'),(3304,'wp-content/themes/twentysixteen/inc/index.php'),(3305,'wp-content/themes/twentysixteen/inc/template-tags.php'),(3306,'wp-content/themes/twentysixteen/index.php'),(3307,'wp-content/themes/twentysixteen/js/color-scheme-control.js'),(3308,'wp-content/themes/twentysixteen/js/customize-preview.js'),(3309,'wp-content/themes/twentysixteen/js/functions.js'),(3310,'wp-content/themes/twentysixteen/js/html5.js'),(3311,'wp-content/themes/twentysixteen/js/index.php'),(3312,'wp-content/themes/twentysixteen/js/keyboard-image-navigation.js'),(3313,'wp-content/themes/twentysixteen/js/skip-link-focus-fix.js'),(3314,'wp-content/themes/twentysixteen/page.php'),(3315,'wp-content/themes/twentysixteen/readme.txt'),(3316,'wp-content/themes/twentysixteen/rtl.css'),(3317,'wp-content/themes/twentysixteen/screenshot.png'),(3318,'wp-content/themes/twentysixteen/search.php'),(3319,'wp-content/themes/twentysixteen/searchform.php'),(3320,'wp-content/themes/twentysixteen/sidebar-content-bottom.php'),(3321,'wp-content/themes/twentysixteen/sidebar.php'),(3322,'wp-content/themes/twentysixteen/single.php'),(3323,'wp-content/themes/twentysixteen/style.css'),(3324,'wp-content/themes/twentysixteen/template-parts/biography.php'),(3325,'wp-content/themes/twentysixteen/template-parts/content-none.php'),(3326,'wp-content/themes/twentysixteen/template-parts/content-page.php'),(3327,'wp-content/themes/twentysixteen/template-parts/content-search.php'),(3328,'wp-content/themes/twentysixteen/template-parts/content-single.php'),(3329,'wp-content/themes/twentysixteen/template-parts/content.php'),(3330,'wp-content/themes/twentysixteen/template-parts/index.php'),(3331,'wp-content/themes/twentythirteen/404.php'),(3332,'wp-content/themes/twentythirteen/archive.php'),(3333,'wp-content/themes/twentythirteen/author-bio.php'),(3334,'wp-content/themes/twentythirteen/author.php'),(3335,'wp-content/themes/twentythirteen/category.php'),(3336,'wp-content/themes/twentythirteen/comments.php'),(3337,'wp-content/themes/twentythirteen/content-aside.php'),(3338,'wp-content/themes/twentythirteen/content-audio.php'),(3339,'wp-content/themes/twentythirteen/content-chat.php'),(3340,'wp-content/themes/twentythirteen/content-gallery.php'),(3341,'wp-content/themes/twentythirteen/content-image.php'),(3342,'wp-content/themes/twentythirteen/content-link.php'),(3343,'wp-content/themes/twentythirteen/content-none.php'),(3344,'wp-content/themes/twentythirteen/content-quote.php'),(3345,'wp-content/themes/twentythirteen/content-status.php'),(3346,'wp-content/themes/twentythirteen/content-video.php'),(3347,'wp-content/themes/twentythirteen/content.php'),(3348,'wp-content/themes/twentythirteen/css/editor-style.css'),(3349,'wp-content/themes/twentythirteen/css/ie.css'),(3350,'wp-content/themes/twentythirteen/footer.php'),(3351,'wp-content/themes/twentythirteen/functions.php'),(3352,'wp-content/themes/twentythirteen/genericons/COPYING.txt'),(3353,'wp-content/themes/twentythirteen/genericons/Genericons-Regular.otf'),(3354,'wp-content/themes/twentythirteen/genericons/LICENSE.txt'),(3355,'wp-content/themes/twentythirteen/genericons/README.txt'),(3356,'wp-content/themes/twentythirteen/genericons/font/genericons-regular-webfont.eot'),(3357,'wp-content/themes/twentythirteen/genericons/font/genericons-regular-webfont.svg'),(3358,'wp-content/themes/twentythirteen/genericons/font/genericons-regular-webfont.ttf'),(3359,'wp-content/themes/twentythirteen/genericons/font/genericons-regular-webfont.woff'),(3360,'wp-content/themes/twentythirteen/genericons/genericons.css'),(3361,'wp-content/themes/twentythirteen/header.php'),(3362,'wp-content/themes/twentythirteen/image.php'),(3363,'wp-content/themes/twentythirteen/images/dotted-line-2x.png'),(3364,'wp-content/themes/twentythirteen/images/dotted-line-light-2x.png'),(3365,'wp-content/themes/twentythirteen/images/dotted-line-light.png'),(3366,'wp-content/themes/twentythirteen/images/dotted-line.png'),(3367,'wp-content/themes/twentythirteen/images/headers/circle-thumbnail.png'),(3368,'wp-content/themes/twentythirteen/images/headers/circle.png'),(3369,'wp-content/themes/twentythirteen/images/headers/diamond-thumbnail.png'),(3370,'wp-content/themes/twentythirteen/images/headers/diamond.png'),(3371,'wp-content/themes/twentythirteen/images/headers/star-thumbnail.png'),(3372,'wp-content/themes/twentythirteen/images/headers/star.png'),(3373,'wp-content/themes/twentythirteen/images/search-icon-2x.png'),(3374,'wp-content/themes/twentythirteen/images/search-icon.png'),(3375,'wp-content/themes/twentythirteen/inc/back-compat.php'),(3376,'wp-content/themes/twentythirteen/inc/custom-header.php'),(3377,'wp-content/themes/twentythirteen/index.php'),(3378,'wp-content/themes/twentythirteen/js/functions.js'),(3379,'wp-content/themes/twentythirteen/js/html5.js'),(3380,'wp-content/themes/twentythirteen/js/theme-customizer.js'),(3381,'wp-content/themes/twentythirteen/page.php'),(3382,'wp-content/themes/twentythirteen/readme.txt'),(3383,'wp-content/themes/twentythirteen/rtl.css'),(3384,'wp-content/themes/twentythirteen/screenshot.png'),(3385,'wp-content/themes/twentythirteen/search.php'),(3386,'wp-content/themes/twentythirteen/sidebar-main.php'),(3387,'wp-content/themes/twentythirteen/sidebar.php'),(3388,'wp-content/themes/twentythirteen/single.php'),(3389,'wp-content/themes/twentythirteen/style.css'),(3390,'wp-content/themes/twentythirteen/tag.php'),(3391,'wp-content/themes/twentythirteen/taxonomy-post_format.php'),(3392,'wp-content/uploads/2013/06/index.php'),(3393,'wp-content/uploads/2013/index.php'),(3394,'wp-content/uploads/2014/03/index.php'),(3395,'wp-content/uploads/2014/index.php'),(3396,'wp-content/uploads/2015/07/index.php'),(3397,'wp-content/uploads/2015/08/index.php'),(3398,'wp-content/uploads/2015/09/index.php'),(3399,'wp-content/uploads/2015/10/index.php'),(3400,'wp-content/uploads/2015/11/index.php'),(3401,'wp-content/uploads/2015/12/index.php'),(3402,'wp-content/uploads/2015/index.php'),(3403,'wp-content/uploads/2016/01/index.php'),(3404,'wp-content/uploads/2016/02/index.php'),(3405,'wp-content/uploads/2016/03/index.php'),(3406,'wp-content/uploads/2016/04/index.php'),(3407,'wp-content/uploads/2016/05/index.php'),(3408,'wp-content/uploads/2016/06/index.php'),(3409,'wp-content/uploads/2016/07/index.php'),(3410,'wp-content/uploads/2016/08/index.php'),(3411,'wp-content/uploads/2016/09/index.php'),(3412,'wp-content/uploads/2016/10/index.php'),(3413,'wp-content/uploads/2016/11/index.php'),(3414,'wp-content/uploads/2016/12/index.php'),(3415,'wp-content/uploads/2016/index.php'),(3416,'wp-content/uploads/2017/01/index.php'),(3417,'wp-content/uploads/2017/02/index.php'),(3418,'wp-content/uploads/2017/03/index.php'),(3419,'wp-content/uploads/2017/04/index.php'),(3420,'wp-content/uploads/2017/05/index.php'),(3421,'wp-content/uploads/2017/06/index.php'),(3422,'wp-content/uploads/2017/index.php'),(3423,'wp-content/uploads/index.php'),(3424,'wp-content/uploads/js_composer/index.php'),(3425,'wp-content/uploads/redux/index.php'),(3426,'wp-content/uploads/wc-logs/index.html'),(3427,'wp-content/uploads/wc-logs/index.php'),(3428,'wp-content/uploads/woocommerce_uploads/index.html'),(3429,'wp-content/uploads/woocommerce_uploads/index.php'),(3430,'wp-content/wflogs/attack-data.php'),(3431,'wp-content/wflogs/config.php'),(3432,'wp-content/wflogs/ips.php'),(3433,'wp-content/wflogs/rules.php'),(3434,'wp-cron.php'),(3435,'wp-includes/ID3/getid3.lib.php'),(3436,'wp-includes/ID3/getid3.php'),(3437,'wp-includes/ID3/license.commercial.txt'),(3438,'wp-includes/ID3/license.txt'),(3439,'wp-includes/ID3/module.audio-video.asf.php'),(3440,'wp-includes/ID3/module.audio-video.flv.php'),(3441,'wp-includes/ID3/module.audio-video.matroska.php'),(3442,'wp-includes/ID3/module.audio-video.quicktime.php'),(3443,'wp-includes/ID3/module.audio-video.riff.php'),(3444,'wp-includes/ID3/module.audio.ac3.php'),(3445,'wp-includes/ID3/module.audio.dts.php'),(3446,'wp-includes/ID3/module.audio.flac.php'),(3447,'wp-includes/ID3/module.audio.mp3.php'),(3448,'wp-includes/ID3/module.audio.ogg.php'),(3449,'wp-includes/ID3/module.tag.apetag.php'),(3450,'wp-includes/ID3/module.tag.id3v1.php'),(3451,'wp-includes/ID3/module.tag.id3v2.php'),(3452,'wp-includes/ID3/module.tag.lyrics3.php'),(3453,'wp-includes/ID3/readme.txt'),(3454,'wp-includes/IXR/class-IXR-base64.php'),(3455,'wp-includes/IXR/class-IXR-client.php'),(3456,'wp-includes/IXR/class-IXR-clientmulticall.php'),(3457,'wp-includes/IXR/class-IXR-date.php'),(3458,'wp-includes/IXR/class-IXR-error.php'),(3459,'wp-includes/IXR/class-IXR-introspectionserver.php'),(3460,'wp-includes/IXR/class-IXR-message.php'),(3461,'wp-includes/IXR/class-IXR-request.php'),(3462,'wp-includes/IXR/class-IXR-server.php'),(3463,'wp-includes/IXR/class-IXR-value.php'),(3464,'wp-includes/Requests/Auth/Basic.php'),(3465,'wp-includes/Requests/Auth.php'),(3466,'wp-includes/Requests/Cookie/Jar.php'),(3467,'wp-includes/Requests/Cookie.php'),(3468,'wp-includes/Requests/Exception/HTTP/304.php'),(3469,'wp-includes/Requests/Exception/HTTP/305.php'),(3470,'wp-includes/Requests/Exception/HTTP/306.php'),(3471,'wp-includes/Requests/Exception/HTTP/400.php'),(3472,'wp-includes/Requests/Exception/HTTP/401.php'),(3473,'wp-includes/Requests/Exception/HTTP/402.php'),(3474,'wp-includes/Requests/Exception/HTTP/403.php'),(3475,'wp-includes/Requests/Exception/HTTP/404.php'),(3476,'wp-includes/Requests/Exception/HTTP/405.php'),(3477,'wp-includes/Requests/Exception/HTTP/406.php'),(3478,'wp-includes/Requests/Exception/HTTP/407.php'),(3479,'wp-includes/Requests/Exception/HTTP/408.php'),(3480,'wp-includes/Requests/Exception/HTTP/409.php'),(3481,'wp-includes/Requests/Exception/HTTP/410.php'),(3482,'wp-includes/Requests/Exception/HTTP/411.php'),(3483,'wp-includes/Requests/Exception/HTTP/412.php'),(3484,'wp-includes/Requests/Exception/HTTP/413.php'),(3485,'wp-includes/Requests/Exception/HTTP/414.php'),(3486,'wp-includes/Requests/Exception/HTTP/415.php'),(3487,'wp-includes/Requests/Exception/HTTP/416.php'),(3488,'wp-includes/Requests/Exception/HTTP/417.php'),(3489,'wp-includes/Requests/Exception/HTTP/418.php'),(3490,'wp-includes/Requests/Exception/HTTP/428.php'),(3491,'wp-includes/Requests/Exception/HTTP/429.php'),(3492,'wp-includes/Requests/Exception/HTTP/431.php'),(3493,'wp-includes/Requests/Exception/HTTP/500.php'),(3494,'wp-includes/Requests/Exception/HTTP/501.php'),(3495,'wp-includes/Requests/Exception/HTTP/502.php'),(3496,'wp-includes/Requests/Exception/HTTP/503.php'),(3497,'wp-includes/Requests/Exception/HTTP/504.php'),(3498,'wp-includes/Requests/Exception/HTTP/505.php'),(3499,'wp-includes/Requests/Exception/HTTP/511.php'),(3500,'wp-includes/Requests/Exception/HTTP/Unknown.php'),(3501,'wp-includes/Requests/Exception/HTTP.php'),(3502,'wp-includes/Requests/Exception/Transport/cURL.php'),(3503,'wp-includes/Requests/Exception/Transport.php'),(3504,'wp-includes/Requests/Exception.php'),(3505,'wp-includes/Requests/Hooker.php'),(3506,'wp-includes/Requests/Hooks.php'),(3507,'wp-includes/Requests/IDNAEncoder.php'),(3508,'wp-includes/Requests/IPv6.php'),(3509,'wp-includes/Requests/IRI.php'),(3510,'wp-includes/Requests/Proxy/HTTP.php'),(3511,'wp-includes/Requests/Proxy.php'),(3512,'wp-includes/Requests/Response/Headers.php'),(3513,'wp-includes/Requests/Response.php'),(3514,'wp-includes/Requests/SSL.php'),(3515,'wp-includes/Requests/Session.php'),(3516,'wp-includes/Requests/Transport/cURL.php'),(3517,'wp-includes/Requests/Transport/fsockopen.php'),(3518,'wp-includes/Requests/Transport.php'),(3519,'wp-includes/Requests/Utility/CaseInsensitiveDictionary.php'),(3520,'wp-includes/Requests/Utility/FilteredIterator.php'),(3521,'wp-includes/SimplePie/Author.php'),(3522,'wp-includes/SimplePie/Cache/Base.php'),(3523,'wp-includes/SimplePie/Cache/DB.php'),(3524,'wp-includes/SimplePie/Cache/File.php'),(3525,'wp-includes/SimplePie/Cache/Memcache.php'),(3526,'wp-includes/SimplePie/Cache/MySQL.php'),(3527,'wp-includes/SimplePie/Cache.php'),(3528,'wp-includes/SimplePie/Caption.php'),(3529,'wp-includes/SimplePie/Category.php'),(3530,'wp-includes/SimplePie/Content/Type/Sniffer.php'),(3531,'wp-includes/SimplePie/Copyright.php'),(3532,'wp-includes/SimplePie/Core.php'),(3533,'wp-includes/SimplePie/Credit.php'),(3534,'wp-includes/SimplePie/Decode/HTML/Entities.php'),(3535,'wp-includes/SimplePie/Enclosure.php'),(3536,'wp-includes/SimplePie/Exception.php'),(3537,'wp-includes/SimplePie/File.php'),(3538,'wp-includes/SimplePie/HTTP/Parser.php'),(3539,'wp-includes/SimplePie/IRI.php'),(3540,'wp-includes/SimplePie/Item.php'),(3541,'wp-includes/SimplePie/Locator.php'),(3542,'wp-includes/SimplePie/Misc.php'),(3543,'wp-includes/SimplePie/Net/IPv6.php'),(3544,'wp-includes/SimplePie/Parse/Date.php'),(3545,'wp-includes/SimplePie/Parser.php'),(3546,'wp-includes/SimplePie/Rating.php'),(3547,'wp-includes/SimplePie/Registry.php'),(3548,'wp-includes/SimplePie/Restriction.php'),(3549,'wp-includes/SimplePie/Sanitize.php'),(3550,'wp-includes/SimplePie/Source.php'),(3551,'wp-includes/SimplePie/XML/Declaration/Parser.php'),(3552,'wp-includes/SimplePie/gzdecode.php'),(3553,'wp-includes/Text/Diff/Engine/native.php'),(3554,'wp-includes/Text/Diff/Engine/shell.php'),(3555,'wp-includes/Text/Diff/Engine/string.php'),(3556,'wp-includes/Text/Diff/Engine/xdiff.php'),(3557,'wp-includes/Text/Diff/Renderer/inline.php'),(3558,'wp-includes/Text/Diff/Renderer.php'),(3559,'wp-includes/Text/Diff.php'),(3560,'wp-includes/admin-bar.php'),(3561,'wp-includes/atomlib.php'),(3562,'wp-includes/author-template.php'),(3563,'wp-includes/bookmark-template.php'),(3564,'wp-includes/bookmark.php'),(3565,'wp-includes/cache.php'),(3566,'wp-includes/canonical.php'),(3567,'wp-includes/capabilities.php'),(3568,'wp-includes/category-template.php'),(3569,'wp-includes/category.php'),(3570,'wp-includes/certificates/ca-bundle.crt'),(3571,'wp-includes/class-IXR.php'),(3572,'wp-includes/class-feed.php'),(3573,'wp-includes/class-http.php'),(3574,'wp-includes/class-json.php'),(3575,'wp-includes/class-oembed.php'),(3576,'wp-includes/class-phpass.php'),(3577,'wp-includes/class-phpmailer.php'),(3578,'wp-includes/class-pop3.php'),(3579,'wp-includes/class-requests.php'),(3580,'wp-includes/class-simplepie.php'),(3581,'wp-includes/class-smtp.php'),(3582,'wp-includes/class-snoopy.php'),(3583,'wp-includes/class-walker-category-dropdown.php'),(3584,'wp-includes/class-walker-category.php'),(3585,'wp-includes/class-walker-comment.php'),(3586,'wp-includes/class-walker-nav-menu.php'),(3587,'wp-includes/class-walker-page-dropdown.php'),(3588,'wp-includes/class-walker-page.php'),(3589,'wp-includes/class-wp-admin-bar.php'),(3590,'wp-includes/class-wp-ajax-response.php'),(3591,'wp-includes/class-wp-comment-query.php'),(3592,'wp-includes/class-wp-comment.php'),(3593,'wp-includes/class-wp-customize-control.php'),(3594,'wp-includes/class-wp-customize-manager.php'),(3595,'wp-includes/class-wp-customize-nav-menus.php'),(3596,'wp-includes/class-wp-customize-panel.php'),(3597,'wp-includes/class-wp-customize-section.php'),(3598,'wp-includes/class-wp-customize-setting.php'),(3599,'wp-includes/class-wp-customize-widgets.php'),(3600,'wp-includes/class-wp-dependency.php'),(3601,'wp-includes/class-wp-editor.php'),(3602,'wp-includes/class-wp-embed.php'),(3603,'wp-includes/class-wp-error.php'),(3604,'wp-includes/class-wp-feed-cache-transient.php'),(3605,'wp-includes/class-wp-feed-cache.php'),(3606,'wp-includes/class-wp-hook.php'),(3607,'wp-includes/class-wp-http-cookie.php'),(3608,'wp-includes/class-wp-http-curl.php'),(3609,'wp-includes/class-wp-http-encoding.php'),(3610,'wp-includes/class-wp-http-ixr-client.php'),(3611,'wp-includes/class-wp-http-proxy.php'),(3612,'wp-includes/class-wp-http-requests-hooks.php'),(3613,'wp-includes/class-wp-http-requests-response.php'),(3614,'wp-includes/class-wp-http-response.php'),(3615,'wp-includes/class-wp-http-streams.php'),(3616,'wp-includes/class-wp-image-editor-gd.php'),(3617,'wp-includes/class-wp-image-editor-imagick.php'),(3618,'wp-includes/class-wp-image-editor.php'),(3619,'wp-includes/class-wp-list-util.php'),(3620,'wp-includes/class-wp-locale-switcher.php'),(3621,'wp-includes/class-wp-locale.php'),(3622,'wp-includes/class-wp-matchesmapregex.php'),(3623,'wp-includes/class-wp-meta-query.php'),(3624,'wp-includes/class-wp-metadata-lazyloader.php'),(3625,'wp-includes/class-wp-network-query.php'),(3626,'wp-includes/class-wp-network.php'),(3627,'wp-includes/class-wp-oembed-controller.php'),(3628,'wp-includes/class-wp-post-type.php'),(3629,'wp-includes/class-wp-post.php'),(3630,'wp-includes/class-wp-query.php'),(3631,'wp-includes/class-wp-rewrite.php'),(3632,'wp-includes/class-wp-role.php'),(3633,'wp-includes/class-wp-roles.php'),(3634,'wp-includes/class-wp-session-tokens.php'),(3635,'wp-includes/class-wp-simplepie-file.php'),(3636,'wp-includes/class-wp-simplepie-sanitize-kses.php'),(3637,'wp-includes/class-wp-site-query.php'),(3638,'wp-includes/class-wp-site.php'),(3639,'wp-includes/class-wp-tax-query.php'),(3640,'wp-includes/class-wp-taxonomy.php'),(3641,'wp-includes/class-wp-term-query.php'),(3642,'wp-includes/class-wp-term.php'),(3643,'wp-includes/class-wp-text-diff-renderer-inline.php'),(3644,'wp-includes/class-wp-text-diff-renderer-table.php'),(3645,'wp-includes/class-wp-theme.php'),(3646,'wp-includes/class-wp-user-meta-session-tokens.php'),(3647,'wp-includes/class-wp-user-query.php'),(3648,'wp-includes/class-wp-user.php'),(3649,'wp-includes/class-wp-walker.php'),(3650,'wp-includes/class-wp-widget-factory.php'),(3651,'wp-includes/class-wp-widget.php'),(3652,'wp-includes/class-wp-xmlrpc-server.php'),(3653,'wp-includes/class-wp.php'),(3654,'wp-includes/class.wp-dependencies.php'),(3655,'wp-includes/class.wp-scripts.php'),(3656,'wp-includes/class.wp-styles.php'),(3657,'wp-includes/comment-template.php'),(3658,'wp-includes/comment.php'),(3659,'wp-includes/compat.php'),(3660,'wp-includes/cron.php'),(3661,'wp-includes/css/admin-bar-rtl.css'),(3662,'wp-includes/css/admin-bar-rtl.min.css'),(3663,'wp-includes/css/admin-bar.css'),(3664,'wp-includes/css/admin-bar.min.css'),(3665,'wp-includes/css/buttons-rtl.css'),(3666,'wp-includes/css/buttons-rtl.min.css'),(3667,'wp-includes/css/buttons.css'),(3668,'wp-includes/css/buttons.min.css'),(3669,'wp-includes/css/customize-preview-rtl.css'),(3670,'wp-includes/css/customize-preview-rtl.min.css'),(3671,'wp-includes/css/customize-preview.css'),(3672,'wp-includes/css/customize-preview.min.css'),(3673,'wp-includes/css/dashicons.css'),(3674,'wp-includes/css/dashicons.min.css'),(3675,'wp-includes/css/editor-rtl.css'),(3676,'wp-includes/css/editor-rtl.min.css'),(3677,'wp-includes/css/editor.css'),(3678,'wp-includes/css/editor.min.css'),(3679,'wp-includes/css/jquery-ui-dialog-rtl.css'),(3680,'wp-includes/css/jquery-ui-dialog-rtl.min.css'),(3681,'wp-includes/css/jquery-ui-dialog.css'),(3682,'wp-includes/css/jquery-ui-dialog.min.css'),(3683,'wp-includes/css/media-views-rtl.css'),(3684,'wp-includes/css/media-views-rtl.min.css'),(3685,'wp-includes/css/media-views.css'),(3686,'wp-includes/css/media-views.min.css'),(3687,'wp-includes/css/wp-auth-check-rtl.css'),(3688,'wp-includes/css/wp-auth-check-rtl.min.css'),(3689,'wp-includes/css/wp-auth-check.css'),(3690,'wp-includes/css/wp-auth-check.min.css'),(3691,'wp-includes/css/wp-embed-template-ie.css'),(3692,'wp-includes/css/wp-embed-template-ie.min.css'),(3693,'wp-includes/css/wp-embed-template.css'),(3694,'wp-includes/css/wp-embed-template.min.css'),(3695,'wp-includes/css/wp-pointer-rtl.css'),(3696,'wp-includes/css/wp-pointer-rtl.min.css'),(3697,'wp-includes/css/wp-pointer.css'),(3698,'wp-includes/css/wp-pointer.min.css'),(3699,'wp-includes/customize/class-wp-customize-background-image-control.php'),(3700,'wp-includes/customize/class-wp-customize-background-image-setting.php'),(3701,'wp-includes/customize/class-wp-customize-background-position-control.php'),(3702,'wp-includes/customize/class-wp-customize-color-control.php'),(3703,'wp-includes/customize/class-wp-customize-cropped-image-control.php'),(3704,'wp-includes/customize/class-wp-customize-custom-css-setting.php'),(3705,'wp-includes/customize/class-wp-customize-filter-setting.php'),(3706,'wp-includes/customize/class-wp-customize-header-image-control.php'),(3707,'wp-includes/customize/class-wp-customize-header-image-setting.php'),(3708,'wp-includes/customize/class-wp-customize-image-control.php'),(3709,'wp-includes/customize/class-wp-customize-media-control.php'),(3710,'wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php'),(3711,'wp-includes/customize/class-wp-customize-nav-menu-control.php'),(3712,'wp-includes/customize/class-wp-customize-nav-menu-item-control.php'),(3713,'wp-includes/customize/class-wp-customize-nav-menu-item-setting.php'),(3714,'wp-includes/customize/class-wp-customize-nav-menu-location-control.php'),(3715,'wp-includes/customize/class-wp-customize-nav-menu-name-control.php'),(3716,'wp-includes/customize/class-wp-customize-nav-menu-section.php'),(3717,'wp-includes/customize/class-wp-customize-nav-menu-setting.php'),(3718,'wp-includes/customize/class-wp-customize-nav-menus-panel.php'),(3719,'wp-includes/customize/class-wp-customize-new-menu-control.php'),(3720,'wp-includes/customize/class-wp-customize-new-menu-section.php'),(3721,'wp-includes/customize/class-wp-customize-partial.php'),(3722,'wp-includes/customize/class-wp-customize-selective-refresh.php'),(3723,'wp-includes/customize/class-wp-customize-sidebar-section.php'),(3724,'wp-includes/customize/class-wp-customize-site-icon-control.php'),(3725,'wp-includes/customize/class-wp-customize-theme-control.php'),(3726,'wp-includes/customize/class-wp-customize-themes-section.php'),(3727,'wp-includes/customize/class-wp-customize-upload-control.php'),(3728,'wp-includes/customize/class-wp-widget-area-customize-control.php'),(3729,'wp-includes/customize/class-wp-widget-form-customize-control.php'),(3730,'wp-includes/date.php'),(3731,'wp-includes/default-constants.php'),(3732,'wp-includes/default-filters.php'),(3733,'wp-includes/default-widgets.php'),(3734,'wp-includes/deprecated.php'),(3735,'wp-includes/embed-template.php'),(3736,'wp-includes/embed.php'),(3737,'wp-includes/feed-atom-comments.php'),(3738,'wp-includes/feed-atom.php'),(3739,'wp-includes/feed-rdf.php'),(3740,'wp-includes/feed-rss.php'),(3741,'wp-includes/feed-rss2-comments.php'),(3742,'wp-includes/feed-rss2.php'),(3743,'wp-includes/feed.php'),(3744,'wp-includes/fonts/dashicons.eot'),(3745,'wp-includes/fonts/dashicons.svg'),(3746,'wp-includes/fonts/dashicons.ttf'),(3747,'wp-includes/fonts/dashicons.woff'),(3748,'wp-includes/formatting.php'),(3749,'wp-includes/functions.php'),(3750,'wp-includes/functions.wp-scripts.php'),(3751,'wp-includes/functions.wp-styles.php'),(3752,'wp-includes/general-template.php'),(3753,'wp-includes/http.php'),(3754,'wp-includes/images/admin-bar-sprite-2x.png'),(3755,'wp-includes/images/admin-bar-sprite.png'),(3756,'wp-includes/images/arrow-pointer-blue-2x.png'),(3757,'wp-includes/images/arrow-pointer-blue.png'),(3758,'wp-includes/images/blank.gif'),(3759,'wp-includes/images/crystal/archive.png'),(3760,'wp-includes/images/crystal/audio.png'),(3761,'wp-includes/images/crystal/code.png'),(3762,'wp-includes/images/crystal/default.png'),(3763,'wp-includes/images/crystal/document.png'),(3764,'wp-includes/images/crystal/interactive.png'),(3765,'wp-includes/images/crystal/license.txt'),(3766,'wp-includes/images/crystal/spreadsheet.png'),(3767,'wp-includes/images/crystal/text.png'),(3768,'wp-includes/images/crystal/video.png'),(3769,'wp-includes/images/down_arrow-2x.gif'),(3770,'wp-includes/images/down_arrow.gif'),(3771,'wp-includes/images/icon-pointer-flag-2x.png'),(3772,'wp-includes/images/icon-pointer-flag.png'),(3773,'wp-includes/images/media/archive.png'),(3774,'wp-includes/images/media/audio.png'),(3775,'wp-includes/images/media/code.png'),(3776,'wp-includes/images/media/default.png'),(3777,'wp-includes/images/media/document.png'),(3778,'wp-includes/images/media/interactive.png'),(3779,'wp-includes/images/media/spreadsheet.png'),(3780,'wp-includes/images/media/text.png'),(3781,'wp-includes/images/media/video.png'),(3782,'wp-includes/images/rss-2x.png'),(3783,'wp-includes/images/rss.png'),(3784,'wp-includes/images/smilies/frownie.png'),(3785,'wp-includes/images/smilies/icon_arrow.gif'),(3786,'wp-includes/images/smilies/icon_biggrin.gif'),(3787,'wp-includes/images/smilies/icon_confused.gif'),(3788,'wp-includes/images/smilies/icon_cool.gif'),(3789,'wp-includes/images/smilies/icon_cry.gif'),(3790,'wp-includes/images/smilies/icon_eek.gif'),(3791,'wp-includes/images/smilies/icon_evil.gif'),(3792,'wp-includes/images/smilies/icon_exclaim.gif'),(3793,'wp-includes/images/smilies/icon_idea.gif'),(3794,'wp-includes/images/smilies/icon_lol.gif'),(3795,'wp-includes/images/smilies/icon_mad.gif'),(3796,'wp-includes/images/smilies/icon_mrgreen.gif'),(3797,'wp-includes/images/smilies/icon_neutral.gif'),(3798,'wp-includes/images/smilies/icon_question.gif'),(3799,'wp-includes/images/smilies/icon_razz.gif'),(3800,'wp-includes/images/smilies/icon_redface.gif'),(3801,'wp-includes/images/smilies/icon_rolleyes.gif'),(3802,'wp-includes/images/smilies/icon_sad.gif'),(3803,'wp-includes/images/smilies/icon_smile.gif'),(3804,'wp-includes/images/smilies/icon_surprised.gif'),(3805,'wp-includes/images/smilies/icon_twisted.gif'),(3806,'wp-includes/images/smilies/icon_wink.gif'),(3807,'wp-includes/images/smilies/mrgreen.png'),(3808,'wp-includes/images/smilies/rolleyes.png'),(3809,'wp-includes/images/smilies/simple-smile.png'),(3810,'wp-includes/images/spinner-2x.gif'),(3811,'wp-includes/images/spinner.gif'),(3812,'wp-includes/images/toggle-arrow-2x.png'),(3813,'wp-includes/images/toggle-arrow.png'),(3814,'wp-includes/images/uploader-icons-2x.png'),(3815,'wp-includes/images/uploader-icons.png'),(3816,'wp-includes/images/w-logo-blue.png'),(3817,'wp-includes/images/wlw/wp-comments.png'),(3818,'wp-includes/images/wlw/wp-icon.png'),(3819,'wp-includes/images/wlw/wp-watermark.png'),(3820,'wp-includes/images/wpicons-2x.png'),(3821,'wp-includes/images/wpicons.png'),(3822,'wp-includes/images/wpspin-2x.gif'),(3823,'wp-includes/images/wpspin.gif'),(3824,'wp-includes/images/xit-2x.gif'),(3825,'wp-includes/images/xit.gif'),(3826,'wp-includes/js/admin-bar.js'),(3827,'wp-includes/js/admin-bar.min.js'),(3828,'wp-includes/js/autosave.js'),(3829,'wp-includes/js/autosave.min.js'),(3830,'wp-includes/js/backbone.min.js'),(3831,'wp-includes/js/colorpicker.js'),(3832,'wp-includes/js/colorpicker.min.js'),(3833,'wp-includes/js/comment-reply.js'),(3834,'wp-includes/js/comment-reply.min.js'),(3835,'wp-includes/js/crop/cropper.css'),(3836,'wp-includes/js/crop/cropper.js'),(3837,'wp-includes/js/crop/marqueeHoriz.gif'),(3838,'wp-includes/js/crop/marqueeVert.gif'),(3839,'wp-includes/js/customize-base.js'),(3840,'wp-includes/js/customize-base.min.js'),(3841,'wp-includes/js/customize-loader.js'),(3842,'wp-includes/js/customize-loader.min.js'),(3843,'wp-includes/js/customize-models.js'),(3844,'wp-includes/js/customize-models.min.js'),(3845,'wp-includes/js/customize-preview-nav-menus.js'),(3846,'wp-includes/js/customize-preview-nav-menus.min.js'),(3847,'wp-includes/js/customize-preview-widgets.js'),(3848,'wp-includes/js/customize-preview-widgets.min.js'),(3849,'wp-includes/js/customize-preview.js'),(3850,'wp-includes/js/customize-preview.min.js'),(3851,'wp-includes/js/customize-selective-refresh.js'),(3852,'wp-includes/js/customize-selective-refresh.min.js'),(3853,'wp-includes/js/customize-views.js'),(3854,'wp-includes/js/customize-views.min.js'),(3855,'wp-includes/js/heartbeat.js'),(3856,'wp-includes/js/heartbeat.min.js'),(3857,'wp-includes/js/hoverIntent.js'),(3858,'wp-includes/js/hoverIntent.min.js'),(3859,'wp-includes/js/imagesloaded.min.js'),(3860,'wp-includes/js/imgareaselect/border-anim-h.gif'),(3861,'wp-includes/js/imgareaselect/border-anim-v.gif'),(3862,'wp-includes/js/imgareaselect/imgareaselect.css'),(3863,'wp-includes/js/imgareaselect/jquery.imgareaselect.js'),(3864,'wp-includes/js/imgareaselect/jquery.imgareaselect.min.js'),(3865,'wp-includes/js/jcrop/Jcrop.gif'),(3866,'wp-includes/js/jcrop/jquery.Jcrop.min.css'),(3867,'wp-includes/js/jcrop/jquery.Jcrop.min.js'),(3868,'wp-includes/js/jquery/jquery-migrate.js'),(3869,'wp-includes/js/jquery/jquery-migrate.min.js'),(3870,'wp-includes/js/jquery/jquery.color.min.js'),(3871,'wp-includes/js/jquery/jquery.form.js'),(3872,'wp-includes/js/jquery/jquery.form.min.js'),(3873,'wp-includes/js/jquery/jquery.hotkeys.js'),(3874,'wp-includes/js/jquery/jquery.hotkeys.min.js'),(3875,'wp-includes/js/jquery/jquery.js'),(3876,'wp-includes/js/jquery/jquery.masonry.min.js'),(3877,'wp-includes/js/jquery/jquery.query.js'),(3878,'wp-includes/js/jquery/jquery.schedule.js'),(3879,'wp-includes/js/jquery/jquery.serialize-object.js'),(3880,'wp-includes/js/jquery/jquery.table-hotkeys.js'),(3881,'wp-includes/js/jquery/jquery.table-hotkeys.min.js'),(3882,'wp-includes/js/jquery/jquery.ui.touch-punch.js'),(3883,'wp-includes/js/jquery/suggest.js'),(3884,'wp-includes/js/jquery/suggest.min.js'),(3885,'wp-includes/js/jquery/ui/accordion.min.js'),(3886,'wp-includes/js/jquery/ui/autocomplete.min.js'),(3887,'wp-includes/js/jquery/ui/button.min.js'),(3888,'wp-includes/js/jquery/ui/core.min.js'),(3889,'wp-includes/js/jquery/ui/datepicker.min.js'),(3890,'wp-includes/js/jquery/ui/dialog.min.js'),(3891,'wp-includes/js/jquery/ui/draggable.min.js'),(3892,'wp-includes/js/jquery/ui/droppable.min.js'),(3893,'wp-includes/js/jquery/ui/effect-blind.min.js'),(3894,'wp-includes/js/jquery/ui/effect-bounce.min.js'),(3895,'wp-includes/js/jquery/ui/effect-clip.min.js'),(3896,'wp-includes/js/jquery/ui/effect-drop.min.js'),(3897,'wp-includes/js/jquery/ui/effect-explode.min.js'),(3898,'wp-includes/js/jquery/ui/effect-fade.min.js'),(3899,'wp-includes/js/jquery/ui/effect-fold.min.js'),(3900,'wp-includes/js/jquery/ui/effect-highlight.min.js'),(3901,'wp-includes/js/jquery/ui/effect-puff.min.js'),(3902,'wp-includes/js/jquery/ui/effect-pulsate.min.js'),(3903,'wp-includes/js/jquery/ui/effect-scale.min.js'),(3904,'wp-includes/js/jquery/ui/effect-shake.min.js'),(3905,'wp-includes/js/jquery/ui/effect-size.min.js'),(3906,'wp-includes/js/jquery/ui/effect-slide.min.js'),(3907,'wp-includes/js/jquery/ui/effect-transfer.min.js'),(3908,'wp-includes/js/jquery/ui/effect.min.js'),(3909,'wp-includes/js/jquery/ui/menu.min.js'),(3910,'wp-includes/js/jquery/ui/mouse.min.js'),(3911,'wp-includes/js/jquery/ui/position.min.js'),(3912,'wp-includes/js/jquery/ui/progressbar.min.js'),(3913,'wp-includes/js/jquery/ui/resizable.min.js'),(3914,'wp-includes/js/jquery/ui/selectable.min.js'),(3915,'wp-includes/js/jquery/ui/selectmenu.min.js'),(3916,'wp-includes/js/jquery/ui/slider.min.js'),(3917,'wp-includes/js/jquery/ui/sortable.min.js'),(3918,'wp-includes/js/jquery/ui/spinner.min.js'),(3919,'wp-includes/js/jquery/ui/tabs.min.js'),(3920,'wp-includes/js/jquery/ui/tooltip.min.js'),(3921,'wp-includes/js/jquery/ui/widget.min.js'),(3922,'wp-includes/js/json2.js'),(3923,'wp-includes/js/json2.min.js'),(3924,'wp-includes/js/masonry.min.js'),(3925,'wp-includes/js/mce-view.js'),(3926,'wp-includes/js/mce-view.min.js'),(3927,'wp-includes/js/media-audiovideo.js'),(3928,'wp-includes/js/media-audiovideo.min.js'),(3929,'wp-includes/js/media-editor.js'),(3930,'wp-includes/js/media-editor.min.js'),(3931,'wp-includes/js/media-grid.js'),(3932,'wp-includes/js/media-grid.min.js'),(3933,'wp-includes/js/media-models.js'),(3934,'wp-includes/js/media-models.min.js'),(3935,'wp-includes/js/media-views.js'),(3936,'wp-includes/js/media-views.min.js'),(3937,'wp-includes/js/mediaelement/background.png'),(3938,'wp-includes/js/mediaelement/bigplay.png'),(3939,'wp-includes/js/mediaelement/bigplay.svg'),(3940,'wp-includes/js/mediaelement/controls.png'),(3941,'wp-includes/js/mediaelement/controls.svg'),(3942,'wp-includes/js/mediaelement/flashmediaelement.swf'),(3943,'wp-includes/js/mediaelement/froogaloop.min.js'),(3944,'wp-includes/js/mediaelement/jumpforward.png'),(3945,'wp-includes/js/mediaelement/loading.gif'),(3946,'wp-includes/js/mediaelement/mediaelement-and-player.min.js'),(3947,'wp-includes/js/mediaelement/mediaelementplayer.min.css'),(3948,'wp-includes/js/mediaelement/silverlightmediaelement.xap'),(3949,'wp-includes/js/mediaelement/skipback.png'),(3950,'wp-includes/js/mediaelement/wp-mediaelement.css'),(3951,'wp-includes/js/mediaelement/wp-mediaelement.js'),(3952,'wp-includes/js/mediaelement/wp-mediaelement.min.css'),(3953,'wp-includes/js/mediaelement/wp-mediaelement.min.js'),(3954,'wp-includes/js/mediaelement/wp-playlist.js'),(3955,'wp-includes/js/mediaelement/wp-playlist.min.js'),(3956,'wp-includes/js/plupload/handlers.js'),(3957,'wp-includes/js/plupload/handlers.min.js'),(3958,'wp-includes/js/plupload/license.txt'),(3959,'wp-includes/js/plupload/plupload.flash.swf'),(3960,'wp-includes/js/plupload/plupload.full.min.js'),(3961,'wp-includes/js/plupload/plupload.silverlight.xap'),(3962,'wp-includes/js/plupload/wp-plupload.js'),(3963,'wp-includes/js/plupload/wp-plupload.min.js'),(3964,'wp-includes/js/quicktags.js'),(3965,'wp-includes/js/quicktags.min.js'),(3966,'wp-includes/js/shortcode.js'),(3967,'wp-includes/js/shortcode.min.js'),(3968,'wp-includes/js/swfobject.js'),(3969,'wp-includes/js/swfupload/handlers.js'),(3970,'wp-includes/js/swfupload/handlers.min.js'),(3971,'wp-includes/js/swfupload/license.txt'),(3972,'wp-includes/js/swfupload/plugins/swfupload.cookies.js'),(3973,'wp-includes/js/swfupload/plugins/swfupload.queue.js'),(3974,'wp-includes/js/swfupload/plugins/swfupload.speed.js'),(3975,'wp-includes/js/swfupload/plugins/swfupload.swfobject.js'),(3976,'wp-includes/js/swfupload/swfupload.js'),(3977,'wp-includes/js/swfupload/swfupload.swf'),(3978,'wp-includes/js/thickbox/loadingAnimation.gif'),(3979,'wp-includes/js/thickbox/macFFBgHack.png'),(3980,'wp-includes/js/thickbox/thickbox.css'),(3981,'wp-includes/js/thickbox/thickbox.js'),(3982,'wp-includes/js/tinymce/langs/wp-langs-en.js'),(3983,'wp-includes/js/tinymce/license.txt'),(3984,'wp-includes/js/tinymce/plugins/charmap/plugin.js'),(3985,'wp-includes/js/tinymce/plugins/charmap/plugin.min.js'),(3986,'wp-includes/js/tinymce/plugins/colorpicker/plugin.js'),(3987,'wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js'),(3988,'wp-includes/js/tinymce/plugins/compat3x/css/dialog.css'),(3989,'wp-includes/js/tinymce/plugins/compat3x/plugin.js'),(3990,'wp-includes/js/tinymce/plugins/compat3x/plugin.min.js'),(3991,'wp-includes/js/tinymce/plugins/directionality/plugin.js'),(3992,'wp-includes/js/tinymce/plugins/directionality/plugin.min.js'),(3993,'wp-includes/js/tinymce/plugins/fullscreen/plugin.js'),(3994,'wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js'),(3995,'wp-includes/js/tinymce/plugins/hr/plugin.js'),(3996,'wp-includes/js/tinymce/plugins/hr/plugin.min.js'),(3997,'wp-includes/js/tinymce/plugins/image/plugin.js'),(3998,'wp-includes/js/tinymce/plugins/image/plugin.min.js'),(3999,'wp-includes/js/tinymce/plugins/lists/plugin.js'),(4000,'wp-includes/js/tinymce/plugins/lists/plugin.min.js'),(4001,'wp-includes/js/tinymce/plugins/media/plugin.js'),(4002,'wp-includes/js/tinymce/plugins/media/plugin.min.js'),(4003,'wp-includes/js/tinymce/plugins/paste/plugin.js'),(4004,'wp-includes/js/tinymce/plugins/paste/plugin.min.js'),(4005,'wp-includes/js/tinymce/plugins/tabfocus/plugin.js'),(4006,'wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js'),(4007,'wp-includes/js/tinymce/plugins/textcolor/plugin.js'),(4008,'wp-includes/js/tinymce/plugins/textcolor/plugin.min.js'),(4009,'wp-includes/js/tinymce/plugins/wordpress/plugin.js'),(4010,'wp-includes/js/tinymce/plugins/wordpress/plugin.min.js'),(4011,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.js'),(4012,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js'),(4013,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.js'),(4014,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js'),(4015,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.js'),(4016,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js'),(4017,'wp-includes/js/tinymce/plugins/wpemoji/plugin.js'),(4018,'wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js'),(4019,'wp-includes/js/tinymce/plugins/wpgallery/plugin.js'),(4020,'wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js'),(4021,'wp-includes/js/tinymce/plugins/wplink/plugin.js'),(4022,'wp-includes/js/tinymce/plugins/wplink/plugin.min.js'),(4023,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.js'),(4024,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js'),(4025,'wp-includes/js/tinymce/plugins/wpview/plugin.js'),(4026,'wp-includes/js/tinymce/plugins/wpview/plugin.min.js'),(4027,'wp-includes/js/tinymce/skins/lightgray/content.inline.min.css'),(4028,'wp-includes/js/tinymce/skins/lightgray/content.min.css'),(4029,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot'),(4030,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg'),(4031,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf'),(4032,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff'),(4033,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot'),(4034,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg'),(4035,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf'),(4036,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff'),(4037,'wp-includes/js/tinymce/skins/lightgray/img/anchor.gif'),(4038,'wp-includes/js/tinymce/skins/lightgray/img/loader.gif'),(4039,'wp-includes/js/tinymce/skins/lightgray/img/object.gif'),(4040,'wp-includes/js/tinymce/skins/lightgray/img/trans.gif'),(4041,'wp-includes/js/tinymce/skins/lightgray/skin.min.css'),(4042,'wp-includes/js/tinymce/skins/wordpress/images/audio.png'),(4043,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png'),(4044,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png'),(4045,'wp-includes/js/tinymce/skins/wordpress/images/embedded.png'),(4046,'wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png'),(4047,'wp-includes/js/tinymce/skins/wordpress/images/gallery.png'),(4048,'wp-includes/js/tinymce/skins/wordpress/images/more-2x.png'),(4049,'wp-includes/js/tinymce/skins/wordpress/images/more.png'),(4050,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png'),(4051,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png'),(4052,'wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png'),(4053,'wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png'),(4054,'wp-includes/js/tinymce/skins/wordpress/images/video.png'),(4055,'wp-includes/js/tinymce/skins/wordpress/wp-content.css'),(4056,'wp-includes/js/tinymce/themes/inlite/theme.js'),(4057,'wp-includes/js/tinymce/themes/inlite/theme.min.js'),(4058,'wp-includes/js/tinymce/themes/modern/theme.js'),(4059,'wp-includes/js/tinymce/themes/modern/theme.min.js'),(4060,'wp-includes/js/tinymce/tiny_mce_popup.js'),(4061,'wp-includes/js/tinymce/tinymce.min.js'),(4062,'wp-includes/js/tinymce/utils/editable_selects.js'),(4063,'wp-includes/js/tinymce/utils/form_utils.js'),(4064,'wp-includes/js/tinymce/utils/mctabs.js'),(4065,'wp-includes/js/tinymce/utils/validate.js'),(4066,'wp-includes/js/tinymce/wp-tinymce.js.gz'),(4067,'wp-includes/js/tinymce/wp-tinymce.php'),(4068,'wp-includes/js/tw-sack.js'),(4069,'wp-includes/js/tw-sack.min.js'),(4070,'wp-includes/js/twemoji.js'),(4071,'wp-includes/js/twemoji.min.js'),(4072,'wp-includes/js/underscore.min.js'),(4073,'wp-includes/js/utils.js'),(4074,'wp-includes/js/utils.min.js'),(4075,'wp-includes/js/wp-a11y.js'),(4076,'wp-includes/js/wp-a11y.min.js'),(4077,'wp-includes/js/wp-ajax-response.js'),(4078,'wp-includes/js/wp-ajax-response.min.js'),(4079,'wp-includes/js/wp-api.js'),(4080,'wp-includes/js/wp-api.min.js'),(4081,'wp-includes/js/wp-auth-check.js'),(4082,'wp-includes/js/wp-auth-check.min.js'),(4083,'wp-includes/js/wp-backbone.js'),(4084,'wp-includes/js/wp-backbone.min.js'),(4085,'wp-includes/js/wp-custom-header.js'),(4086,'wp-includes/js/wp-custom-header.min.js'),(4087,'wp-includes/js/wp-embed-template.js'),(4088,'wp-includes/js/wp-embed-template.min.js'),(4089,'wp-includes/js/wp-embed.js'),(4090,'wp-includes/js/wp-embed.min.js'),(4091,'wp-includes/js/wp-emoji-loader.js'),(4092,'wp-includes/js/wp-emoji-loader.min.js'),(4093,'wp-includes/js/wp-emoji-release.min.js'),(4094,'wp-includes/js/wp-emoji.js'),(4095,'wp-includes/js/wp-emoji.min.js'),(4096,'wp-includes/js/wp-list-revisions.js'),(4097,'wp-includes/js/wp-list-revisions.min.js'),(4098,'wp-includes/js/wp-lists.js'),(4099,'wp-includes/js/wp-lists.min.js'),(4100,'wp-includes/js/wp-pointer.js'),(4101,'wp-includes/js/wp-pointer.min.js'),(4102,'wp-includes/js/wp-util.js'),(4103,'wp-includes/js/wp-util.min.js'),(4104,'wp-includes/js/wpdialog.js'),(4105,'wp-includes/js/wpdialog.min.js'),(4106,'wp-includes/js/wplink.js'),(4107,'wp-includes/js/wplink.min.js'),(4108,'wp-includes/js/zxcvbn-async.js'),(4109,'wp-includes/js/zxcvbn-async.min.js'),(4110,'wp-includes/js/zxcvbn.min.js'),(4111,'wp-includes/kses.php'),(4112,'wp-includes/l10n.php'),(4113,'wp-includes/link-template.php'),(4114,'wp-includes/load.php'),(4115,'wp-includes/locale.php'),(4116,'wp-includes/media-template.php'),(4117,'wp-includes/media.php'),(4118,'wp-includes/meta.php'),(4119,'wp-includes/ms-blogs.php'),(4120,'wp-includes/ms-default-constants.php'),(4121,'wp-includes/ms-default-filters.php'),(4122,'wp-includes/ms-deprecated.php'),(4123,'wp-includes/ms-files.php'),(4124,'wp-includes/ms-functions.php'),(4125,'wp-includes/ms-load.php'),(4126,'wp-includes/ms-settings.php'),(4127,'wp-includes/nav-menu-template.php'),(4128,'wp-includes/nav-menu.php'),(4129,'wp-includes/option.php'),(4130,'wp-includes/pluggable-deprecated.php'),(4131,'wp-includes/pluggable.php'),(4132,'wp-includes/plugin.php'),(4133,'wp-includes/pomo/entry.php'),(4134,'wp-includes/pomo/mo.php'),(4135,'wp-includes/pomo/po.php'),(4136,'wp-includes/pomo/streams.php'),(4137,'wp-includes/pomo/translations.php'),(4138,'wp-includes/post-formats.php'),(4139,'wp-includes/post-template.php'),(4140,'wp-includes/post-thumbnail-template.php'),(4141,'wp-includes/post.php'),(4142,'wp-includes/query.php'),(4143,'wp-includes/random_compat/byte_safe_strings.php'),(4144,'wp-includes/random_compat/cast_to_int.php'),(4145,'wp-includes/random_compat/error_polyfill.php'),(4146,'wp-includes/random_compat/random.php'),(4147,'wp-includes/random_compat/random_bytes_com_dotnet.php'),(4148,'wp-includes/random_compat/random_bytes_dev_urandom.php'),(4149,'wp-includes/random_compat/random_bytes_libsodium.php'),(4150,'wp-includes/random_compat/random_bytes_libsodium_legacy.php'),(4151,'wp-includes/random_compat/random_bytes_mcrypt.php'),(4152,'wp-includes/random_compat/random_bytes_openssl.php'),(4153,'wp-includes/random_compat/random_int.php'),(4154,'wp-includes/registration-functions.php'),(4155,'wp-includes/registration.php'),(4156,'wp-includes/rest-api/class-wp-rest-request.php'),(4157,'wp-includes/rest-api/class-wp-rest-response.php'),(4158,'wp-includes/rest-api/class-wp-rest-server.php'),(4159,'wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php'),(4160,'wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php'),(4161,'wp-includes/rest-api/endpoints/class-wp-rest-controller.php'),(4162,'wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php'),(4163,'wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php'),(4164,'wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php'),(4165,'wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php'),(4166,'wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php'),(4167,'wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php'),(4168,'wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php'),(4169,'wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php'),(4170,'wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php'),(4171,'wp-includes/rest-api/fields/class-wp-rest-meta-fields.php'),(4172,'wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php'),(4173,'wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php'),(4174,'wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php'),(4175,'wp-includes/rest-api.php'),(4176,'wp-includes/revision.php'),(4177,'wp-includes/rewrite.php'),(4178,'wp-includes/rss-functions.php'),(4179,'wp-includes/rss.php'),(4180,'wp-includes/script-loader.php'),(4181,'wp-includes/session.php'),(4182,'wp-includes/shortcodes.php'),(4183,'wp-includes/taxonomy.php'),(4184,'wp-includes/template-loader.php'),(4185,'wp-includes/template.php'),(4186,'wp-includes/theme-compat/comments.php'),(4187,'wp-includes/theme-compat/embed-404.php'),(4188,'wp-includes/theme-compat/embed-content.php'),(4189,'wp-includes/theme-compat/embed.php'),(4190,'wp-includes/theme-compat/footer-embed.php'),(4191,'wp-includes/theme-compat/footer.php'),(4192,'wp-includes/theme-compat/header-embed.php'),(4193,'wp-includes/theme-compat/header.php'),(4194,'wp-includes/theme-compat/sidebar.php'),(4195,'wp-includes/theme.php'),(4196,'wp-includes/update.php'),(4197,'wp-includes/user.php'),(4198,'wp-includes/vars.php'),(4199,'wp-includes/version.php'),(4200,'wp-includes/widgets/class-wp-nav-menu-widget.php'),(4201,'wp-includes/widgets/class-wp-widget-archives.php'),(4202,'wp-includes/widgets/class-wp-widget-calendar.php'),(4203,'wp-includes/widgets/class-wp-widget-categories.php'),(4204,'wp-includes/widgets/class-wp-widget-links.php'),(4205,'wp-includes/widgets/class-wp-widget-media-audio.php'),(4206,'wp-includes/widgets/class-wp-widget-media-image.php'),(4207,'wp-includes/widgets/class-wp-widget-media-video.php'),(4208,'wp-includes/widgets/class-wp-widget-media.php'),(4209,'wp-includes/widgets/class-wp-widget-meta.php'),(4210,'wp-includes/widgets/class-wp-widget-pages.php'),(4211,'wp-includes/widgets/class-wp-widget-recent-comments.php'),(4212,'wp-includes/widgets/class-wp-widget-recent-posts.php'),(4213,'wp-includes/widgets/class-wp-widget-rss.php'),(4214,'wp-includes/widgets/class-wp-widget-search.php'),(4215,'wp-includes/widgets/class-wp-widget-tag-cloud.php'),(4216,'wp-includes/widgets/class-wp-widget-text.php'),(4217,'wp-includes/widgets.php'),(4218,'wp-includes/wlwmanifest.xml'),(4219,'wp-includes/wp-db.php'),(4220,'wp-includes/wp-diff.php'),(4221,'wp-links-opml.php'),(4222,'wp-load.php'),(4223,'wp-login.php'),(4224,'wp-mail.php'),(4225,'wp-settings.php'),(4226,'wp-signup.php'),(4227,'wp-trackback.php'),(4228,'xmlrpc.php');
/*!40000 ALTER TABLE `wp_wfKnownFileList` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfLeechers`
--

DROP TABLE IF EXISTS `wp_wfLeechers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfLeechers` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfLeechers`
--

LOCK TABLES `wp_wfLeechers` WRITE;
/*!40000 ALTER TABLE `wp_wfLeechers` DISABLE KEYS */;
INSERT INTO `wp_wfLeechers` VALUES (25012283,'\0\0\0\0\0\0\0\0\0\01kr',1),(25012320,'\0\0\0\0\0\0\0\0\0\0',1),(25012402,'\0\0\0\0\0\0\0\0\0\0R\r	-',2),(25012444,'\0\0\0\0\0\0\0\0\0\0.wp',2),(25012489,'\0\0\0\0\0\0\0\0\0\0.v',3),(25012501,'\0\0\0\0\0\0\0\0\0\07\'g',1),(25012704,'\0\0\0\0\0\0\0\0\0\0B',1),(25012718,'\0\0\0\0\0\0\0\0\0\0c~',1),(25012733,'\0\0\0\0\0\0\0\0\0\0Bf',1),(25012763,'\0\0\0\0\0\0\0\0\0\0>',1),(25012763,'\0\0\0\0\0\0\0\0\0\0MKN',1),(25012784,'\0\0\0\0\0\0\0\0\0\0.vp',3),(25012896,'\0\0\0\0\0\0\0\0\0\0`/',1),(25012973,'\0\0\0\0\0\0\0\0\0\0MBa',1),(25013057,'\0\0\0\0\0\0\0\0\0\0Mn',1),(25013079,'\0\0\0\0\0\0\0\0\0\06',1),(25013139,'\0\0\0\0\0\0\0\0\0\0H',1),(25013192,'\0\0\0\0\0\0\0\0\0\0V',2),(25013203,'\0\0\0\0\0\0\0\0\0\0.vp',3),(25013225,'\0\0\0\0\0\0\0\0\0\0\"f',2),(25013259,'\0\0\0\0\0\0\0\0\0\0n?r',2),(25013276,'\0\0\0\0\0\0\0\0\0\0b',1),(25013351,'\0\0\0\0\0\0\0\0\0\0?',1),(25013359,'\0\0\0\0\0\0\0\0\0\07\'g',1),(25013382,'\0\0\0\0\0\0\0\0\0\0.wp',2),(25013389,'\0\0\0\0\0\0\0\0\0\0.v',3),(25013397,'\0\0\0\0\0\0\0\0\0\0E',2),(25013398,'\0\0\0\0\0\0\0\0\0\0MN',2),(25013479,'\0\0\0\0\0\0\0\0\0\0»',1),(25013488,'\0\0\0\0\0\0\0\0\0\0^x',1),(25013501,'\0\0\0\0\0\0\0\0\0\0»',1),(25013535,'\0\0\0\0\0\0\0\0\0\0[r',1),(25013538,'\0\0\0\0\0\0\0\0\0\0[r',1),(25013553,'\0\0\0\0\0\0\0\0\0\0:',1),(25013637,'\0\0\0\0\0\0\0\0\0\0`:',2),(25013664,'\0\0\0\0\0\0\0\0\0\0.wp',3),(25013686,'\0\0\0\0\0\0\0\0\0\0_n',2),(25013702,'\0\0\0\0\0\0\0\0\0\0}',2);
/*!40000 ALTER TABLE `wp_wfLeechers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfLockedOut`
--

DROP TABLE IF EXISTS `wp_wfLockedOut`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfLockedOut` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT '0',
  `blockedHits` int(10) unsigned DEFAULT '0',
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfLockedOut`
--

LOCK TABLES `wp_wfLockedOut` WRITE;
/*!40000 ALTER TABLE `wp_wfLockedOut` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfLockedOut` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfLocs`
--

DROP TABLE IF EXISTS `wp_wfLocs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfLocs` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int(10) unsigned NOT NULL,
  `failed` tinyint(3) unsigned NOT NULL,
  `city` varchar(255) DEFAULT '',
  `region` varchar(255) DEFAULT '',
  `countryName` varchar(255) DEFAULT '',
  `countryCode` char(2) DEFAULT '',
  `lat` float(10,7) DEFAULT '0.0000000',
  `lon` float(10,7) DEFAULT '0.0000000',
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfLocs`
--

LOCK TABLES `wp_wfLocs` WRITE;
/*!40000 ALTER TABLE `wp_wfLocs` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfLocs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfLogins`
--

DROP TABLE IF EXISTS `wp_wfLogins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfLogins` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `hitID` int(11) DEFAULT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `fail` tinyint(3) unsigned NOT NULL,
  `action` varchar(40) NOT NULL,
  `username` varchar(255) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `UA` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`IP`,`fail`),
  KEY `hitID` (`hitID`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfLogins`
--

LOCK TABLES `wp_wfLogins` WRITE;
/*!40000 ALTER TABLE `wp_wfLogins` DISABLE KEYS */;
INSERT INTO `wp_wfLogins` VALUES (1,10,1500744136.728403,1,'loginFailInvalidUsername','punjabyouthclub',0,'\0\0\0\0\0\0\0\0\0\0R\r	-','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2,12,1500744139.735237,1,'loginFailInvalidUsername','punjabyouthclub',0,'\0\0\0\0\0\0\0\0\0\0R\r	-','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3,80,1500793535.114426,1,'loginFailInvalidUsername','punjabyouthclub',0,'\0\0\0\0\0\0\0\0\0\0\"f','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(4,82,1500793538.657315,1,'loginFailInvalidUsername','punjabyouthclub',0,'\0\0\0\0\0\0\0\0\0\0\"f','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(5,84,1500795599.005209,0,'loginOK','barabere',2,'\0\0\0\0\0\0\0\0\0\0n?r','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36'),(6,101,1500803852.243392,1,'loginFailInvalidUsername','punjabyouthclub',0,'\0\0\0\0\0\0\0\0\0\0E','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(7,103,1500803860.087731,1,'loginFailInvalidUsername','punjabyouthclub',0,'\0\0\0\0\0\0\0\0\0\0E','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(8,104,1500803895.405099,1,'loginFailInvalidUsername','punjabyouthclub',0,'\0\0\0\0\0\0\0\0\0\0MN','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(9,106,1500803899.088040,1,'loginFailInvalidUsername','punjabyouthclub',0,'\0\0\0\0\0\0\0\0\0\0MN','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(10,137,1500818270.974845,1,'loginFailInvalidUsername','punjabyouthclub',0,'\0\0\0\0\0\0\0\0\0\0`:','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(11,139,1500818274.114685,1,'loginFailInvalidUsername','punjabyouthclub',0,'\0\0\0\0\0\0\0\0\0\0`:','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(12,143,1500821176.606997,1,'loginFailInvalidUsername','punjabyouthclub',0,'\0\0\0\0\0\0\0\0\0\0_n','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(13,145,1500821181.147913,1,'loginFailInvalidUsername','punjabyouthclub',0,'\0\0\0\0\0\0\0\0\0\0_n','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(14,148,1500822169.035025,0,'loginOK','indoxploit',2,'\0\0\0\0\0\0\0\0\0\0}','Mozilla/5.0 (Windows NT 6.3; rv:53.0) Gecko/20100101 Firefox/53.0');
/*!40000 ALTER TABLE `wp_wfLogins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfNet404s`
--

DROP TABLE IF EXISTS `wp_wfNet404s`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfNet404s` (
  `sig` binary(16) NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `URI` varchar(1000) NOT NULL,
  PRIMARY KEY (`sig`),
  KEY `k1` (`ctime`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfNet404s`
--

LOCK TABLES `wp_wfNet404s` WRITE;
/*!40000 ALTER TABLE `wp_wfNet404s` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfNet404s` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfNotifications`
--

DROP TABLE IF EXISTS `wp_wfNotifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfNotifications` (
  `id` varchar(32) NOT NULL DEFAULT '',
  `new` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `category` varchar(255) NOT NULL,
  `priority` int(11) NOT NULL DEFAULT '1000',
  `ctime` int(10) unsigned NOT NULL,
  `html` text NOT NULL,
  `links` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfNotifications`
--

LOCK TABLES `wp_wfNotifications` WRITE;
/*!40000 ALTER TABLE `wp_wfNotifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfNotifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfPendingIssues`
--

DROP TABLE IF EXISTS `wp_wfPendingIssues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfPendingIssues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfPendingIssues`
--

LOCK TABLES `wp_wfPendingIssues` WRITE;
/*!40000 ALTER TABLE `wp_wfPendingIssues` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfPendingIssues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfReverseCache`
--

DROP TABLE IF EXISTS `wp_wfReverseCache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfReverseCache` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `host` varchar(255) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfReverseCache`
--

LOCK TABLES `wp_wfReverseCache` WRITE;
/*!40000 ALTER TABLE `wp_wfReverseCache` DISABLE KEYS */;
INSERT INTO `wp_wfReverseCache` VALUES ('\0\0\0\0\0\0\0\0\0\0BK','crawl-66-249-75-27.googlebot.com',1500817979);
/*!40000 ALTER TABLE `wp_wfReverseCache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfSNIPCache`
--

DROP TABLE IF EXISTS `wp_wfSNIPCache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfSNIPCache` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `IP` varchar(45) NOT NULL DEFAULT '',
  `expiration` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `body` varchar(255) NOT NULL DEFAULT '',
  `count` int(10) unsigned NOT NULL DEFAULT '0',
  `type` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `expiration` (`expiration`),
  KEY `IP` (`IP`),
  KEY `type` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=68 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfSNIPCache`
--

LOCK TABLES `wp_wfSNIPCache` WRITE;
/*!40000 ALTER TABLE `wp_wfSNIPCache` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfSNIPCache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfScanners`
--

DROP TABLE IF EXISTS `wp_wfScanners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfScanners` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hits` smallint(5) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfScanners`
--

LOCK TABLES `wp_wfScanners` WRITE;
/*!40000 ALTER TABLE `wp_wfScanners` DISABLE KEYS */;
INSERT INTO `wp_wfScanners` VALUES (25012494,'\0\0\0\0\0\0\0\0\0\0[',1);
/*!40000 ALTER TABLE `wp_wfScanners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfStatus`
--

DROP TABLE IF EXISTS `wp_wfStatus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfStatus` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `ctime` double(17,6) unsigned NOT NULL,
  `level` tinyint(3) unsigned NOT NULL,
  `type` char(5) NOT NULL,
  `msg` varchar(1000) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=235 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfStatus`
--

LOCK TABLES `wp_wfStatus` WRITE;
/*!40000 ALTER TABLE `wp_wfStatus` DISABLE KEYS */;
INSERT INTO `wp_wfStatus` VALUES (1,1500736808.116325,10,'info','SUM_PREP:Preparing a new scan.'),(2,1500736808.116671,1,'info','Initiating quick scan'),(3,1500736808.118642,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(4,1500736808.135887,10,'info','SUM_ENDOK:Scanning for old themes, plugins and core files'),(5,1500736808.562274,1,'info','-------------------'),(6,1500736808.562500,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(7,1500736808.562690,10,'info','SUM_FINAL:Scan complete. Congratulations, no new problems found.'),(8,1500736808.571909,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 14 MB'),(9,1500745499.855857,1,'info','Scheduled Wordfence scan starting at Saturday 22nd of July 2017 05:44:59 PM'),(10,1500745504.311427,10,'info','SUM_PREP:Preparing a new scan.'),(11,1500745504.312072,1,'info','Contacting Wordfence to initiate scan'),(12,1500745504.818438,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(13,1500745506.820330,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(14,1500745508.824442,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blacklist is for paid members only'),(15,1500745510.827499,10,'info','SUM_START:Checking for the most secure way to get IPs'),(16,1500745510.829115,10,'info','SUM_ENDSKIPPED:Checking for the most secure way to get IPs'),(17,1500745510.832187,2,'info','Getting plugin list from WordPress'),(18,1500745510.839458,2,'info','Found 7 plugins'),(19,1500745510.840796,2,'info','Getting theme list from WordPress'),(20,1500745511.032911,2,'info','Found 6 themes'),(21,1500745511.037380,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(22,1500745511.746745,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(23,1500745511.750138,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(24,1500745512.349350,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(25,1500745512.352033,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(26,1500745512.352414,10,'info','SUM_DISABLED:Skipping theme scan'),(27,1500745512.352904,10,'info','SUM_DISABLED:Skipping plugin scan'),(28,1500745512.354571,10,'info','SUM_START:Scanning for known malware files'),(29,1500745512.356422,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(30,1500745512.417513,2,'info','500 files indexed'),(31,1500745512.750284,2,'info','1000 files indexed'),(32,1500745512.806815,2,'info','1500 files indexed'),(33,1500745512.870610,2,'info','2000 files indexed'),(34,1500745513.071354,2,'info','2500 files indexed'),(35,1500745513.240472,2,'info','3000 files indexed'),(36,1500745514.377832,2,'info','3500 files indexed'),(37,1500745514.497166,2,'info','4000 files indexed'),(38,1500745514.525615,2,'info','4228 files indexed'),(39,1500745514.810758,2,'info','Analyzed 100 files containing 1.32 MB of data so far'),(40,1500745515.240424,2,'info','Analyzed 200 files containing 2.45 MB of data so far'),(41,1500745515.417955,2,'info','Analyzed 300 files containing 3.68 MB of data so far'),(42,1500745515.597825,2,'info','Analyzed 400 files containing 5.65 MB of data so far'),(43,1500745516.080558,2,'info','Analyzed 500 files containing 6.34 MB of data so far'),(44,1500745516.393684,2,'info','Analyzed 600 files containing 7.06 MB of data so far'),(45,1500745516.522181,2,'info','Analyzed 700 files containing 8.92 MB of data so far'),(46,1500745516.641361,2,'info','Analyzed 800 files containing 9.91 MB of data so far'),(47,1500745516.740896,2,'info','Analyzed 900 files containing 10.46 MB of data so far'),(48,1500745516.838710,2,'info','Analyzed 1000 files containing 10.85 MB of data so far'),(49,1500745516.945072,2,'info','Analyzed 1100 files containing 11.35 MB of data so far'),(50,1500745517.109451,2,'info','Analyzed 1200 files containing 12.23 MB of data so far'),(51,1500745517.330643,2,'info','Analyzed 1300 files containing 13.64 MB of data so far'),(52,1500745517.509646,2,'info','Analyzed 1400 files containing 15.02 MB of data so far'),(53,1500745517.992175,2,'info','Analyzed 1500 files containing 16.96 MB of data so far'),(54,1500745518.141233,2,'info','Analyzed 1600 files containing 17.52 MB of data so far'),(55,1500745518.376972,2,'info','Analyzed 1700 files containing 19.18 MB of data so far'),(56,1500745518.558364,2,'info','Analyzed 1800 files containing 20.2 MB of data so far'),(57,1500745518.775285,2,'info','Analyzed 1900 files containing 20.89 MB of data so far'),(58,1500745518.909042,2,'info','Analyzed 2000 files containing 21.53 MB of data so far'),(59,1500745519.035828,2,'info','Analyzed 2100 files containing 21.97 MB of data so far'),(60,1500745519.135309,2,'info','Analyzed 2200 files containing 22.08 MB of data so far'),(61,1500745519.232443,2,'info','Analyzed 2300 files containing 22.12 MB of data so far'),(62,1500745519.338376,2,'info','Analyzed 2400 files containing 22.66 MB of data so far'),(63,1500745519.607374,2,'info','Analyzed 2500 files containing 27.52 MB of data so far'),(64,1500745519.855063,2,'info','Analyzed 2600 files containing 29.77 MB of data so far'),(65,1500745522.667582,2,'info','Analyzed 2700 files containing 33.27 MB of data so far'),(66,1500745522.790571,2,'info','Analyzed 2800 files containing 34.41 MB of data so far'),(67,1500745522.898524,2,'info','Analyzed 2900 files containing 35 MB of data so far'),(68,1500745523.038977,2,'info','Analyzed 3000 files containing 36.92 MB of data so far'),(69,1500745523.160466,2,'info','Analyzed 3100 files containing 38.16 MB of data so far'),(70,1500745523.428469,2,'info','Analyzed 3200 files containing 39.47 MB of data so far'),(71,1500745523.746367,2,'info','Analyzed 3300 files containing 41.85 MB of data so far'),(72,1500745523.919364,2,'info','Analyzed 3400 files containing 43.08 MB of data so far'),(73,1500745524.163702,2,'info','Analyzed 3500 files containing 44.9 MB of data so far'),(74,1500745524.366497,2,'info','Analyzed 3600 files containing 46.82 MB of data so far'),(75,1500745524.568894,2,'info','Analyzed 3700 files containing 48.61 MB of data so far'),(76,1500745524.710173,2,'info','Analyzed 3800 files containing 49.72 MB of data so far'),(77,1500745524.902038,2,'info','Analyzed 3900 files containing 50.51 MB of data so far'),(78,1500745525.099445,2,'info','Analyzed 4000 files containing 52.13 MB of data so far'),(79,1500745525.257765,2,'info','Analyzed 4100 files containing 53.7 MB of data so far'),(80,1500745525.629856,2,'info','Analyzed 4200 files containing 56.68 MB of data so far'),(81,1500745525.710061,2,'info','Analyzed 4228 files containing 57.01 MB of data.'),(82,1500745525.710290,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(83,1500745525.711933,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(84,1500745526.026103,10,'info','SUM_ENDOK:Scanning for known malware files'),(85,1500745526.036808,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(86,1500745526.038038,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(87,1500745526.041345,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(88,1500745526.042675,10,'info','SUM_START:Scanning files for URLs on a domain blacklist'),(89,1500745527.990636,2,'info','Starting scan of file contents'),(90,1500745530.381902,2,'info','Scanned contents of 8 additional files at 3.35 per second'),(91,1500745531.837597,2,'info','Scanned contents of 9 additional files at 2.34 per second'),(92,1500745533.479373,2,'info','Scanned contents of 11 additional files at 2.00 per second'),(93,1500745534.497944,2,'info','Scanned contents of 20 additional files at 3.07 per second'),(94,1500745535.506382,2,'info','Scanned contents of 56 additional files at 7.45 per second'),(95,1500745537.351847,2,'info','Scanned contents of 61 additional files at 6.52 per second'),(96,1500745541.661493,2,'info','Scanned contents of 64 additional files at 4.68 per second'),(97,1500745542.708428,2,'info','Scanned contents of 78 additional files at 5.30 per second'),(98,1500745544.002278,2,'info','Scanned contents of 84 additional files at 5.25 per second'),(99,1500745545.717182,2,'info','Scanned contents of 94 additional files at 5.30 per second'),(100,1500745546.749194,2,'info','Scanned contents of 109 additional files at 5.81 per second'),(101,1500745547.753848,2,'info','Scanned contents of 124 additional files at 6.27 per second'),(102,1500745548.773709,2,'info','Scanned contents of 139 additional files at 6.69 per second'),(103,1500745549.781512,2,'info','Scanned contents of 151 additional files at 6.93 per second'),(104,1500745551.590546,2,'info','Scanned contents of 159 additional files at 6.74 per second'),(105,1500745552.591525,2,'info','Scanned contents of 179 additional files at 7.28 per second'),(106,1500745553.681787,2,'info','Scanned contents of 196 additional files at 7.63 per second'),(107,1500745554.710787,2,'info','Scanned contents of 216 additional files at 8.08 per second'),(108,1500745555.756117,2,'info','Scanned contents of 232 additional files at 8.36 per second'),(109,1500745556.838356,2,'info','Scanned contents of 240 additional files at 8.32 per second'),(110,1500745559.699636,2,'info','Scanned contents of 242 additional files at 7.63 per second'),(111,1500745560.924355,2,'info','Scanned contents of 251 additional files at 7.62 per second'),(112,1500745561.965941,2,'info','Scanned contents of 257 additional files at 7.56 per second'),(113,1500745563.047115,2,'info','Scanned contents of 264 additional files at 7.53 per second'),(114,1500745564.106666,2,'info','Scanned contents of 279 additional files at 7.73 per second'),(115,1500745565.122736,2,'info','Scanned contents of 306 additional files at 8.24 per second'),(116,1500745566.123067,2,'info','Scanned contents of 322 additional files at 8.44 per second'),(117,1500745567.174389,2,'info','Scanned contents of 340 additional files at 8.68 per second'),(118,1500745568.243888,2,'info','Scanned contents of 350 additional files at 8.70 per second'),(119,1500745569.255330,2,'info','Scanned contents of 359 additional files at 8.70 per second'),(120,1500745570.365533,2,'info','Scanned contents of 368 additional files at 8.68 per second'),(121,1500745572.242315,2,'info','Scanned contents of 374 additional files at 8.45 per second'),(122,1500745573.341769,2,'info','Scanned contents of 386 additional files at 8.51 per second'),(123,1500745574.824380,2,'info','Scanned contents of 395 additional files at 8.43 per second'),(124,1500745577.626013,2,'info','Scanned contents of 399 additional files at 8.04 per second'),(125,1500745578.668467,2,'info','Scanned contents of 419 additional files at 8.27 per second'),(126,1500745579.681625,2,'info','Scanned contents of 441 additional files at 8.53 per second'),(127,1500745580.689510,2,'info','Scanned contents of 456 additional files at 8.65 per second'),(128,1500745581.719824,2,'info','Scanned contents of 476 additional files at 8.86 per second'),(129,1500745582.791351,2,'info','Scanned contents of 493 additional files at 9.00 per second'),(130,1500745583.837724,2,'info','Scanned contents of 513 additional files at 9.19 per second'),(131,1500745584.853786,2,'info','Scanned contents of 526 additional files at 9.25 per second'),(132,1500745585.869650,2,'info','Scanned contents of 547 additional files at 9.45 per second'),(133,1500745587.645267,2,'info','Scanned contents of 559 additional files at 9.37 per second'),(134,1500745589.016992,2,'info','Scanned contents of 561 additional files at 9.19 per second'),(135,1500745591.575891,2,'info','Scanned contents of 563 additional files at 8.85 per second'),(136,1500745592.602835,2,'info','Scanned contents of 571 additional files at 8.84 per second'),(137,1500745595.594597,2,'info','Scanned contents of 575 additional files at 8.51 per second'),(138,1500745596.824804,2,'info','Scanned contents of 586 additional files at 8.51 per second'),(139,1500745600.449908,2,'info','Scanned contents of 591 additional files at 8.16 per second'),(140,1500745601.570565,2,'info','Scanned contents of 593 additional files at 8.06 per second'),(141,1500745602.728603,2,'info','Scanned contents of 598 additional files at 8.00 per second'),(142,1500745604.485545,2,'info','Scanned contents of 602 additional files at 7.87 per second'),(143,1500745605.641026,2,'info','Scanned contents of 607 additional files at 7.82 per second'),(144,1500745606.838652,2,'info','Scanned contents of 613 additional files at 7.77 per second'),(145,1500745607.886006,2,'info','Scanned contents of 625 additional files at 7.82 per second'),(146,1500745614.855162,2,'info','Scanned contents of 631 additional files at 7.26 per second'),(147,1500745617.051150,2,'info','Scanned contents of 632 additional files at 7.10 per second'),(148,1500745618.082242,2,'info','Scanned contents of 643 additional files at 7.14 per second'),(149,1500745619.141369,2,'info','Scanned contents of 660 additional files at 7.24 per second'),(150,1500745620.197849,2,'info','Scanned contents of 677 additional files at 7.34 per second'),(151,1500745626.192140,2,'info','Scanned contents of 682 additional files at 6.95 per second'),(152,1500745627.218334,2,'info','Scanned contents of 701 additional files at 7.06 per second'),(153,1500745628.240587,2,'info','Scanned contents of 720 additional files at 7.18 per second'),(154,1500745631.661315,2,'info','Scanned contents of 725 additional files at 6.99 per second'),(155,1500745632.687031,2,'info','Scanned contents of 742 additional files at 7.09 per second'),(156,1500745633.767191,2,'info','Scanned contents of 753 additional files at 7.12 per second'),(157,1500745634.993081,2,'info','Scanned contents of 761 additional files at 7.11 per second'),(158,1500745636.000104,2,'info','Scanned contents of 767 additional files at 7.10 per second'),(159,1500745638.259227,2,'info','Scanned contents of 773 additional files at 7.01 per second'),(160,1500745639.269465,2,'info','Scanned contents of 777 additional files at 6.98 per second'),(161,1500745640.287606,2,'info','Scanned contents of 784 additional files at 6.98 per second'),(162,1500745641.358193,2,'info','Scanned contents of 794 additional files at 7.00 per second'),(163,1500745642.381016,2,'info','Scanned contents of 806 additional files at 7.05 per second'),(164,1500745643.408512,2,'info','Scanned contents of 822 additional files at 7.12 per second'),(165,1500745644.453233,2,'info','Scanned contents of 841 additional files at 7.22 per second'),(166,1500745645.640229,2,'info','Scanned contents of 856 additional files at 7.28 per second'),(167,1500745646.702074,2,'info','Scanned contents of 869 additional files at 7.32 per second'),(168,1500745649.584027,2,'info','Scanned contents of 873 additional files at 7.18 per second'),(169,1500745650.619191,2,'info','Scanned contents of 889 additional files at 7.25 per second'),(170,1500745652.714154,2,'info','Scanned contents of 894 additional files at 7.17 per second'),(171,1500745653.739046,2,'info','Scanned contents of 910 additional files at 7.24 per second'),(172,1500745654.793355,2,'info','Scanned contents of 933 additional files at 7.36 per second'),(173,1500745655.841894,2,'info','Scanned contents of 940 additional files at 7.35 per second'),(174,1500745657.949918,2,'info','Scanned contents of 946 additional files at 7.28 per second'),(175,1500745659.079561,2,'info','Scanned contents of 953 additional files at 7.27 per second'),(176,1500745660.389384,2,'info','Scanned contents of 956 additional files at 7.22 per second'),(177,1500745662.065100,2,'info','Scanned contents of 977 additional files at 7.29 per second'),(178,1500745663.708520,2,'info','Scanned contents of 980 additional files at 7.22 per second'),(179,1500745664.790850,2,'info','Scanned contents of 982 additional files at 7.18 per second'),(180,1500745667.552790,2,'info','Scanned contents of 991 additional files at 7.10 per second'),(181,1500745668.584140,2,'info','Scanned contents of 1030 additional files at 7.33 per second'),(182,1500745669.616703,2,'info','Scanned contents of 1036 additional files at 7.32 per second'),(183,1500745671.406390,2,'info','Scanned contents of 1042 additional files at 7.27 per second'),(184,1500745672.665484,2,'info','Scanned contents of 1045 additional files at 7.22 per second'),(185,1500745674.503350,2,'info','Scanned contents of 1048 additional files at 7.15 per second'),(186,1500745677.471895,2,'info','Scanned contents of 1055 additional files at 7.06 per second'),(187,1500745678.488703,2,'info','Scanned contents of 1064 additional files at 7.07 per second'),(188,1500745679.540383,2,'info','Scanned contents of 1071 additional files at 7.07 per second'),(189,1500745680.578193,2,'info','Scanned contents of 1075 additional files at 7.05 per second'),(190,1500745681.660139,2,'info','Scanned contents of 1091 additional files at 7.10 per second'),(191,1500745682.705262,2,'info','Scanned contents of 1104 additional files at 7.14 per second'),(192,1500745685.602885,2,'info','Scanned contents of 1108 additional files at 7.03 per second'),(193,1500745686.669999,2,'info','Scanned contents of 1121 additional files at 7.06 per second'),(194,1500745687.705283,2,'info','Scanned contents of 1134 additional files at 7.10 per second'),(195,1500745688.887560,2,'info','Scanned contents of 1149 additional files at 7.14 per second'),(196,1500745695.571095,2,'info','Scanned contents of 1150 additional files at 6.86 per second'),(197,1500745696.589367,2,'info','Scanned contents of 1153 additional files at 6.84 per second'),(198,1500745696.594397,2,'info','Scanned contents of 1153 additional files at 6.84 per second'),(199,1500745696.594605,2,'info','Asking Wordfence to check URLs against malware list.'),(200,1500745696.599917,2,'info','Checking 1475 host keys against Wordfence scanning servers.'),(201,1500745697.008785,2,'info','Done host key check.'),(202,1500745697.011396,2,'info','Checking 8 URLs from 8 sources.'),(203,1500745697.486948,2,'info','Done URL check.'),(204,1500745697.491250,2,'info','Done file contents scan'),(205,1500745697.497882,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(206,1500745697.501165,10,'info','SUM_ENDOK:Scanning files for URLs on a domain blacklist'),(207,1500745697.505187,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(208,1500745697.505513,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(209,1500745697.508520,10,'info','SUM_START:Scanning posts for URLs on a domain blacklist'),(210,1500745697.532852,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(211,1500745697.533231,2,'info','Checking 34 host keys against Wordfence scanning servers.'),(212,1500745697.835175,2,'info','Done host key check.'),(213,1500745697.835773,2,'info','Done examining URLs'),(214,1500745697.837225,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blacklist'),(215,1500745697.842039,10,'info','SUM_START:Scanning comments for URLs on a domain blacklist'),(216,1500745697.846375,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blacklist'),(217,1500745697.849588,10,'info','SUM_START:Scanning for weak passwords'),(218,1500745697.874327,2,'info','Starting password strength check on 1 users.'),(219,1500745698.202430,10,'info','SUM_ENDOK:Scanning for weak passwords'),(220,1500745698.207216,10,'info','SUM_START:Scanning DNS for unauthorized changes'),(221,1500745698.207630,2,'info','Starting DNS scan for punjabyouthclub.com'),(222,1500745698.823710,2,'info','Scanning DNS A record for punjabyouthclub.com'),(223,1500745698.962034,2,'info','Scanning DNS MX record for punjabyouthclub.com'),(224,1500745698.963291,10,'info','SUM_ENDOK:Scanning DNS for unauthorized changes'),(225,1500745698.967363,10,'info','SUM_START:Scanning to check available disk space'),(226,1500745698.967885,10,'info','SUM_ENDFAILED:Scanning to check available disk space'),(227,1500745698.970923,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(228,1500745704.016212,10,'info','SUM_ENDOK:Scanning for old themes, plugins and core files'),(229,1500745704.020280,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(230,1500745704.023677,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(231,1500745704.068491,1,'info','-------------------'),(232,1500745704.068785,1,'info','Scan Complete. Scanned 4228 files, 7 plugins, 6 themes, 35 pages, 0 comments and 14708 records in 3 minutes 20 seconds.'),(233,1500745704.068969,10,'info','SUM_FINAL:Scan complete. Congratulations, no new problems found.'),(234,1500745704.376954,2,'info','Wordfence used 19.25 MB of memory for scan. Server peak memory usage was: 37.5 MB');
/*!40000 ALTER TABLE `wp_wfStatus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfThrottleLog`
--

DROP TABLE IF EXISTS `wp_wfThrottleLog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfThrottleLog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `startTime` int(10) unsigned NOT NULL,
  `endTime` int(10) unsigned NOT NULL,
  `timesThrottled` int(10) unsigned NOT NULL,
  `lastReason` varchar(255) NOT NULL,
  PRIMARY KEY (`IP`),
  KEY `k2` (`endTime`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfThrottleLog`
--

LOCK TABLES `wp_wfThrottleLog` WRITE;
/*!40000 ALTER TABLE `wp_wfThrottleLog` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfThrottleLog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfVulnScanners`
--

DROP TABLE IF EXISTS `wp_wfVulnScanners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfVulnScanners` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int(10) unsigned NOT NULL,
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfVulnScanners`
--

LOCK TABLES `wp_wfVulnScanners` WRITE;
/*!40000 ALTER TABLE `wp_wfVulnScanners` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfVulnScanners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wp_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_520_ci,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_api_keys`
--

LOCK TABLES `wp_woocommerce_api_keys` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_attribute_taxonomies`
--

LOCK TABLES `wp_woocommerce_attribute_taxonomies` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `order_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(191),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_downloadable_product_permissions`
--

LOCK TABLES `wp_woocommerce_downloadable_product_permissions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_log`
--

DROP TABLE IF EXISTS `wp_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_log`
--

LOCK TABLES `wp_woocommerce_log` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--

DROP TABLE IF EXISTS `wp_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_order_itemmeta`
--

LOCK TABLES `wp_woocommerce_order_itemmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wp_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_order_items`
--

LOCK TABLES `wp_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
--

DROP TABLE IF EXISTS `wp_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `payment_token_id` (`payment_token_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_payment_tokenmeta`
--

LOCK TABLES `wp_woocommerce_payment_tokenmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_payment_tokens`
--

LOCK TABLES `wp_woocommerce_payment_tokens` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wp_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_key`),
  UNIQUE KEY `session_id` (`session_id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_sessions`
--

LOCK TABLES `wp_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_sessions` VALUES (1,'2','a:1:{s:8:\"customer\";s:677:\"a:25:{s:2:\"id\";i:2;s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"HK\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"HK\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:27:\"greatwalsolutions@gmail.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1500909855),(2,'79e2ead3d2bfe92e6f2af3853f1b0d3c','a:1:{s:8:\"customer\";s:649:\"a:25:{s:2:\"id\";i:0;s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1500918303),(3,'a2bf1bd9efd141a3499597c80938164e','a:1:{s:8:\"customer\";s:649:\"a:25:{s:2:\"id\";i:0;s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1500918322),(4,'4772e0626689e499d625fd9c1736859e','a:1:{s:8:\"customer\";s:649:\"a:25:{s:2:\"id\";i:0;s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1500918341),(5,'e60d786a221fc6857aff98f24d32c5e0','a:1:{s:8:\"customer\";s:649:\"a:25:{s:2:\"id\";i:0;s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1500918359),(6,'75a3fe4bd4acb116e604d3b64d0ca0ee','a:1:{s:8:\"customer\";s:649:\"a:25:{s:2:\"id\";i:0;s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1500918377),(7,'b4e232173f9927f08ad53ea8b8a566c8','a:1:{s:8:\"customer\";s:649:\"a:25:{s:2:\"id\";i:0;s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1500918395),(8,'e690403d6b621a5544076c4cb16938f4','a:1:{s:8:\"customer\";s:649:\"a:25:{s:2:\"id\";i:0;s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1500918413),(9,'9192a0e6cae63b1f7507fa8799bd3aa6','a:1:{s:8:\"customer\";s:649:\"a:25:{s:2:\"id\";i:0;s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1500918431),(10,'9292ac403c8f5b6292d0ed33bb8d48a9','a:1:{s:8:\"customer\";s:649:\"a:25:{s:2:\"id\";i:0;s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1500918449),(11,'ed21fbd27c5c5e9267d742391b9667a3','a:1:{s:8:\"customer\";s:649:\"a:25:{s:2:\"id\";i:0;s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1500918467),(12,'5bc63538d81abdefde81c56cd17b4e9e','a:1:{s:8:\"customer\";s:649:\"a:25:{s:2:\"id\";i:0;s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1500918503),(13,'dc2d189e14a2233497984f1425c000aa','a:1:{s:8:\"customer\";s:649:\"a:25:{s:2:\"id\";i:0;s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1500918485);
/*!40000 ALTER TABLE `wp_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type` (`location_type`),
  KEY `location_type_code` (`location_type`,`location_code`(90))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zone_locations`
--

LOCK TABLES `wp_woocommerce_shipping_zone_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zone_methods`
--

LOCK TABLES `wp_woocommerce_shipping_zone_methods` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zones`
--

LOCK TABLES `wp_woocommerce_shipping_zones` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type` (`location_type`),
  KEY `location_type_code` (`location_type`,`location_code`(90))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_tax_rate_locations`
--

LOCK TABLES `wp_woocommerce_tax_rate_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT '0',
  `tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(191)),
  KEY `tax_rate_class` (`tax_rate_class`(191)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_tax_rates`
--

LOCK TABLES `wp_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2017-07-28 19:58:51
